/* Responsive Grid / Media Queries */
@media (max-width: 1024px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.mobile-compare-cards {
    display: none;
}

@media (max-width: 767px) {
    .navbar {
        height: 70px;
    }

    .nav-menu {
        display: none; /* Mobile menu can be toggled */
    }

    .section {
        padding: 32px 0;
    }

    .section-title {
        font-size: 28px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }

    .suggest-grid {
        grid-template-columns: 1fr;
    }
}

/* --- MOBILE HAMBURGER MENU & RESPONSIVE TABLES --- */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 22px;
    cursor: pointer;
    color: var(--text-dark);
    padding: 5px;
    transition: var(--transition-fast);
    align-items: center;
    justify-content: center;
}

.menu-toggle:hover {
    color: var(--primary-color);
}

@media (max-width: 767px) {
    .menu-toggle {
        display: flex;
    }

    .nav-menu {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 80px;
        left: 0;
        width: 100%;
        background-color: var(--white);
        padding: 10px 0 20px 0;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
        border-top: 1px solid var(--border-color);
        z-index: 999;
    }

    .nav-menu.active {
        display: flex;
    }

    .nav-menu .nav-link {
        width: 100%;
        padding: 12px 20px;
        text-align: left;
        font-size: 15px;
        box-sizing: border-box;
        border-bottom: 1px solid #f9f9f9;
    }

    .nav-menu .nav-link::after {
        display: none;
    }

    .navbar .nav-actions .btn-primary {
        display: none;
    }

    .compare-table {
        display: block;
        width: 100%;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    .compare-table th, .compare-table td {
        white-space: nowrap;
        padding: 12px 15px;
        font-size: 13px;
    }
}

/* --- SITE-WIDE MOBILE COMMERCE RESPONSIVENESS --- */
@media (max-width: 1024px) {
    .container {
        max-width: 960px;
    }

    .footer-logo {
        display: flex;
        justify-content: center;
        width: 100%;
        margin-right: auto;
        margin-left: auto;
    }

    .logo.footer-logo img {
        width: min(300px, 100%);
        max-height: none;
    }

    .modal-container {
        max-height: calc(100dvh - 40px);
    }
}

@media (max-width: 767px) {
    .container {
        padding: 0 16px;
    }

    .logo img {
        width: 148px;
        max-height: 34px;
    }

    .nav-actions {
        gap: 10px;
    }

    .icon-btn {
        font-size: 18px;
    }

    .btn {
        width: 100%;
        min-height: 48px;
        padding: 12px 18px;
        font-size: 14px;
        line-height: 1.25;
    }

    .form-group {
        margin-bottom: 14px;
    }

    .form-label {
        margin-bottom: 6px;
    }

    .form-control {
        min-height: 48px;
        padding: 12px 14px;
        border-radius: 10px;
        font-size: 16px;
    }

    textarea.form-control {
        min-height: 92px;
    }

    .modal-overlay {
        align-items: flex-end;
        justify-content: center;
        padding: 52px 0 0;
        background-color: rgba(0, 0, 0, 0.58);
    }

    .modal-container {
        width: 100%;
        max-width: none;
        max-height: calc(100dvh - 52px);
        border-radius: 22px 22px 0 0;
        padding: 28px 18px calc(18px + env(safe-area-inset-bottom));
        transform: translateY(100%);
    }

    .modal-overlay.active .modal-container {
        transform: translateY(0);
    }

    .modal-close {
        top: 12px;
        right: 14px;
        width: 40px;
        height: 40px;
        border-radius: 50%;
        background: var(--primary-light);
        color: var(--primary-color);
        font-size: 20px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }

    .modal-title {
        padding-right: 44px;
        font-size: 20px;
        line-height: 1.2;
    }

    .modal-desc {
        padding-right: 18px;
        margin-bottom: 18px;
        font-size: 13px;
    }

    .nav-menu {
        top: 70px;
        max-height: calc(100dvh - 70px);
        overflow-y: auto;
    }

    .section {
        padding: 32px 0;
    }

    .section-title-wrapper {
        margin-bottom: 32px;
    }

    .section-title {
        font-size: 28px !important;
        line-height: 1.2;
    }

    .section-subtitle {
        font-size: 14px;
    }

    .product-hero-title,
    .hero-title,
    h1[style*="font-size: 38px"],
    h1[style*="font-size: 36px"] {
        font-size: 30px !important;
        line-height: 1.18 !important;
    }

    .hero-desc,
    .product-hero-grid p,
    .manual-banner-grid p,
    .policy-banner-grid p,
    .results-banner-grid p,
    .coop-banner-grid p,
    .news-banner-grid p,
    .about-banner-grid p {
        font-size: 14px !important;
    }

    .hero-container,
    .tech-grid,
    .product-hero-grid,
    .product-main-grid,
    .buy-main-grid,
    .gift-box,
    .manual-banner-grid,
    .policy-banner-grid,
    .results-banner-grid,
    .about-banner-grid,
    .coop-banner-grid,
    .news-banner-grid,
    .contact-details-section,
    .warranty-register-section,
    .statement-box,
    .ba-grid,
    .reviews-grid {
        grid-template-columns: 1fr !important;
    }

    .hero-container,
    .product-hero-grid,
    .manual-banner-grid,
    .policy-banner-grid,
    .results-banner-grid,
    .about-banner-grid,
    .coop-banner-grid,
    .news-banner-grid {
        gap: 28px !important;
        text-align: center;
    }

    .product-hero.has-duplicate-gallery-image .product-hero-grid > div:last-child {
        display: none;
    }

    .hero-actions,
    .manual-actions,
    .buy-actions,
    .product-actions,
    div[style*="display: flex"][style*="gap: 15px"],
    div[style*="display:flex"][style*="gap: 15px"] {
        flex-direction: column !important;
        align-items: stretch !important;
        width: 100%;
    }

    .hero-badges,
    .manual-banner-badges,
    .results-banner-badges,
    .about-banner-badges,
    .product-hero-badges,
    .coop-features {
        display: grid !important;
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
        gap: 10px !important;
        justify-content: stretch !important;
    }

    body .hero-badges,
    body .manual-banner-badges,
    body .results-banner-badges,
    body .about-banner-badges,
    body .product-hero-badges,
    body .coop-features {
        display: grid !important;
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    }

    .hero-badge-item,
    .manual-badge-item,
    .about-badge-item,
    .product-hero-badge-item,
    .coop-feat-card {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        justify-content: flex-start !important;
        gap: 8px !important;
        min-height: 112px;
        padding: 14px 10px 12px !important;
        border: 1px solid var(--border-color);
        border-radius: 14px;
        background: rgba(255, 255, 255, 0.74);
        box-shadow: var(--shadow-sm);
        text-align: center !important;
    }

    body .hero-badge-item,
    body .manual-badge-item,
    body .about-badge-item,
    body .product-hero-badge-item,
    body .coop-feat-card {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        text-align: center !important;
    }

    .hero-badge-item i,
    .manual-badge-item i,
    .about-badge-item i,
    .product-hero-badge-item i,
    .coop-feat-card i {
        display: inline-flex !important;
        align-items: center !important;
        justify-content: center !important;
        width: 34px;
        height: 34px;
        margin: 0 !important;
        border-radius: 50%;
        background-color: var(--primary-color);
        color: var(--white) !important;
        font-size: 16px !important;
    }

    body .hero-badge-item i,
    body .manual-badge-item i,
    body .about-badge-item i,
    body .product-hero-badge-item i,
    body .coop-feat-card i {
        margin: 0 !important;
        color: var(--white) !important;
        font-size: 16px !important;
    }

    .hero-badge-item span,
    .manual-badge-item span,
    .about-badge-item h4,
    .product-hero-badge-item h4,
    .coop-feat-card h4 {
        font-size: 12px !important;
        line-height: 1.28 !important;
        margin: 0 0 3px !important;
        color: var(--text-dark);
        font-weight: 700;
    }

    body .hero-badge-item span,
    body .manual-badge-item span,
    body .about-badge-item h4,
    body .product-hero-badge-item h4,
    body .coop-feat-card h4 {
        font-size: 12px !important;
        line-height: 1.28 !important;
        margin: 0 0 3px !important;
    }

    .about-badge-item p,
    .product-hero-badge-item p,
    .coop-feat-card p,
    .results-badge-item p {
        font-size: 11px !important;
        line-height: 1.35 !important;
    }

    body .about-badge-item p,
    body .product-hero-badge-item p,
    body .coop-feat-card p,
    body .results-badge-item p {
        font-size: 11px !important;
        line-height: 1.35 !important;
    }

    .results-badge-item {
        min-height: 96px;
        padding: 14px 8px 12px !important;
        border-radius: 14px;
    }

    .results-badge-item h3 {
        font-size: 20px !important;
        line-height: 1.1;
    }

    .why-us-grid,
    .timeline-grid,
    .products-grid,
    .steps-grid,
    .list-grid,
    .policy-grid,
    .support-grid,
    .support-block-grid,
    .phases-grid,
    .stats-grid,
    .freq-grid,
    .care-grid,
    .conditions-grid,
    .steps-list-grid,
    .partners-grid,
    .pkg-grid,
    .commit-grid,
    .articles-grid,
    .mvv-grid,
    .num-stats-grid,
    .results-grid,
    .cert-grid,
    .compare-grid,
    .feature-grid {
        grid-template-columns: 1fr !important;
    }

    .section-bg > .container[style*="grid-template-columns: repeat(4, 1fr)"] {
        grid-template-columns: 1fr !important;
    }

    .product-hero img,
    .hero-image,
    .buy-image-box img,
    img[style*="max-height: 400px"] {
        max-height: 320px !important;
        margin-left: auto !important;
        margin-right: auto !important;
    }

    .gallery-layout {
        grid-template-columns: 1fr !important;
    }

    .gallery-thumbs {
        flex-direction: row !important;
        width: 100% !important;
        justify-content: flex-start !important;
        overflow-x: auto;
        padding-bottom: 4px;
    }

    .gallery-thumb-item {
        flex: 0 0 60px !important;
        width: 60px !important;
        height: 60px !important;
        min-width: 60px !important;
        max-width: 60px !important;
        aspect-ratio: 1 / 1 !important;
        padding: 5px !important;
    }

    .gallery-thumb-item img {
        width: 100% !important;
        height: 100% !important;
        object-fit: contain !important;
    }

    .gallery-thumb {
        flex: 0 0 72px;
    }

    .compare-table-wrapper,
    .comparison-wrapper,
    .compare-grid-section,
    .table-wrapper,
    .timeline-table-wrapper {
        overflow-x: auto !important;
        overflow-y: hidden !important;
        -webkit-overflow-scrolling: touch;
    }

    .compare-table {
        min-width: 720px;
    }

    .compare-table,
    .comparison-table,
    .compare-tech-table {
        display: table !important;
        width: 100% !important;
        min-width: 720px !important;
        overflow: visible !important;
    }

    .compare-table th,
    .compare-table td,
    .comparison-table th,
    .comparison-table td,
    .compare-tech-table th,
    .compare-tech-table td {
        min-width: 132px;
        padding: 12px 14px !important;
        white-space: normal !important;
        vertical-align: top;
        font-size: 13px !important;
        line-height: 1.45;
    }

    .compare-table th:first-child,
    .compare-table td:first-child,
    .comparison-table th:first-child,
    .comparison-table td:first-child,
    .compare-tech-table th:first-child,
    .compare-tech-table td:first-child {
        position: sticky;
        left: 0;
        z-index: 2;
        min-width: 126px;
        max-width: 150px;
        background: var(--white);
        box-shadow: 1px 0 0 var(--border-color);
    }

    .compare-table thead th:first-child,
    .comparison-table thead th:first-child,
    .compare-tech-table thead th:first-child {
        z-index: 3;
        background: var(--bg-gray);
    }

    .compare-table td:first-child[style*="background-color"],
    .compare-table th:first-child[style*="background-color"],
    .comparison-table td:first-child.highlight,
    .comparison-table th:first-child.highlight,
    .compare-tech-table td:first-child.best-choice,
    .compare-tech-table th:first-child.best-choice {
        background: var(--primary-light) !important;
    }

    .toast {
        left: 16px;
        right: 16px;
        bottom: 18px;
        padding: 14px 16px;
    }

    footer {
        padding: 54px 0 20px;
    }

}

@media (max-width: 767px) {
    .container {
        padding: 0 14px;
    }

    .logo img {
        width: 132px;
    }

    .nav-actions {
        gap: 8px;
    }

    .icon-btn {
        padding: 4px;
        font-size: 17px;
    }

    .product-hero-title,
    .hero-title,
    h1[style*="font-size"] {
        font-size: 26px !important;
    }

    .section {
        padding: 24px 0;
    }

    .section-title {
        font-size: 24px !important;
    }

    .product-card,
    .list-card,
    .step-list-card,
    .freq-card,
    .care-box,
    .cond-box,
    .policy-card,
    .support-card,
    .review-card,
    .article-card,
    .mvv-card,
    .pkg-card {
        padding: 22px 18px !important;
    }

    .modal-container {
        padding: 26px 16px calc(16px + env(safe-area-inset-bottom));
    }

    .modal-title {
        font-size: 19px;
    }

    .order-summary div[style*="justify-content: space-between"] {
        gap: 10px;
    }

    .order-summary strong {
        text-align: right;
    }
}

@media (max-width: 767px) {
    .history-timeline-scroll {
        flex-direction: column !important;
        overflow-x: visible !important;
        gap: 14px !important;
        padding-bottom: 0 !important;
    }

    .history-node {
        width: 100% !important;
        min-width: 0 !important;
    }

    .mobile-compare-cards {
        display: grid;
        gap: 14px;
        margin-top: 22px;
    }

    .mobile-compare-card {
        display: grid;
        gap: 12px;
        padding: 16px;
        border: 1px solid var(--border-color);
        border-radius: 12px;
        background: var(--white);
        box-shadow: var(--shadow-sm);
    }

    .mobile-compare-title {
        margin: 0;
        padding-bottom: 10px;
        border-bottom: 1px solid var(--border-color);
        color: var(--text-dark);
        font-size: 15px;
        line-height: 1.35;
        font-weight: 800;
    }

    .mobile-compare-options {
        display: grid;
        gap: 10px;
    }

    .mobile-compare-row {
        display: grid;
        gap: 6px;
        padding: 12px;
        border: 1px solid #f0e4ea;
        border-radius: 10px;
        background: #fff;
    }

    .mobile-compare-row.is-highlight {
        border-color: rgba(232, 62, 140, 0.28);
        background: var(--primary-light);
        box-shadow: 0 8px 18px rgba(232, 62, 140, 0.08);
    }

    .mobile-compare-label {
        color: var(--primary-color);
        font-size: 12px;
        line-height: 1.35;
        font-weight: 800;
    }

    .mobile-compare-value {
        color: var(--text-color);
        font-size: 14px;
        line-height: 1.45;
        font-weight: 600;
        overflow-wrap: anywhere;
    }

    .mobile-compare-value i.fa-check,
    .mobile-compare-value i.fa-circle-check {
        color: #4CAF50;
    }

    .mobile-compare-value i.fa-times,
    .mobile-compare-value i.fa-circle-xmark {
        color: #ccc;
    }

    .comparison-wrapper.has-mobile-cards,
    .compare-grid-section.has-mobile-cards,
    .compare-table-wrapper.has-mobile-cards {
        display: none !important;
    }

    .comparison-wrapper,
    .compare-grid-section,
    .compare-table-wrapper {
        position: relative;
        display: block;
        width: 100% !important;
        max-width: 100%;
        margin-top: 22px !important;
        padding: 34px 0 8px !important;
        overflow-x: auto !important;
        overflow-y: hidden !important;
        -webkit-overflow-scrolling: touch;
        overscroll-behavior-x: contain;
        border-radius: 16px !important;
        box-shadow: var(--shadow-sm) !important;
        background: linear-gradient(90deg, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 18px) left center / 36px 100% no-repeat,
        linear-gradient(270deg, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 18px) right center / 36px 100% no-repeat,
        var(--white);
    }

    .comparison-wrapper::before,
    .compare-grid-section::before,
    .compare-table-wrapper::before {
        content: "Vuốt ngang để xem thêm";
        position: absolute;
        top: 8px;
        left: 12px;
        z-index: 5;
        display: inline-flex;
        align-items: center;
        gap: 6px;
        padding: 4px 10px;
        border-radius: 999px;
        background: var(--primary-light);
        color: var(--primary-color);
        font-size: 11px;
        font-weight: 700;
        pointer-events: none;
    }

    .comparison-wrapper::after,
    .compare-grid-section::after,
    .compare-table-wrapper::after {
        content: "";
        position: sticky;
        right: 0;
        top: 34px;
        display: block;
        float: right;
        width: 26px;
        height: 1px;
        pointer-events: none;
    }

    .comparison-table,
    .compare-tech-table,
    .compare-table {
        margin-top: 0 !important;
        width: max-content !important;
        min-width: 760px !important;
        table-layout: fixed;
        border-radius: 0 !important;
        box-shadow: none !important;
    }

    .compare-tech-table {
        min-width: 840px !important;
    }

    .comparison-table th,
    .comparison-table td,
    .compare-tech-table th,
    .compare-tech-table td,
    .compare-table th,
    .compare-table td {
        width: 142px;
        min-width: 142px;
        max-width: 170px;
        padding: 12px 12px !important;
        text-align: center;
        word-break: normal;
        overflow-wrap: anywhere;
    }

    .comparison-table th:first-child,
    .comparison-table td:first-child,
    .compare-tech-table th:first-child,
    .compare-tech-table td:first-child,
    .compare-table th:first-child,
    .compare-table td:first-child {
        width: 132px;
        min-width: 132px;
        max-width: 132px;
        text-align: left;
    }
}

/* Final responsive hero overrides */
.hero-home, .banner-tech, .banner-results, .banner-manual, .banner-about, .banner-coop, .product-hero {
    position: relative;
    overflow: hidden;
    background-repeat: no-repeat !important;
    background-size: cover !important;
    background-position: center bottom !important;
}

.hero-home {
    background-image: linear-gradient(to bottom, #fff0f3 0 50%, rgba(255, 240, 243, .88) 58%, rgba(255, 240, 243, .16) 78%, rgba(255, 240, 243, 0) 100%), url('../images/banner-1-mobile-no-logo.webp') !important;
    min-height: 540px;
}

.banner-tech,
.banner-results,
.banner-about,
.banner-coop {
    background-size: 100% auto !important;
}

.banner-tech,
.banner-coop {
    background-image: linear-gradient(to bottom, #fff0f3 0 50%, rgba(255, 240, 243, .88) 58%, rgba(255, 240, 243, .16) 78%, rgba(255, 240, 243, 0) 100%), url('../images/banner_home_mobile.webp') !important;
}

.banner-results {
    background-image: linear-gradient(to bottom, #fff0f3 0 50%, rgba(255, 240, 243, .88) 58%, rgba(255, 240, 243, .16) 78%, rgba(255, 240, 243, 0) 100%), url('../images/results_mobile.webp') !important;
}

.banner-manual {
    background-image: linear-gradient(to bottom, #fff0f3 0 50%, rgba(255, 240, 243, .88) 58%, rgba(255, 240, 243, .16) 78%, rgba(255, 240, 243, 0) 100%), url('../images/banner-2-mobile-no-logo.webp') !important;
}

.hero-home,
.banner-manual {
    background-size: 100% auto !important;
}

.banner-about {
    background-image: linear-gradient(to bottom, #fff0f3 0 50%, rgba(255, 240, 243, .88) 58%, rgba(255, 240, 243, .16) 78%, rgba(255, 240, 243, 0) 100%), url('../images/about_mobile.webp') !important;
}

.banner-tech .tech-banner-media, .banner-results .results-banner-grid > div:last-child, .banner-about .about-banner-media, .banner-coop .coop-banner-media, .product-hero .product-hero-grid > div:last-child {
    display: none;
}

@media (min-width: 1025px) {
    .hero-home {
        background-image: linear-gradient(to right, #fff0f3 0 36%, rgba(255, 240, 243, .94) 47%, rgba(255, 240, 243, .22) 60%, rgba(255, 240, 243, 0) 72%), url('../images/banner-1-no-logo.webp') !important;
    }

    .banner-tech, .banner-coop {
        background-image: linear-gradient(to right, #fff0f3 0 36%, rgba(255, 240, 243, .94) 47%, rgba(255, 240, 243, .22) 60%, rgba(255, 240, 243, 0) 72%), url('../images/home/banner_home_desktop.webp') !important;
    }

    .banner-results {
        background-image: linear-gradient(to right, #fff0f3 0 36%, rgba(255, 240, 243, .94) 47%, rgba(255, 240, 243, .22) 60%, rgba(255, 240, 243, 0) 72%), url('../images/results_desktop.webp') !important;
    }

    .banner-manual {
        background-image: linear-gradient(to right, #fff0f3 0 36%, rgba(255, 240, 243, .94) 47%, rgba(255, 240, 243, .22) 60%, rgba(255, 240, 243, 0) 72%), url('../images/banner-2-no-logo.webp') !important;
    }

    .banner-about {
        background-image: linear-gradient(to right, #fff0f3 0 36%, rgba(255, 240, 243, .94) 47%, rgba(255, 240, 243, .22) 60%, rgba(255, 240, 243, 0) 72%), url('../images/about_desktop.webp') !important;
    }

    .hero-home, .banner-tech, .banner-results, .banner-manual, .banner-about, .banner-coop, .product-hero {
        background-position: center right !important;
        min-height: 520px;
    }
}

@media (min-width: 768px) and (max-width: 1024px) {
    .hero-home, .banner-tech, .banner-results, .banner-manual, .banner-about, .banner-coop, .product-hero {
        min-height: 580px;
    }

    .hero-home,
    .banner-manual,
    .banner-tech,
    .banner-results,
    .banner-about,
    .banner-coop {
        background-position: right top !important;
        background-size: cover !important;
    }

    .hero-home .hero-container {
        grid-template-columns: 1fr !important;
    }

    .hero-home {
        background-image: linear-gradient(to bottom, #fff0f3 0 55%, rgba(255, 240, 243, .38) 68%, rgba(255, 240, 243, 0) 85%), url('../images/banner-1-mobile-no-logo.webp') !important;
    }

    .banner-manual {
        background-image: linear-gradient(to bottom, #fff0f3 0 55%, rgba(255, 240, 243, .38) 68%, rgba(255, 240, 243, 0) 85%), url('../images/banner-2-mobile-no-logo.webp') !important;
    }

    .banner-tech,
    .banner-coop {
        background-image: linear-gradient(to bottom, #fff0f3 0 55%, rgba(255, 240, 243, .38) 68%, rgba(255, 240, 243, 0) 85%), url('../images/banner_home_mobile.webp') !important;
    }

    .banner-results {
        background-image: linear-gradient(to bottom, #fff0f3 0 55%, rgba(255, 240, 243, .38) 68%, rgba(255, 240, 243, 0) 85%), url('../images/results_mobile.webp') !important;
    }

    .banner-about {
        background-image: linear-gradient(to bottom, #fff0f3 0 55%, rgba(255, 240, 243, .38) 68%, rgba(255, 240, 243, 0) 85%), url('../images/about_mobile.webp') !important;
    }
}

/* Footer Custom Refactoring Style */
footer {
    background-color: #1a1a1a !important; /* Black background as before */
    color: #dfdfdf !important;
    padding: 60px 0 40px !important;
    border-top: 5px solid var(--primary-color) !important;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2.2fr 1.3fr 2.5fr 2fr !important;
    gap: 40px;
    margin-bottom: 20px !important;
}

.footer-col h4 {
    color: #ffffff !important;
    font-size: 15px !important;
    font-weight: 700 !important;
    letter-spacing: 0.5px;
    margin-bottom: 20px !important;
    padding-bottom: 0 !important;
    border-bottom: none !important;
    text-transform: uppercase;
}

.footer-col h4::after {
    display: none !important;
}

.footer-col p {
    color: #dfdfdf !important;
}

/* Logo Column 1 */
.footer-logo-text {
    display: flex;
    flex-direction: column;
    color: #ffffff;
    font-family: 'Outfit', sans-serif;
    margin-bottom: 15px;
}

.footer-logo-text .logo-main {
    font-size: 38px;
    font-weight: 800;
    line-height: 1;
    letter-spacing: -1px;
}

.footer-logo-text .logo-sub {
    font-size: 9px;
    font-weight: 500;
    letter-spacing: 2px;
    color: rgba(255, 255, 255, 0.8);
    margin-top: 2px;
}

.footer-intro {
    font-size: 13.5px;
    line-height: 1.6;
    color: #dfdfdf !important;
    margin-bottom: 20px;
    max-width: 280px;
}

.social-links .social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background-color: #ffffff;
    color: #1a1a1a !important;
    border-radius: 50%;
    font-size: 15px;
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.social-links .social-icon:hover {
    transform: scale(1.1);
    opacity: 0.9;
}

/* Links Column 2 */
.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #dfdfdf !important;
    font-size: 13.5px;
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-links a:hover {
    color: var(--primary-color) !important;
    padding-left: 0 !important;
}

/* Channel Column 3 */
.distribution-section {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.dist-subtitle {
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 4px;
    display: block;
}

.dist-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
    margin-bottom: 12px;
}

.dist-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 30px;
    border-radius: 6px;
    overflow: hidden;
    text-decoration: none;
    font-size: 13px;
    font-weight: 700;
    transition: transform 0.2s ease;
}

.dist-badge:hover {
    transform: translateY(-2px);
}

/* Mua Online badges */
.badge-shopee {
    background-color: #ffffff;
    border: 1px solid #ee4d2d;
    padding: 0 8px;
}

.badge-shopee img {
    height: 18px;
}

.badge-lazada {
    background-color: #ffffff;
    padding: 0 8px;
}

.badge-lazada img {
    height: 14px;
}

.badge-tiktok {
    background-color: #ffffff;
    padding: 0 8px;
}

.badge-tiktok img {
    height: 30px;
}

/* Chuỗi cửa hàng badges */
.badge-watsons {
    background-color: #00a19c;
    color: #ffffff !important;
    padding: 0 12px;
    font-family: 'Outfit', sans-serif;
    font-style: italic;
    font-weight: 800;
    text-transform: lowercase;
}

.badge-guardian {
    background-color: #ff6f00;
    color: #ffffff !important;
    padding: 0 12px;
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    text-transform: lowercase;
}

.badge-hasaki {
    background-color: #ffffff;
    color: #005a41 !important;
    border: 1.5px solid #005a41;
    padding: 0 10px;
    font-weight: 800;
    font-size: 11px;
    letter-spacing: -0.2px;
}

.badge-hasaki span {
    font-weight: 400;
}

/* Contact Column 4 */
.footer-contact-info {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.footer-contact-info li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 13.5px;
    color: #dfdfdf;
}

.footer-contact-info i {
    font-size: 16px;
    width: 20px;
    text-align: center;
    color: rgba(255, 255, 255, 0.7);
}

.footer-contact-info span {
    line-height: 1.4;
}

/* Responsive Footer Grid */
@media (max-width: 1024px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr !important;
        gap: 30px;
    }
}

@media (max-width: 767px) {
    .footer-grid {
        grid-template-columns: 1fr !important;
        gap: 30px;
        text-align: center;
    }

    .footer-intro {
        margin: 0 auto 20px;
    }

    .social-links {
        justify-content: center;
    }

    .dist-badges {
        justify-content: center;
    }

    .footer-contact-info li {
        justify-content: center;
    }
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.15) !important;
    padding-top: 20px !important;
    color: rgba(255, 255, 255, 0.6) !important;
    text-align: center;
    justify-content: center !important;
    margin-top: 20px;
    font-size: 12px;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.6) !important;
}
