p {
    margin: 0;
}
label {
    marginbottom: 5px;
}
input,
button {

    border: 1px solid #ccc;
    border-radius: 3px;
}
button {
    background: #0074d9;
    border: 0px;
    color: beige;
}
.message a {
    color: #0074d9;
}
.error-message {
    color: red;
    display: none;
}
/* 注册弹窗的样式 */
.register-popup {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: white;
    border: 1px solid #888;
    border-radius: 5px;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
    padding: 20px;
    width: 440px;
    z-index: 10000;
}



.loginButton{
    width: 100%;
    height: 45px;
    background: #0074d9;
    border: 0px;
    color: beige;
}
.loginButton:hover{
    background-color: #6fb0e3;
}
/* 移除这个覆盖Bootstrap d-flex的规则，因为它破坏了Bootstrap的flexbox功能 */
/* .d-flex {
    display: block  !important;
} */
.main-menu__list{
    color: #FFFFFF;
}
.menu-button-right {
    display: block !important;
    width: 100% !important;
    gap: clamp(24px, 3.333vw, 72px);
}
.main-menu__list{
    margin: 0;
    padding: 0;
    list-style-type: none;
    align-items: center;
    display: flex;
    justify-content: space-between;
}

/* 确保桌面端菜单样式正确 */
@media (min-width: 992px) {
    .main-menu__nav {
        display: block !important;
        width: 100%;
    }
    
    .header-bottom-area {
        display: block !important;
    }
    
    .main-menu__list {
        display: flex !important;
        justify-content: center !important;
        align-items: center !important;
        gap: 35px !important;
        margin: 0 !important;
        padding: 0 !important;
        list-style: none !important;
    }
    
    .main-menu__list li {
        margin: 0 !important;
        padding: 0 !important;
    }
    
    .main-menu__list .menu {
        padding: 12px 18px !important;
        text-decoration: none !important;
        font-weight: 400 !important;
        font-size: 15px !important;
        color: #ffffff !important;
        transition: all 0.3s ease !important;
        border-radius: 6px !important;
        display: flex !important;
        align-items: center !important;
        gap: 6px !important;
        letter-spacing: 0.3px !important;
    }
    
    .main-menu__list .menu:hover {
        background-color: rgba(255, 255, 255, 0.1) !important;
        transform: translateY(-1px) !important;
        color: #ffffff !important;
    }
    
    .main-menu__list .menu.active {
        font-weight: 600 !important;
        color: #ffffff !important;
    }
}

/* 大屏幕优化 */
@media (min-width: 1200px) {
    .main-menu__list {
        gap: 45px !important;
    }
    
    .main-menu__list .menu {
        padding: 14px 22px !important;
        font-size: 16px !important;
        font-weight: 400 !important;
    }
}

/* 超大屏幕优化 */
@media (min-width: 1400px) {
    .main-menu__list {
        gap: 55px !important;
    }
    
    .main-menu__list .menu {
        padding: 16px 26px !important;
        font-size: 17px !important;
        font-weight: 400 !important;
    }
}
.main-wrapper{
    background-color: #fafafa;
}
.active{
    color: #FFFFFF !important;
    font-weight: 800 !important;
}
.active:hover{
    color: #9a9a9a !important;
}
.menu{
    color: #FFFFFF!important;
}
.menu:hover{
    color: #a6a8b2!important;
}
/* 图标容器样式，用于控制图标和悬浮内容的位置关系 */
.icon-container {
    position: relative;
    display: inline-block;
    padding-bottom: 3px;
}
header .header-section .header-center .input-search {
    display: flex !important;

    left: 36px;
    bottom: -8px;
    width: 260px;
    padding: 12px;
    background: transparent;
}
.search-block {
    position: relative;
    max-width: 300px; /* 根据需要调整宽度 */
}

.input-search.form-control {
    padding: 8px 32px 8px 12px; /* 右侧留出空间给按钮 */
    border: 1px solid #ccc;
    border-radius: 4px;
    width: 100%;
    box-sizing: border-box;
}
/* 待上架商品按钮样式 */
.upcoming-offer {
    color: rgb(12, 12, 13);
    text-align: center;
    width: 100%;
    padding: clamp(8px, 0.625vw, 24px) clamp(10px, 1vw, 32px);
    background: rgb(250, 250, 250);
    transition: 0.5s ease-in-out;
    border-radius: 5px;
}
.upcoming-offer:hover {
    color: rgb(250, 250, 250);
    background: rgb(20, 21, 22);
    transition: 0.5s ease-in-out;
}
#magnifying-btn {
    position: absolute;
    right: -20px;
    bottom: 45%;
    transform: translateY(50%);
    color: #888;
    cursor: pointer;
    transition: color 0.2s;
}
#magnifying-btn:hover {
    color: #333;
}
/* 悬浮内容样式，初始隐藏，设置合适的样式展示你要的布局 */
.hover-content {
    position: absolute;
    top: 100%; /* 让内容在图标下方显示 */

    background-color: #fff;
    border: 1px solid #ccc;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    display: none; /* 初始隐藏 */
    min-width: 150px; /* 设置最小宽度，可根据内容调整 */
    z-index: 9999;
}
@media (max-width: 490px) {
    .hover-content {
        position: absolute;
        top: 100%; /* 让内容在图标下方显示 */

        background-color: #fff;
        border: 1px solid #ccc;
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
        display: none; /* 初始隐藏 */
        min-width: 150px; /* 设置最小宽度，可根据内容调整 */
        z-index: 9999;
        right: 1px;
    }
}
/* 悬浮内容里列表的样式 */
.hover-content ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.bg-col{
    background-color: #fecaab;
}

.hover-content ul li {
    padding: 8px 12px;
}

.hover-content ul li a {
    text-decoration: none;
    color: #333;
}

.hover-content ul li a:hover {
    color: #007bff; /* 鼠标悬停链接时的颜色变化 */
}

/* 当鼠标悬停在图标容器上时，显示悬浮内容 */
.icon-container:hover .hover-content {
    display: block;
}
.topic-component {
    display: flex;
    flex-direction: column;
    gap: 8px; /* 选项间距 */
}
.topic-component label {
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 6px;
}
.topic-component input[type="checkbox"] {
    accent-color: #007bff; /* 自定义选中颜色，适配现代浏览器 */
}

.mb-81{
    color: #FFFFFF!important;
}
.crs{
    color: #FFFFFF!important;
    font-size: 25px;
}

.modal-content {
    max-width: 700px;
    margin: 0 auto;
}
.modal-body {
    padding: 20px;
}
/* 按钮组样式 */
.btn-group-bottom {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}
/* 内容区域样式 */
.option-content {
    display: none; /* 默认隐藏所有内容 */
}
.option-content.active {
    display: block; /* 显示激活的内容 */
}
/* 选中按钮样式 */
.btn-option.active {
    background-color: #085395; /* 更深的蓝色 */
    border-color: #085395;
}
/* 自定义按钮样式 */
.cus-btn-2 {
    background-color: #ffd900;
    color: #000;
    padding: 8px 16px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 700;
}
.cus-btn-2:hover {
    background-color: #ffd900;
}

#feedback-modal input[type="radio"] {
    margin-right: 4px;
    margin-left: 20px;
}
.wd{
    width: 25%;
}

@media (max-width: 600px) {
    .wd{
        width: 90%;
    }
}

/* ================= 移动端合并头部样式 ================= */
.mobile-header-merged {
    width: 100%;
    padding: 15px 0;
    background-color: transparent;
    border-bottom: none;
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
}

.mobile-header-merged .header-logo img {
    height: 40px;
    width: auto;
    object-fit: contain;
}

/* 更小屏幕的logo调整 */
@media (max-width: 480px) {
    .mobile-header-merged .header-logo img {
        width: 65%;
    }
}

.mobile-menu-text {
    display: flex !important;
    align-items: center !important;
}

.menu-text-btn {
    display: none !important;
}

.menu-icon-btn {
    background: none !important;
    border: none !important;
    cursor: pointer !important;
    padding: 8px !important;
    border-radius: 6px !important;
    transition: all 0.3s ease !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 40px !important;
    height: 40px !important;
}

.menu-icon-btn:hover {
    background-color: rgba(0, 0, 0, 0.1) !important;
}

.menu-icon-btn svg {
    width: 24px !important;
    height: 24px !important;
}

/* 只在桌面端隐藏移动端头部 */
@media (min-width: 992px) {
    .mobile-header-merged {
        display: none !important;
    }
}

/* ================= 页面标题样式 ================= */
.page-title {
  display: flex;
  align-items: center;
}

.page-title__text {
  font-size: 1.5rem;
  font-weight: 600;
  color: #ffffff;
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* 移动端页面标题样式 */
.mobile-header-row .page-title__text {
  color: #ffffff;
  font-size: 1.2rem;
  text-transform: none;
  letter-spacing: normal;
}

/* 桌面端页面标题样式保持原样 */
@media (min-width: 992px) {
  .page-title__text {
    color: #ffffff;
    font-size: 1.5rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
  }
}

@media (max-width: 768px) {
  .page-title__text {
    font-size: 1.2rem;
  }
  
  .mobile-header-row .page-title__text {
    font-size: 1.1rem;
  }
}

@media (max-width: 480px) {
  .page-title__text {
    font-size: 1rem;
  }
  
  .mobile-header-row .page-title__text {
    font-size: 1rem;
  }
}

/* ================= 移动菜单样式 ================= */

/* 汉堡菜单按钮 */
.mobile-menu-toggle {
    display: none;
}

/* 移动端菜单按钮样式（已移除，改用文字按钮） */
.mobile-menu-toggle {
    display: none !important;
}

/* 确保移动端头部在手机端显示 */
@media (max-width: 991px) {
    .mobile-header-merged {
        display: flex !important;
        visibility: visible !important;
        opacity: 1 !important;
    }
    
    .menu-icon-btn {
        visibility: visible !important;
        opacity: 1 !important;
    }
}

.hamburger-btn {
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    display: flex;
    flex-direction: column;
    gap: 4px;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 6px;
    transition: background-color 0.3s ease;
}

.hamburger-btn:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

/* 移动端头部行中的汉堡按钮样式 */
.mobile-header-row .hamburger-btn:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.hamburger-line {
    width: 24px;
    height: 2px;
    background-color: #ffffff;
    border-radius: 1px;
    transition: all 0.3s ease;
    transform-origin: center;
}

/* 移动端头部行中的汉堡线条样式 */
.mobile-header-row .hamburger-line {
    background-color: #ffffff;
}

/* 移动菜单容器 - 覆盖app.css中的样式 */
.mobile-nav__wrapper {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100vh !important;
    z-index: 9999 !important;
    visibility: hidden !important;
    opacity: 0 !important;
    transition: all 0.3s ease !important;
    transform: none !important;
}

.mobile-nav__wrapper.active {
    visibility: visible !important;
    opacity: 1 !important;
}

/* 遮罩层 */
.mobile-nav__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(4px);
}

/* 侧边栏内容 - 覆盖app.css中的样式 */
.mobile-nav__content {
    position: absolute !important;
    top: 0 !important;
    right: 0 !important;
    width: 320px !important;
    height: 100% !important;
    background: linear-gradient(135deg, #053f72 0%, #0a5a9e 100%) !important;
    box-shadow: -4px 0 20px rgba(0, 0, 0, 0.3) !important;
    transform: translateX(100%) !important;
    transition: transform 0.3s ease !important;
    display: flex !important;
    flex-direction: column !important;
    overflow: hidden !important;
    z-index: 10 !important;
    padding: 0 !important;
    opacity: 1 !important;
    visibility: visible !important;
}

.mobile-nav__wrapper.active .mobile-nav__content {
    transform: translateX(0) !important;
}

/* 关闭按钮 */
.mobile-nav__close-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    color: #ffffff;
    cursor: pointer;
    padding: 8px;
    border-radius: 6px;
    transition: background-color 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
}

.mobile-nav__close-btn:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.mobile-nav__logo {
    display: none;
}

.mobile-nav__close {
    background: none;
    border: none;
    color: #ffffff;
    cursor: pointer;
    padding: 8px;
    border-radius: 6px;
    transition: background-color 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mobile-nav__close:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

/* 菜单列表 */
.mobile-nav__menu {
    flex: 1;
    padding: 24px 0;
    overflow-y: auto;
}

.mobile-nav__list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.mobile-nav__item {
    margin: 0;
}

.mobile-nav__link {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 24px;
    color: #ffffff;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
    position: relative;
    overflow: hidden;
}

.mobile-nav__link::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.1) 0%, transparent 100%);
    transform: translateX(-100%);
    transition: transform 0.3s ease;
}

.mobile-nav__link:hover::before {
    transform: translateX(0);
}

.mobile-nav__link:hover {
    background-color: rgba(255, 255, 255, 0.1);
    border-left-color: #ffffff;
    color: #ffffff;
}

.mobile-nav__icon {
    flex-shrink: 0;
    color: #ffffff;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.mobile-nav__link:hover .mobile-nav__icon {
    opacity: 1;
}

/* 底部 */
.mobile-nav__footer {
    padding: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.05);
}

.mobile-nav__contact {
    margin-bottom: 20px;
}

.mobile-nav__contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    color: #ffffff;
    font-size: 14px;
}

.mobile-nav__contact-item svg {
    color: #ffffff;
    opacity: 0.7;
}

.mobile-nav__contact-item a {
    color: #ffffff;
    text-decoration: none;
    opacity: 0.9;
    transition: opacity 0.3s ease;
}

.mobile-nav__contact-item a:hover {
    opacity: 1;
}

.mobile-nav__social {
    display: flex;
    gap: 16px;
    justify-content: center;
}

.mobile-nav__social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: #ffffff;
    text-decoration: none;
    transition: all 0.3s ease;
}

.mobile-nav__social a:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

/* 响应式设计 */
@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: block;
    }
    
    .mobile-nav__content {
        width: 100%;
        max-width: 320px;
    }
}

@media (max-width: 480px) {
    .mobile-nav__content {
        width: 100%;
    }
    
    .mobile-nav__header {
        padding: 16px 20px;
    }
    
    .mobile-nav__link {
        padding: 14px 20px;
        font-size: 15px;
    }
    
    .mobile-nav__footer {
        padding: 20px;
    }
}

/* 防止页面滚动 */
body.mobile-menu-open {
    overflow: hidden;
}

/* 动画效果 */
@keyframes slideIn {
    from {
        transform: translateX(100%);
    }
    to {
        transform: translateX(0);
    }
}

@keyframes slideOut {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(100%);
    }
}

/* 汉堡菜单动画 */
.mobile-nav__wrapper.active .hamburger-btn .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.mobile-nav__wrapper.active .hamburger-btn .hamburger-line:nth-child(2) {
    opacity: 0;
}

.mobile-nav__wrapper.active .hamburger-btn .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* Footer Responsive Styles */
/* Footer Background */
footer {
    background-color: #053f72;
}

/* Footer Link Block Styles */
.footer-link-block a,
.mobile-nav__social a {
    min-height: 40px;
    min-width: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

/* Desktop Styles (992px and above) */
@media (min-width: 992px) {
    footer .footer-wrapper {
        padding: 40px 0;
    }
    
    footer .footer-wrapper .row {
        display: flex;
        align-items: flex-start;
        justify-content: space-between;
        gap: 40px;
    }
    
    footer .footer-wrapper .store-desc {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 30px;
        flex: 1;
        max-width: 500px;
    }
    
    footer .footer-wrapper .store-desc img {
        width: 250px;
        max-width: 100%;
        height: auto;
        flex-shrink: 0;
        margin-top: 0;
    }
    
    footer .footer-wrapper .store-desc p {
        font-size: 16px !important;
        line-height: 1.6;
        margin: 0;
        color: #ffffff;
        text-align: center;
        padding-top: 0;
        white-space: nowrap;
        min-width: 0;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    footer .footer-wrapper .footer-links-container {
        display: flex;
        justify-content: space-between;
        align-items: flex-start;
        gap: 30px;
        width: 100%;
        padding-top: 0;
    }
    
    footer .footer-wrapper .footer-link-block {
        text-align: left;
        margin-bottom: 0;
        flex: 1;
        min-width: 0;
        padding-top: 0;
    }
    
    footer .footer-wrapper .footer-link-block h6 {
        font-size: 18px;
        margin-bottom: 20px;
        color: #ffffff !important;
        font-weight: 600;
        margin-top: 0;
    }
    
    footer .footer-wrapper .footer-link-block h6 {
        font-size: 18px;
        margin-bottom: 20px;
        color: #ffffff !important;
        font-weight: 600;
    }
    
    footer .footer-wrapper .footer-link-block ul {
        display: flex;
        flex-direction: column;
        gap: 12px;
    }
    
    footer .footer-wrapper .footer-link-block ul li {
        margin-bottom: 0 !important;
    }
    
    footer .footer-wrapper .footer-link-block ul li a {
        color: #ffffff;
        font-size: 15px;
        text-decoration: none;
        transition: all 0.3s ease;
        opacity: 0.9;
        display: inline-block;
        padding: 2px 0;
    }
    
    footer .footer-wrapper .footer-link-block ul li a:hover {
        color: #0074D9;
        opacity: 1;
        transform: translateX(5px);
    }
    
    /* Social media links styling */
    footer .footer-wrapper .footer-link-block ul li a i {
        font-size: 20px;
        margin-right: 10px;
        transition: all 0.3s ease;
    }
    
    footer .footer-wrapper .footer-link-block ul li a:hover i {
        transform: scale(1.1);
    }
}

/* Large Desktop Styles (1200px and above) */
@media (min-width: 1200px) {
    footer .footer-wrapper {
        padding: 50px 0;
    }
    
    footer .footer-wrapper .row {
        gap: 60px;
    }
    
    footer .footer-wrapper .store-desc {
        gap: 40px;
        max-width: 600px;
        align-items: center;
        justify-content: center;
    }
    
    footer .footer-wrapper .store-desc img {
        width: 280px;
        margin-top: 0;
    }
    
    footer .footer-wrapper .store-desc p {
        font-size: 17px !important;
        white-space: nowrap;
        min-width: 0;
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
    }
    
    footer .footer-wrapper .footer-links-container {
        gap: 40px;
        padding-top: 0;
    }
    
    footer .footer-wrapper .footer-link-block {
        padding-top: 0;
    }
    
    footer .footer-wrapper .footer-link-block h6 {
        margin-top: 0;
    }
    
    footer .footer-wrapper .footer-link-block h6 {
        font-size: 20px;
        margin-bottom: 25px;
    }
    
    footer .footer-wrapper .footer-link-block ul li a {
        font-size: 16px;
    }
    
    footer .footer-wrapper .footer-link-block ul li a i {
        font-size: 22px;
    }
}

/* Extra Large Desktop Styles (1400px and above) */
@media (min-width: 1400px) {
    footer .footer-wrapper {
        padding: 60px 0;
    }
    
    footer .footer-wrapper .row {
        gap: 80px;
    }
    
    footer .footer-wrapper .store-desc {
        gap: 50px;
        max-width: 700px;
        align-items: center;
        justify-content: center;
    }
    
    footer .footer-wrapper .store-desc img {
        width: 320px;
        margin-top: 0;
    }
    
    footer .footer-wrapper .store-desc p {
        font-size: 18px !important;
        white-space: nowrap;
        min-width: 0;
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
    }
    
    footer .footer-wrapper .footer-links-container {
        gap: 50px;
        padding-top: 0;
    }
    
    footer .footer-wrapper .footer-link-block {
        padding-top: 0;
    }
    
    footer .footer-wrapper .footer-link-block h6 {
        margin-top: 0;
    }
    
    footer .footer-wrapper .footer-link-block h6 {
        font-size: 22px;
        margin-bottom: 30px;
    }
    
    footer .footer-wrapper .footer-link-block ul li a {
        font-size: 17px;
    }
    
    footer .footer-wrapper .footer-link-block ul li a i {
        font-size: 24px;
    }
}

/* Tablet Styles (768px to 991px) */
@media (min-width: 768px) and (max-width: 991px) {
    footer .footer-wrapper {
        padding: 30px 0;
    }
    
    footer .footer-wrapper .row {
        flex-direction: column;
        gap: 25px;
    }
    
    footer .footer-wrapper .store-desc {
        flex-direction: column;
        text-align: center;
        gap: 25px;
        justify-content: center;
        max-width: none;
        align-items: center;
    }
    
    footer .footer-wrapper .store-desc img {
        width: 220px !important;
        max-width: 100%;
        height: auto;
    }
    
    footer .footer-wrapper .store-desc p {
        font-size: 15px !important;
        line-height: 1.5;
        margin: 0;
        text-align: center;
        max-width: 400px;
        white-space: normal;
    }
    
    footer .footer-wrapper .footer-links-container {
        display: flex;
        justify-content: space-between;
        gap: 20px;
    }
    
    footer .footer-wrapper .footer-link-block {
        text-align: center;
        margin-bottom: 15px;
        flex: 1;
    }
    
    footer .footer-wrapper .footer-link-block h6 {
        font-size: 17px;
        margin-bottom: 15px;
        color: #ffffff !important;
    }
    
    footer .footer-wrapper .footer-link-block ul {
        display: flex;
        flex-direction: column;
        gap: 8px;
    }
    
    footer .footer-wrapper .footer-link-block ul li {
        margin-bottom: 0 !important;
    }
    
    footer .footer-wrapper .footer-link-block ul li a {
        color: #ffffff;
        font-size: 14px;
        text-decoration: none;
        transition: color 0.3s ease;
    }
    
    footer .footer-wrapper .footer-link-block ul li a:hover {
        color: #0074D9;
    }
    
    footer .footer-wrapper .footer-link-block ul li a i {
        font-size: 18px;
        margin-right: 8px;
    }
}

/* Mobile Styles */
@media (max-width: 768px) {
    footer .footer-wrapper {
        padding: 20px 0;
    }
    
    footer .footer-wrapper .row {
        flex-direction: column;
        gap: 30px;
    }
    
    footer .footer-wrapper .store-desc {
        flex-direction: column;
        text-align: center;
        gap: 20px;
        max-width: none;
        align-items: center;
        justify-content: center;
    }
    
    footer .footer-wrapper .store-desc img {
        width: 200px !important;
        max-width: 100%;
        height: auto;
    }
    
    footer .footer-wrapper .store-desc p {
        font-size: 14px !important;
        line-height: 1.5;
        margin: 0;
        white-space: normal;
        text-align: center;
    }
    
    footer .footer-wrapper .footer-links-container {
        display: flex;
        flex-direction: column;
        gap: 20px;
    }
    
    footer .footer-wrapper .footer-link-block {
        text-align: center;
        margin-bottom: 20px;
    }
    
    footer .footer-wrapper .footer-link-block h6 {
        font-size: 16px;
        margin-bottom: 15px;
        color: #ffffff !important;
    }
    
    footer .footer-wrapper .footer-link-block ul {
        display: flex;
        flex-direction: column;
        gap: 10px;
    }
    
    footer .footer-wrapper .footer-link-block ul li {
        margin-bottom: 0 !important;
    }
    
    footer .footer-wrapper .footer-link-block ul li a {
        color: #ffffff;
        font-size: 14px;
        text-decoration: none;
        transition: color 0.3s ease;
    }
    
    footer .footer-wrapper .footer-link-block ul li a:hover {
        color: #0074D9;
    }
    
    /* Social media links styling */
    footer .footer-wrapper .footer-link-block ul li a i {
        font-size: 18px;
        margin-right: 8px;
    }
}

@media (max-width: 480px) {
    footer .footer-wrapper {
        padding: 15px 0;
    }
    
    footer .footer-wrapper .store-desc img {
        width: 150px !important;
    }
    
    footer .footer-wrapper .store-desc p {
        font-size: 12px !important;
        padding: 0 10px;
    }
    
    footer .footer-wrapper .footer-link-block h6 {
        font-size: 14px;
        margin-bottom: 12px;
    }
    
    footer .footer-wrapper .footer-link-block ul li a {
        font-size: 13px;
    }
    
    footer .footer-wrapper .footer-link-block ul li a i {
        font-size: 16px;
    }
}

/* ===== FREEBIES INTRODUCTION SECTION STYLES ===== */
.freebies-intro-section {
    background: #fafafa;
    position: relative;
    margin: 1.5rem 0;
    border-radius: 12px;
    /* box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08); */
    /* border: 1px solid #f0f0f0; */
}
.freebies-intro-content {
    padding: 2rem 1.5rem;
    text-align: center;
}

.freebies-title {
    font-family: "Montserrat", sans-serif;
    font-size: 24px;
    font-weight: 600;
    color: #2c3e50;
    text-align: center;
    margin-bottom: 1rem;
    line-height: 1.3;
    letter-spacing: -0.3px;
    position: relative;
}

.freebies-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 2px;
    background: #0074D9;
    border-radius: 1px;
}

.freebies-description-wrapper {
    margin: 0 auto;
    max-width: 800px;
}

.freebies-description {
    font-family: "Roboto", sans-serif;
    font-size: 18px;
    color: #45474F;
    text-align: center;
    line-height: 1.6;
    margin: 0 auto;
    font-weight: 400;
    padding: 1.5rem 2rem;
    background: #fafafa;
    border-radius: 8px;
    border: 1px solid #e9ecef;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.freebie-highlight {
    color: #0074D9;
    font-weight: 600;
    font-size: 1.1em;
    position: relative;
    display: inline-block;
}

/* Responsive Design for Freebies Section */
@media (max-width: 768px) {
    .freebies-intro-section {
        margin: 1rem 0;
        border-radius: 8px;
    }
    
    .freebies-intro-content {
        padding: 1.5rem 1rem;
    }
    
    .freebies-title {
        font-size: 22px;
        margin-bottom: 0.75rem;
    }
    
    .freebies-description-wrapper {
        max-width: 600px;
    }
    
    .freebies-description {
        font-size: 16px;
        padding: 1rem 1.5rem;
        white-space: nowrap;
    }
}

@media (max-width: 480px) {
    .freebies-intro-content {
        padding: 1.25rem 0.75rem;
    }
    
    .freebies-title {
        font-size: 20px;
        margin-bottom: 0.5rem;
    }
    
    .freebies-description-wrapper {
        max-width: 400px;
    }
    
    .freebies-description {
        font-size: 15px;
        padding: 0.75rem 1rem;
        white-space: nowrap;
    }
}

#search::-webkit-search-cancel-button {
    display: none;
}