/* ==========================================
   EVEON Redesign CSS
   Phong cách mới theo mẫu thiết kế 2024
   ========================================== */

/* --- CSS Variables & Color Palette --- */
:root {
    --primary-color: #2c5694;
    --primary-dark: #1a3567;
    --primary-light: #3d6db5;
    --accent-gold: #d4a84b;
    --accent-gold-hover: #c09540;
    --text-primary: #1e293b;
    --text-secondary: #5c6b7f;
    --bg-light: #eef2f7;
    --bg-card: #ffffff;
    --bg-dark: #1a3567;
    --white: #ffffff;
    --success: #10b981;
    --error: #ef4444;
    --border-color: #d8dfe8;
    --max-width: 1400px;
    --border-radius-sm: 8px;

    --border-radius-md: 12px;
    --border-radius-lg: 20px;
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.06);
    --shadow-md: 0 4px 20px rgba(26, 53, 103, 0.1);
    --shadow-lg: 0 12px 40px rgba(26, 53, 103, 0.15);
    --shadow-glow: 0 0 30px rgba(212, 168, 75, 0.35);
    --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-bounce: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

/* --- Base Reset --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Outfit', sans-serif;
    background-color: #edf1f7;
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: clip;
}


.container {
    width: 100%;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 1.5rem;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.text-center {
    text-align: center;
}

.text-right {
    text-align: right;
}

/* --- Typography --- */
h1, h2, h3, h4 {
    font-weight: 700;
    color: var(--primary-dark);
    line-height: 1.25;
}

p {
    color: var(--text-secondary);
}

.section-title {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--primary-dark);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.section-subtitle {
    max-width: 600px;
    margin: 0.75rem auto 0;
    font-size: 1rem;
    color: var(--text-secondary);
}

/* --- Buttons --- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.8rem 1.8rem;
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: 6px;
    cursor: pointer;
    transition: var(--transition-smooth);
    border: none;
    text-decoration: none;
    font-family: 'Outfit', sans-serif;
}

.btn-primary {
    background: var(--primary-color);
    color: var(--white);
    box-shadow: var(--shadow-sm);
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-secondary-outline {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    box-shadow: none;
}

.btn-secondary-outline:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-sm);
}

.modal-buy-now-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(220,47,2,0.5) !important;
    filter: brightness(1.08);
}

.btn-block {
    display: flex;
    width: 100%;
}

.icon-btn {
    background: transparent;
    border: none;
    cursor: pointer;
    position: relative;
    font-size: 1.3rem;
    color: var(--primary-dark);
    padding: 0.4rem;
    transition: var(--transition-smooth);
    text-decoration: none;
}

.icon-btn:hover {
    color: var(--accent-gold);
}


/* ==========================================
   TOP BAR
   ========================================== */
.top-bar {
    background-color: var(--white);
    border-bottom: 1px solid var(--border-color);
    padding: 0.5rem 0;
    font-size: 0.8rem;
    color: var(--text-secondary);
}

.top-bar-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2.5rem;
}

.top-bar-item {
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.top-bar-item i {
    color: var(--primary-color);
    font-size: 0.85rem;
}


/* ==========================================
   HEADER / NAVIGATION
   ========================================== */
.header {
    position: sticky;
    top: 0;
    z-index: 100;
    background-color: var(--white);
    border-bottom: 1px solid var(--border-color);
    padding: 0;
    transition: var(--transition-smooth);
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 70px;
}

.logo {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    text-decoration: none;
    color: var(--primary-dark);
    flex-shrink: 0;
    margin-right: 1.5rem;
}


.logo-img {
    height: 50px;
    width: 50px;
    object-fit: contain;
    border-radius: 0;
    border: none;
    box-shadow: none;
    transition: var(--transition-smooth);
}

.logo:hover .logo-img {
    transform: rotate(10deg) scale(1.05);
}

.logo-text-group {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: -0.5px;
}

.logo-accent {
    background: linear-gradient(120deg, #c09540 0%, #f0d78c 40%, #d4a84b 60%, #c09540 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shimmer-gold 3s ease-in-out infinite;
}

@keyframes shimmer-gold {
    0% { background-position: 0% center; }
    50% { background-position: 100% center; }
    100% { background-position: 0% center; }
}

.logo-tagline {
    display: block !important;
    font-size: 0.68rem;
    color: #64748b;
    font-weight: 400;
    letter-spacing: 0.3px;
    text-transform: none;
    font-style: normal;
    margin-top: 1px;
    line-height: 1.2;
    visibility: visible !important;
    opacity: 1 !important;
}

.nav-menu {
    display: flex;
    gap: 1.25rem;
    align-items: center;
    height: 100%;
}

.nav-link {
    text-decoration: none;
    color: var(--text-primary);
    font-weight: 700;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    position: relative;
    padding: 0.5rem 0.15rem;
    transition: var(--transition-smooth);
    white-space: nowrap;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-color);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: var(--transition-smooth);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

/* Navigation dropdown & Mega Menu */
.nav-dropdown {
    position: relative;
    display: flex;
    align-items: center;
    height: 100%;
}

.mega-dropdown-wrapper {
    position: static !important;
}

.mega-dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    width: 100%;
    background: #ffffff;
    box-shadow: 0 20px 40px rgba(13, 30, 61, 0.15);
    border-top: 3px solid var(--primary-color);
    border-bottom: 1px solid #e2e8f0;
    padding: 2rem 0;
    z-index: 999;
}

.mega-dropdown-wrapper:hover .mega-dropdown-menu,
.mega-dropdown-menu:hover {
    display: block;
}

@keyframes megaFadeIn {
    from {
        opacity: 0;
        transform: translateY(8px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.mega-dropdown-container {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 2rem;
}

.mega-col {
    display: flex;
    flex-direction: column;
}

.mega-title {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 0.85rem;
    padding-bottom: 0.4rem;
    border-bottom: 2px solid #f1f5f9;
    display: flex;
    align-items: center;
    gap: 0.4rem;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.mega-title i {
    color: var(--primary-color);
    font-size: 0.85rem;
}

.mega-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.mega-list a {
    text-decoration: none;
    color: #475569;
    font-size: 0.84rem;
    font-weight: 500;
    transition: all 0.2s ease;
    display: inline-block;
    padding: 0.15rem 0;
}

.mega-list a:hover {
    color: var(--primary-color);
    transform: translateX(4px);
    font-weight: 600;
}

.mega-featured-products {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.mega-product-card {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    padding: 0.4rem;
    border-radius: 8px;
    background: #f8fafc;
    border: 1px solid #f1f5f9;
    transition: all 0.2s ease;
}

.mega-product-card:hover {
    background: #ffffff;
    border-color: var(--primary-color);
    box-shadow: 0 4px 12px rgba(26, 58, 107, 0.08);
    transform: translateY(-2px);
}

.mega-product-card img {
    width: 44px;
    height: 44px;
    object-fit: cover;
    border-radius: 6px;
    flex-shrink: 0;
}

.mega-product-info {
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.mega-product-name {
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--primary-dark);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.mega-product-price {
    font-size: 0.72rem;
    font-weight: 700;
    color: #d97706;
}

.header-search-box {
    display: flex;
    align-items: center;
    background: #f1f5f9;
    border: 1px solid #e2e8f0;
    border-radius: 20px;
    padding: 0.45rem 0.75rem;
    width: 180px;
    min-width: 140px;
    flex-shrink: 1;
    transition: all 0.3s ease;
}

.header-search-box:focus-within {
    background: #ffffff;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(26, 58, 107, 0.1);
}

.header-search-box .search-icon {
    color: #64748b;
    font-size: 0.9rem;
    margin-right: 0.5rem;
}

.header-search-box input {
    border: none;
    background: transparent;
    outline: none;
    width: 100%;
    font-family: 'Outfit', sans-serif;
    font-size: 0.88rem;
    color: var(--text-primary);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-shrink: 0;
}

.header-action-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: none;
    cursor: pointer;
    text-decoration: none;
    color: var(--text-primary);
    padding: 0.2rem 0.4rem;
    transition: all 0.2s ease;
}

.header-action-btn:hover {
    color: var(--primary-color);
}

.action-icon-wrapper {
    position: relative;
    font-size: 1.35rem;
    color: var(--primary-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2px;
}

.header-action-btn:hover .action-icon-wrapper {
    color: var(--primary-color);
}

.action-label {
    font-size: 0.72rem;
    font-weight: 600;
    color: #475569;
    white-space: nowrap;
}

.header-action-btn:hover .action-label {
    color: var(--primary-color);
}

.cart-badge {
    position: absolute;
    top: -5px;
    right: -8px;
    background-color: #ef4444;
    color: var(--white);
    font-size: 0.65rem;
    font-weight: 800;
    min-width: 18px;
    height: 18px;
    padding: 0 4px;
    border-radius: 9px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--white);
}

.btn-cta-header:hover {
    background: var(--primary-dark);
    transform: translateY(-1px);
}

.mobile-nav-toggle {
    display: none;
    font-size: 1.5rem;
    background: transparent;
    border: none;
    cursor: pointer;
    color: var(--primary-dark);
    order: -1;
}

.mobile-phone-btn {
    display: none !important;
}

.header-search-btn {
    font-size: 1.1rem;
}

/* User dropdown styles */
.user-profile-menu {
    position: relative;
    display: inline-block;
}

.user-dropdown-content {
    display: none;
    position: absolute;
    right: 0;
    background-color: var(--white);
    min-width: 220px;
    box-shadow: var(--shadow-md);
    border-radius: var(--border-radius-sm);
    border: 1px solid var(--border-color);
    z-index: 1000;
    padding: 0.5rem 0;
    margin-top: 0.5rem;
}

.user-dropdown-content .dropdown-welcome {
    padding: 0.5rem 1rem;
    border-bottom: 1px solid var(--border-color);
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--primary-dark);
}

.user-dropdown-content a {
    color: var(--text-primary);
    padding: 0.6rem 1rem;
    text-decoration: none;
    display: block;
    font-size: 0.85rem;
    transition: background 0.3s;
}

.user-dropdown-content a:hover {
    background-color: var(--bg-light);
}

.user-dropdown-content a i {
    margin-right: 0.5rem;
}

.user-dropdown-content .logout-link {
    color: var(--error);
}


/* ==========================================
   HERO BANNER SLIDER - NEW DESIGN
   ========================================== */
.hero-banner-slider {
    position: relative;
    width: 100%;
    height: auto;
    aspect-ratio: 1920 / 650;
    min-height: 220px;
    max-height: 650px;
    overflow: hidden;
}

.hero-slides-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #f0f6fd;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
    z-index: 1;
}

.hero-slide.active {
    opacity: 1;
    z-index: 2;
}

.hero-slide-full-link {
    display: block !important;
    width: 100% !important;
    height: 100% !important;
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    z-index: 5 !important;
}

.hero-slide-img-box {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    background-repeat: no-repeat !important;
    background-position: top center !important;
    background-size: 100% 100% !important;
    z-index: 1 !important;
}

.hero-slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 60%;
    height: 100%;
    background: linear-gradient(to right,
        #f0f6fd 0%,
        #f0f6fd 45%,
        rgba(240, 246, 253, 0.9) 75%,
        transparent 100%);
    z-index: 1;
}

.hero-slide-content {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
    padding: 1.5rem 0;
}

.hero-text-block {
    max-width: 550px;
}

.hero-subtitle {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--primary-color);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
}

.hero-brand-big {
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--primary-dark);
    letter-spacing: 4px;
    line-height: 1;
    margin-bottom: 0.25rem;
}

.hero-slogan-cursive {
    font-family: 'Dancing Script', 'Pacifico', cursive;
    font-size: 1.6rem;
    color: var(--accent-gold);
    margin-bottom: 0.75rem;
    font-weight: 600;
}

.hero-desc {
    font-size: 0.92rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 1.25rem;
}

.hero-cta-group {
    display: flex;
    gap: 1rem;
    align-items: center;
    flex-wrap: wrap;
}

.hero-btn-primary {
    background: var(--primary-color);
    color: var(--white);
    padding: 0.85rem 2rem;
    border-radius: 4px;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: var(--transition-smooth);
    border: 2px solid var(--primary-color);
}

.hero-btn-primary:hover {
    background: var(--primary-dark);
    border-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.hero-btn-outline {
    background: transparent;
    color: var(--primary-dark);
    padding: 0.85rem 2rem;
    border-radius: 4px;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: var(--transition-smooth);
    border: 2px solid var(--primary-dark);
}

.hero-btn-outline:hover {
    background: var(--primary-dark);
    color: var(--white);
    transform: translateY(-2px);
}

/* Warranty Badge */
.hero-badge-wrap {
    flex-shrink: 0;
}

.hero-warranty-badge {
    width: 130px;
    height: 130px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent-gold), #e6a817);
    color: var(--primary-dark);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    box-shadow: 0 8px 30px rgba(198, 160, 42, 0.4);
    animation: badgePulse 3s ease-in-out infinite;
    position: relative;
}

.hero-warranty-badge::before {
    content: '';
    position: absolute;
    inset: -5px;
    border-radius: 50%;
    border: 2px dashed rgba(198, 160, 42, 0.5);
}

.badge-number {
    font-size: 2.5rem;
    font-weight: 900;
    line-height: 1;
}

.badge-unit {
    font-size: 0.85rem;
    font-weight: 800;
    letter-spacing: 1px;
    margin-top: -2px;
}

.badge-text {
    font-size: 0.55rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    line-height: 1.3;
    margin-top: 2px;
}

@keyframes badgePulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

/* Arrow Navigation */
.hero-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: none;
    background: rgba(255, 255, 255, 0.85);
    color: var(--primary-dark);
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition-smooth);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.1);
}

.hero-arrow:hover {
    background: var(--white);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.hero-arrow-left {
    left: 1.5rem;
}

.hero-arrow-right {
    right: 1.5rem;
}

/* Dots Navigation */
.hero-dots {
    position: absolute;
    bottom: 1.5rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.6rem;
    z-index: 10;
}

.hero-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.2);
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
}

.hero-dot.active {
    background: var(--primary-color);
    transform: scale(1.3);
}

.hero-dot:hover {
    background: var(--primary-color);
    opacity: 0.7;
}


/* ==========================================
   TRUST BAR
   ========================================== */
.trust-bar {
    background: var(--white);
    border-top: 1px solid #d0d9e5;
    border-bottom: 1px solid #d0d9e5;
    padding: 0.9rem 0;
    box-shadow: 0 1px 4px rgba(0,0,0,0.04);
    overflow: hidden;
    position: relative;
    width: 100%;
}

.trust-bar-track {
    display: flex;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    justify-content: center;
    align-items: center;
    padding: 0 1rem;
}

.trust-bar-content {
    display: flex;
    align-items: center;
    justify-content: space-around;
    width: 100%;
}

.trust-bar-content[aria-hidden="true"] {
    display: none;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0 1.5rem;
    flex-shrink: 0;
}

.trust-icon {
    font-size: 1.35rem;
    color: var(--primary-color);
    opacity: 0.75;
}

.trust-text {
    display: flex;
    flex-direction: column;
}

.trust-text strong {
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--primary-dark);
    letter-spacing: 0.3px;
    white-space: nowrap;
}

.trust-text span {
    font-size: 0.72rem;
    color: var(--text-secondary);
    white-space: nowrap;
}

.trust-divider {
    width: 1px;
    height: 32px;
    background: var(--border-color);
    flex-shrink: 0;
}

@keyframes trustMarquee {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}


/* ==========================================
   ABOUT EVEON SECTION
   ========================================== */
.about-eveon-section {
    padding: 4rem 0;
    background: var(--bg-light);
}

.about-eveon-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.about-eveon-subtitle {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--primary-color);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
}

.about-eveon-title {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary-dark);
    line-height: 1.3;
    margin-bottom: 1rem;
}

.about-eveon-desc {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.about-eveon-badges {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.about-badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.4rem;
}

.about-badge i {
    font-size: 1.5rem;
    color: var(--primary-color);
}

.about-badge span {
    font-size: 0.72rem;
    font-weight: 600;
    color: var(--text-primary);
    line-height: 1.3;
}

.btn-about-cta {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    padding: 0.7rem 1.5rem;
    border-radius: 6px;
    font-size: 0.85rem;
    font-weight: 700;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: var(--transition-smooth);
}

.btn-about-cta:hover {
    background: var(--primary-color);
    color: var(--white);
}

.about-eveon-image {
    border-radius: var(--border-radius-lg);
    overflow: hidden;
}

.about-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: var(--border-radius-lg);
}


/* ==========================================
   PRODUCT CATALOG
   ========================================== */
.products-section {
    padding: 3rem 0;
    background: #f4f7fb;
}

.section-header-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    border-bottom: 2px solid var(--primary-color);
    padding-bottom: 0.75rem;
}

.view-all-link {
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--primary-color);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.4rem;
    transition: var(--transition-smooth);
}

.view-all-link:hover {
    color: var(--accent-gold);
}

/* Filter Controls - hidden by default, toggle via JS */
.filters-container {
    background-color: var(--bg-light);
    padding: 1rem 1.25rem;
    border-radius: var(--border-radius-sm);
    margin-bottom: 2rem;
    display: none;
    flex-direction: column;
    gap: 0.5rem;
    border: 1px solid var(--border-color);
}

.filters-container.show {
    display: flex;
}

.filter-group {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.filter-label {
    font-weight: 700;
    font-size: 0.8rem;
    color: var(--primary-dark);
    min-width: 90px;
    white-space: nowrap;
}

.filter-buttons {
    display: flex;
    gap: 0.4rem;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 0.3rem 0.85rem;
    font-size: 0.78rem;
    font-weight: 600;
    background-color: var(--white);
    color: var(--text-primary);
    border: 1px solid var(--border-color);
    border-radius: 50px;
    cursor: pointer;
    transition: var(--transition-smooth);
    font-family: 'Outfit', sans-serif;
}

.filter-btn:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.filter-btn.active {
    background-color: var(--primary-color);
    color: var(--white);
    border-color: var(--primary-color);
}

/* Products Grid */
.products-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1.25rem;
}

@media (min-width: 1025px) {
    .products-grid {
        display: flex;
        flex-wrap: nowrap;
        overflow-x: auto;
        padding-bottom: 1rem;
        scrollbar-width: thin;
    }
    .products-grid::-webkit-scrollbar {
        height: 6px;
    }
    .products-grid::-webkit-scrollbar-track {
        background: #f1f5f9;
        border-radius: 10px;
    }
    .products-grid::-webkit-scrollbar-thumb {
        background: #cbd5e1;
        border-radius: 10px;
    }
    .products-grid::-webkit-scrollbar-thumb:hover {
        background: #94a3b8;
    }
    .product-card {
        flex: 0 0 calc(20% - 1rem);
        min-width: 250px;
    }
}

/* Product Card - NEW Design */
.product-card {
    background: var(--white);
    border-radius: var(--border-radius-md);
    overflow: hidden;
    border: 1px solid #d5dde8;
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
    position: relative;
    box-shadow: 0 2px 8px rgba(44, 86, 148, 0.06);
}

.product-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(26, 58, 107, 0.15);
}

.product-image-wrapper {
    position: relative;
    overflow: hidden;
    aspect-ratio: 1/1;
    background: linear-gradient(90deg, #f1f5f9 25%, #e2e8f0 50%, #f1f5f9 75%);
    background-size: 200% 100%;
    animation: skeletonPulse 1.5s infinite ease-in-out;
}

@keyframes skeletonPulse {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

.discount-badge-circle {
    position: absolute;
    top: 10px;
    right: 10px;
    background: #ef4444;
    color: #ffffff;
    font-weight: 800;
    font-size: 0.8rem;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(239, 68, 68, 0.35);
    z-index: 10;
}

.product-rating-box {
    display: flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.84rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 0.35rem;
}

.rating-score {
    color: #0f172a;
}

.star-icon {
    color: #eab308;
    font-size: 0.85rem;
}

.rating-count {
    color: #64748b;
    font-weight: 500;
}

.product-size-count-pill {
    display: inline-block;
    background: #f0f7ff;
    color: #2563eb;
    font-size: 0.78rem;
    font-weight: 600;
    padding: 0.2rem 0.65rem;
    border-radius: 12px;
    margin-top: 0.35rem;
    margin-bottom: 0.35rem;
    border: 1px solid #dbeafe;
    width: fit-content;
}

.product-sold-count {
    font-size: 0.8rem;
    color: #475569;
    font-weight: 500;
}

.product-sold-count strong {
    color: #0f172a;
    font-weight: 700;
}

.product-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 0.4s ease, transform 0.4s ease;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    pointer-events: none;
}

.product-image.active {
    opacity: 1;
    pointer-events: auto;
    z-index: 2;
}

.product-card:hover .product-image.active {
    transform: scale(1.05);
}

/* Product Card Image Carousel */
.product-carousel {
    position: relative;
    width: 100%;
    height: 100%;
}

.carousel-track {
    width: 100%;
    height: 100%;
    position: relative;
}

.carousel-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid var(--border-color);
    color: var(--primary-dark);
    font-size: 0.8rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    opacity: 0;
    transition: var(--transition-smooth);
}

.product-image-wrapper:hover .carousel-arrow,
.modal-carousel:hover .carousel-arrow {
    opacity: 1;
}

.carousel-arrow:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-50%) scale(1.1);
}

.carousel-prev { left: 6px; }
.carousel-next { right: 6px; }

.carousel-dots {
    position: absolute;
    bottom: 8px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 5px;
    z-index: 10;
}

.carousel-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    border: 1px solid rgba(0, 0, 0, 0.15);
    cursor: pointer;
    transition: var(--transition-smooth);
}

.carousel-dot.active {
    background: var(--primary-color);
    border-color: var(--primary-color);
    transform: scale(1.3);
}

/* Product Badges */
.product-badge {
    position: absolute;
    top: 0.75rem;
    left: 0.75rem;
    background-color: var(--primary-color);
    color: var(--white);
    padding: 0.2rem 0.6rem;
    font-size: 0.68rem;
    font-weight: 700;
    border-radius: 4px;
    z-index: 5;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.product-badge.badge-bestseller { background: #e74c3c; }
.product-badge.badge-sale { background: #f39c12; color: var(--primary-dark); }
.product-badge.badge-new { background: #27ae60; }
.product-badge.badge-premium { background: var(--primary-dark); }

.product-firmness-tag {
    position: absolute;
    top: 0.75rem;
    right: 0.75rem;
    background-color: rgba(255, 255, 255, 0.9);
    color: var(--text-primary);
    padding: 0.2rem 0.6rem;
    font-size: 0.7rem;
    font-weight: 600;
    border-radius: 4px;
    z-index: 5;
}

.product-discount-badge {
    position: absolute;
    top: 2.5rem;
    right: 0.75rem;
    background: linear-gradient(135deg, #e53e3e 0%, #c53030 100%);
    color: #fff;
    font-weight: 800;
    font-size: 0.75rem;
    padding: 3px 8px;
    border-radius: 4px;
    z-index: 3;
    letter-spacing: 0.3px;
}

/* Wishlist button */
.product-wishlist-btn {
    position: absolute;
    top: 0.75rem;
    right: 0.75rem;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--white);
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 5;
    box-shadow: var(--shadow-sm);
    color: var(--text-secondary);
    font-size: 0.85rem;
    transition: var(--transition-smooth);
}

.product-wishlist-btn:hover {
    color: #e74c3c;
}

/* Product Details */
.product-details {
    padding: 1rem 1rem 1.25rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.product-size-info {
    font-size: 0.75rem;
    color: var(--text-secondary);
    margin-bottom: 0.4rem;
}

.product-title {
    font-size: 0.88rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--primary-dark);
    line-height: 1.3;
    text-transform: uppercase;
}

.product-card:hover .product-title {
    color: var(--primary-color);
}

.product-desc {
    font-size: 0.8rem;
    color: var(--text-secondary);
    margin-bottom: 0.75rem;
    flex-grow: 1;
    display: none;
}

/* Variant selector - hidden on cards, shown in modal */
.variant-selector {
    margin-top: 0.5rem;
    padding-top: 0.5rem;
    border-top: 1px dashed var(--border-color);
    display: none;
}

.variant-selector-row {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    margin-bottom: 0.4rem;
    flex-wrap: wrap;
}

.variant-label {
    font-size: 0.68rem;
    font-weight: 600;
    color: var(--text-secondary);
    min-width: 52px;
    white-space: nowrap;
}

.variant-options {
    display: flex;
    gap: 0.25rem;
    flex-wrap: wrap;
}

.variant-btn {
    padding: 0.2rem 0.5rem;
    font-size: 0.65rem;
    font-weight: 600;
    font-family: 'Outfit', sans-serif;
    border: 1.5px solid var(--border-color);
    border-radius: 4px;
    background-color: var(--white);
    color: var(--text-primary);
    cursor: pointer;
    transition: var(--transition-smooth);
    white-space: nowrap;
}

.variant-btn:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.variant-btn.active {
    border-color: var(--primary-color);
    background-color: var(--primary-color);
    color: var(--white);
}

/* Product Price & Price Row */
.product-price-group {
    margin-top: 0.25rem;
    margin-bottom: 0.25rem;
}

.price-row {
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.price-sale {
    font-size: 1.15rem;
    font-weight: 800;
    color: #ef4444;
}

.price-retail {
    font-size: 0.82rem;
    text-decoration: line-through;
    color: #94a3b8;
    font-weight: 400;
}

/* Product Card Footer Actions */
.product-card-footer {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: auto;
    padding-top: 0.6rem;
    border-top: 1px solid #f1f5f9;
}

.btn-product-detail {
    flex: 1;
    background: #ffffff;
    color: var(--primary-dark);
    border: 1.5px solid #cbd5e1;
    padding: 0.45rem 0.5rem;
    border-radius: 8px;
    font-weight: 700;
    font-size: 0.75rem;
    cursor: pointer;
    transition: all 0.2s ease;
    font-family: 'Outfit', sans-serif;
    text-align: center;
    white-space: nowrap;
}

.btn-product-detail:hover {
    background: var(--primary-color);
    color: #ffffff;
    border-color: var(--primary-color);
}

.btn-product-cart {
    width: 36px;
    height: 36px;
    background: var(--primary-color);
    color: #ffffff;
    border: none;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
    flex-shrink: 0;
}

.btn-product-cart:hover {
    background: var(--primary-dark);
    transform: scale(1.08);
}

.btn-product-cart:active {
    transform: scale(0.95);
}

.product-btn-cart {
    background-color: var(--primary-color);
    color: var(--white);
    width: 34px;
    height: 34px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    border: none;
    font-size: 0.85rem;
    transition: var(--transition-smooth);
}

.product-btn-cart:hover {
    background-color: var(--accent-gold);
    color: var(--primary-dark);
}

.product-btn-buy {
    background-color: var(--accent-gold);
    color: var(--primary-dark);
    border: none;
    padding: 0.4rem 0.75rem;
    height: 34px;
    border-radius: 6px;
    font-weight: 700;
    font-size: 0.72rem;
    cursor: pointer;
    transition: var(--transition-smooth);
    white-space: nowrap;
    font-family: 'Outfit', sans-serif;
    display: none;
}

.product-btn-buy:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.product-btn-cart.disabled,
.product-btn-cart:disabled {
    background-color: #cbd5e0;
    cursor: not-allowed;
    opacity: 0.6;
    pointer-events: none;
}

/* Out of stock */
.out-of-stock-text {
    color: #e53e3e;
    font-weight: 700;
    font-size: 0.85rem;
}

.product-rating {
    color: var(--accent-gold);
    font-size: 0.75rem;
    margin-bottom: 0.3rem;
    display: none;
}


/* ==========================================
   WHY CHOOSE EVEON
   ========================================== */
.why-eveon-section {
    padding: 3.5rem 0;
    background: var(--white);
}

.why-eveon-inner {
    display: flex;
    align-items: center;
    gap: 3rem;
}

.why-eveon-text-col {
    flex: 0 0 auto;
    max-width: 320px;
}

.why-eveon-text-col p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.btn-why-cta {
    background: var(--primary-color);
    color: var(--white);
    padding: 0.7rem 1.5rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    border: none;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    transition: var(--transition-smooth);
    font-family: 'Outfit', sans-serif;
    cursor: pointer;
}

.btn-why-cta:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

.why-eveon-grid {
    display: flex;
    justify-content: center;
    gap: 2.5rem;
    flex: 1;
    flex-wrap: wrap;
}

.why-eveon-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.75rem;
    max-width: 120px;
}

.why-icon-circle {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: var(--white);
    border: 2px solid var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--primary-color);
    transition: var(--transition-smooth);
    box-shadow: var(--shadow-sm);
}

.why-eveon-item:hover .why-icon-circle {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.why-eveon-item h4 {
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--primary-dark);
    line-height: 1.4;
}


/* ==========================================
   QUIZ SECTION
   ========================================== */
.quiz-section {
    padding: 4rem 0;
    background-color: var(--white);
    display: none;
}

.quiz-container {
    background-color: var(--bg-light);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-md);
    overflow: hidden;
    border: 1px solid var(--border-color);
}

.quiz-progress-bar {
    height: 5px;
    background-color: var(--border-color);
    width: 100%;
}

.quiz-progress {
    height: 100%;
    background-color: var(--primary-color);
    width: 0%;
    transition: var(--transition-smooth);
}

.quiz-box {
    padding: 3rem;
}

.quiz-step {
    display: none;
}

.quiz-step.active {
    display: block;
    animation: fadeIn 0.5s ease;
}

.quiz-step-num {
    color: var(--primary-color);
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 1.5px;
    margin-bottom: 0.5rem;
    display: block;
}

.quiz-question {
    font-size: 1.75rem;
    margin-bottom: 0.5rem;
}

.quiz-question-sub {
    margin-bottom: 2.5rem;
}

.quiz-options-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.25rem;
    margin-bottom: 2.5rem;
}

.quiz-option-card {
    background-color: var(--white);
    border: 2px solid var(--border-color);
    border-radius: var(--border-radius-md);
    padding: 2rem 1.25rem;
    text-align: center;
    cursor: pointer;
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}

.quiz-option-card input[type="radio"] {
    position: absolute;
    opacity: 0;
}

.option-icon {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    background-color: var(--bg-light);
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.35rem;
    margin-bottom: 1rem;
    transition: var(--transition-smooth);
}

.option-title {
    font-weight: 700;
    font-size: 1.05rem;
    margin-bottom: 0.4rem;
    color: var(--primary-dark);
}

.option-desc {
    font-size: 0.82rem;
    color: var(--text-secondary);
}

.quiz-option-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-3px);
}

.quiz-option-card:has(input[type="radio"]:checked) {
    border-color: var(--primary-color);
    background-color: rgba(26, 58, 107, 0.04);
    box-shadow: 0 0 12px rgba(26, 58, 107, 0.08);
}

.quiz-option-card:has(input[type="radio"]:checked) .option-icon {
    background-color: var(--primary-color);
    color: var(--white);
}

.quiz-actions {
    display: flex;
    justify-content: space-between;
    border-top: 1px solid var(--border-color);
    padding-top: 1.5rem;
}

/* Quiz Result */
.quiz-result-wrapper {
    text-align: center;
    animation: fadeIn 0.5s ease;
}

.result-celebrate {
    font-size: 2.5rem;
    color: var(--accent-gold);
    margin-bottom: 1.25rem;
}

.quiz-result-card {
    max-width: 500px;
    margin: 2rem auto;
    background-color: var(--white);
    border-radius: var(--border-radius-md);
    padding: 2rem;
    box-shadow: var(--shadow-md);
    border: 1px dashed var(--primary-color);
}

.promo-badge {
    background-color: var(--primary-color);
    color: var(--white);
    font-weight: 800;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-size: 0.85rem;
    display: inline-block;
    margin-top: 1.25rem;
}


/* ==========================================
   CUSTOMER REVIEWS - NEW DESIGN
   ========================================== */
.reviews-section {
    padding: 3.5rem 0;
    background: #edf1f7;
}

.reviews-section .section-title {
    margin-bottom: 2rem;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.review-card-new {
    background: var(--white);
    border-radius: var(--border-radius-md);
    padding: 1.75rem;
    border: 1px solid #d5dde8;
    transition: var(--transition-smooth);
    position: relative;
    box-shadow: 0 2px 8px rgba(44, 86, 148, 0.06);
}

.review-card-new:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.review-quote-icon {
    font-size: 2rem;
    color: var(--primary-color);
    opacity: 0.15;
    margin-bottom: 0.5rem;
}

.review-text-new {
    font-size: 0.88rem;
    color: var(--text-primary);
    line-height: 1.6;
    margin-bottom: 0.75rem;
    font-style: italic;
}

.review-rating-new {
    color: #f59e0b;
    font-size: 0.85rem;
    margin-bottom: 0.75rem;
    display: flex;
    gap: 2px;
}

.reviewer-info-new {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    border-top: 1px solid var(--border-color);
    padding-top: 0.75rem;
}

.reviewer-avatar-new {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    border: 2px solid var(--primary-color);
    overflow: hidden;
}

.reviewer-name-new {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 0.1rem;
}

.reviewer-location {
    font-size: 0.78rem;
    color: var(--text-secondary);
}


/* ==========================================
   FOOTER - NEW DESIGN
   ========================================== */
.footer {
    background-color: var(--bg-dark);
    color: rgba(255, 255, 255, 0.7);
    padding: 3.5rem 0 0 0;
}

.footer h3 {
    color: var(--white);
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 1.25rem;
    letter-spacing: 0.5px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.3fr 0.8fr 0.9fr 1fr 1.1fr;
    gap: 2rem;
    margin-bottom: 2.5rem;
}

.footer-logo {
    color: var(--white);
    margin-bottom: 0.75rem;
    display: inline-flex;
}

.footer-logo-img {
    height: 45px;
    width: 45px;
    object-fit: contain;
    filter: brightness(1.1);
}

.footer-tagline {
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.82rem;
    margin-bottom: 1.25rem;
    font-style: italic;
}

.social-links {
    display: flex;
    gap: 0.6rem;
}

.social-links a {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.08);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 0.85rem;
    transition: var(--transition-smooth);
}

.social-links a:hover {
    background-color: var(--primary-color);
    color: var(--white);
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.65rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    font-size: 0.85rem;
    transition: var(--transition-smooth);
}

.footer-links a:hover {
    color: var(--white);
    padding-left: 4px;
}

.footer-contact-list {
    list-style: none;
}

.footer-contact-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
    margin-bottom: 0.75rem;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
}

.footer-contact-list i {
    color: var(--primary-color);
    margin-top: 0.2rem;
    font-size: 0.85rem;
    opacity: 0.7;
}

/* Newsletter */
.footer-newsletter-desc {
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.4);
    margin-bottom: 1rem;
    line-height: 1.5;
}

.newsletter-form {
    display: flex;
    gap: 0;
    border-radius: 6px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.newsletter-form input {
    flex: 1;
    padding: 0.65rem 0.85rem;
    border: none;
    background: rgba(255, 255, 255, 0.06);
    color: var(--white);
    font-family: 'Outfit', sans-serif;
    font-size: 0.82rem;
    outline: none;
}

.newsletter-form input::placeholder {
    color: rgba(255, 255, 255, 0.3);
}

.newsletter-form button {
    padding: 0.65rem 1rem;
    background: var(--primary-color);
    color: var(--white);
    border: none;
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 0.78rem;
    cursor: pointer;
    transition: var(--transition-smooth);
    white-space: nowrap;
    letter-spacing: 0.5px;
}

.newsletter-form button:hover {
    background: var(--primary-light);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.07);
    padding: 1.25rem 0;
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.35);
}

/* Footer new column styles */
.footer-col-title {
    color: var(--white) !important;
    font-size: 0.85rem !important;
    font-weight: 700 !important;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 1.25rem !important;
}

.footer-desc {
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.45);
    line-height: 1.6;
    margin-bottom: 1.25rem;
}

.footer-social-row {
    display: flex;
    gap: 0.6rem;
}

.footer-social-icon {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 0.85rem;
    transition: var(--transition-smooth);
}

.footer-social-icon:hover {
    transform: translateY(-2px);
}

.social-fb {
    background-color: #1877F2;
    color: #fff;
}
.social-fb:hover {
    background-color: #0d65d9;
    color: #fff;
}

.social-tiktok {
    background-color: #000;
    color: #fff;
}
.social-tiktok:hover {
    background-color: #ff0050;
    color: #fff;
}

.social-zalo {
    background-color: #0068FF;
    color: #fff;
}
.social-zalo:hover {
    background-color: #0052cc;
    color: #fff;
}

.footer-contact-list i {
    color: var(--accent-gold);
    opacity: 1;
}

.footer-contact-list a {
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    transition: var(--transition-smooth);
}

.footer-contact-list a:hover {
    color: var(--white);
}

/* Newsletter new styles */
.newsletter-input-wrap {
    display: flex;
    border-radius: 6px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.newsletter-input {
    flex: 1;
    padding: 0.65rem 0.85rem;
    border: none;
    background: rgba(255, 255, 255, 0.06);
    color: var(--white);
    font-family: 'Outfit', sans-serif;
    font-size: 0.82rem;
    outline: none;
    min-width: 0;
}

.newsletter-input::placeholder {
    color: rgba(255, 255, 255, 0.3);
}

.newsletter-btn {
    padding: 0.65rem 1rem;
    background: var(--accent-gold);
    color: var(--primary-dark);
    border: none;
    font-size: 0.9rem;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.newsletter-btn:hover {
    background: var(--accent-gold-hover);
}

.newsletter-note {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.35);
    margin-top: 0.75rem;
    line-height: 1.5;
}


/* ==========================================
   MOBILE BOTTOM BAR
   ========================================== */
.mobile-bottom-bar {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 500;
    background: var(--white);
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
    border-top: 1px solid var(--border-color);
}

.mobile-bar-item {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.65rem 0.5rem;
    text-decoration: none;
    font-size: 0.72rem;
    font-weight: 600;
    color: var(--text-primary);
    transition: var(--transition-smooth);
}

.mobile-bar-item i {
    font-size: 1.1rem;
}

.mobile-bar-item small {
    font-weight: 400;
    font-size: 0.62rem;
    opacity: 0.7;
}

.bar-consult {
    background: var(--primary-color);
    color: var(--white) !important;
}

.bar-hotline {
    background: var(--white);
    color: var(--primary-dark) !important;
}

.bar-facebook {
    background: #0084ff;
    color: var(--white) !important;
}

.bar-fb-icon {
    font-size: 1.25rem !important;
}


/* ==========================================
   CART DRAWER
   ========================================== */
.cart-drawer-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(13, 30, 61, 0.5);
    backdrop-filter: blur(4px);
    z-index: 250000 !important;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-smooth);
}

.cart-drawer-overlay.active {
    opacity: 1;
    visibility: visible;
}

.cart-drawer {
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    max-width: 420px;
    height: 100%;
    background-color: var(--white);
    z-index: 250001 !important;
    box-shadow: -8px 0 30px rgba(13, 30, 61, 0.15);
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
}

.cart-drawer.active {
    transform: translateX(0);
}

.cart-header {
    padding: 1.5rem;
    border-bottom: 1px solid var(--border-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cart-header h3 {
    font-size: 1.15rem;
}

.close-btn {
    font-size: 1.5rem;
    background: transparent;
    border: none;
    cursor: pointer;
    color: var(--text-primary);
    transition: var(--transition-smooth);
}

.close-btn:hover {
    color: var(--primary-color);
}

.cart-items-container {
    flex-grow: 1;
    padding: 1.5rem;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.cart-empty-state {
    text-align: center;
    padding: 3rem 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.cart-empty-state i {
    font-size: 3.5rem;
    color: var(--border-color);
}

.cart-item {
    display: grid;
    grid-template-columns: 72px 1fr auto;
    gap: 1rem;
    align-items: center;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--border-color);
}

.cart-item-img {
    width: 72px;
    height: 72px;
    object-fit: cover;
    border-radius: var(--border-radius-sm);
    border: 1px solid var(--border-color);
}

.cart-item-details h4 {
    font-size: 0.88rem;
    margin-bottom: 0.2rem;
}

.cart-item-price {
    font-weight: 700;
    color: var(--primary-dark);
    font-size: 0.85rem;
    margin-bottom: 0.4rem;
}

.cart-item-variant {
    font-size: 0.72rem;
    color: var(--primary-color);
    font-weight: 500;
    margin-top: 0.1rem;
}

.cart-item-qty {
    display: flex;
    align-items: center;
    border: 1px solid var(--border-color);
    border-radius: 50px;
    width: fit-content;
    padding: 0.1rem 0.4rem;
}

.qty-btn {
    background: transparent;
    border: none;
    cursor: pointer;
    font-size: 0.75rem;
    padding: 0.2rem 0.4rem;
    color: var(--text-primary);
}

.qty-num {
    font-weight: 700;
    width: 22px;
    text-align: center;
    font-size: 0.82rem;
}

.cart-item-remove {
    background: transparent;
    border: none;
    cursor: pointer;
    color: var(--text-secondary);
    transition: var(--transition-smooth);
    padding: 0.4rem;
}

.cart-item-remove:hover {
    color: var(--error);
}

.cart-footer {
    padding: 1.5rem;
    border-top: 1px solid var(--border-color);
    background-color: var(--bg-light);
    display: none;
}

.cart-summary {
    margin-bottom: 1.5rem;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.6rem;
    font-weight: 500;
    font-size: 0.9rem;
}

.shipping-free {
    color: var(--success);
    font-weight: 700;
}

.total-row {
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--primary-dark);
    margin-top: 0.6rem;
}

.total-price {
    color: var(--primary-color);
}

/* Coupon */
.coupon-section {
    margin: 0.6rem 0;
    padding: 0.6rem;
    background: rgba(26, 58, 107, 0.04);
    border-radius: 8px;
    border: 1px dashed rgba(26, 58, 107, 0.15);
}

.coupon-input-row {
    display: flex;
    gap: 0.4rem;
}

.coupon-input-row input {
    flex: 1;
    padding: 0.45rem 0.7rem;
    border: 1.5px solid var(--border-color);
    border-radius: 6px;
    font-family: 'Outfit', sans-serif;
    font-size: 0.82rem;
    outline: none;
    text-transform: uppercase;
}

.coupon-apply-btn {
    padding: 0.45rem 0.75rem;
    background: var(--primary-color);
    color: var(--white);
    border: none;
    border-radius: 6px;
    font-weight: 700;
    font-size: 0.75rem;
    cursor: pointer;
    font-family: 'Outfit', sans-serif;
    white-space: nowrap;
}

/* Checkout */
.checkout-form {
    border-top: 1px solid var(--border-color);
    padding-top: 1.25rem;
}

.form-title {
    font-size: 0.95rem;
    margin-bottom: 0.85rem;
}

.form-group {
    margin-bottom: 0.75rem;
}

.form-group input {
    width: 100%;
    padding: 0.65rem 1rem;
    border-radius: 8px;
    border: 1px solid var(--border-color);
    font-family: inherit;
    font-size: 0.88rem;
    outline: none;
    transition: var(--transition-smooth);
}

.form-group input:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 8px rgba(26, 58, 107, 0.05);
}


/* ==========================================
   MODALS
   ========================================== */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(13, 30, 61, 0.6);
    backdrop-filter: blur(8px);
    z-index: 1050;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-smooth);
    padding: 1.5rem;
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal-container {
    background-color: var(--white);
    border-radius: var(--border-radius-lg);
    width: 100%;
    max-width: 820px;
    max-height: 92vh;
    overflow-y: auto;
    position: relative;
    box-shadow: var(--shadow-lg);
    transform: scale(0.95);
    transition: var(--transition-bounce);
}

.modal-overlay.active .modal-container {
    transform: scale(1);
}

.modal-close-btn {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: #f1f5f9;
    border: 1px solid #cbd5e1;
    color: #334155;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 100;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.modal-close-btn:hover {
    background: #ef4444;
    color: #ffffff;
    border-color: #ef4444;
    transform: rotate(90deg) scale(1.1);
    box-shadow: 0 4px 14px rgba(239, 68, 68, 0.35);
}

.modal-close-btn:active {
    transform: rotate(90deg) scale(0.95);
}

.modal-content-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 1rem;
    padding: 1.2rem;
}

/* Modal Image Gallery */
.modal-carousel {
    position: relative;
    width: 100%;
    aspect-ratio: 1/1;
    max-height: 250px;
    border-radius: var(--border-radius-sm);
    overflow: hidden;
    background: var(--bg-light);
    margin: 0 auto;
}

.modal-carousel-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.modal-carousel-img.active {
    opacity: 1;
    pointer-events: auto;
}

.modal-carousel .carousel-arrow {
    width: 32px;
    height: 32px;
    font-size: 0.85rem;
}

.modal-thumbs-strip {
    display: flex;
    gap: 6px;
    margin-top: 8px;
    overflow-x: auto;
    padding: 2px 0;
    scrollbar-width: thin;
}

.modal-thumb {
    width: 46px;
    height: 46px;
    object-fit: cover;
    border-radius: 6px;
    border: 2px solid transparent;
    cursor: pointer;
    opacity: 0.5;
    transition: var(--transition-smooth);
    flex-shrink: 0;
}

.modal-thumb.active {
    border-color: var(--primary-color);
    opacity: 1;
}

.modal-thumb:hover {
    opacity: 0.85;
}

.modal-image-wrapper {
    position: relative;
    border-radius: var(--border-radius-md);
    overflow: visible;
}

.modal-info {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.modal-tag-row {
    display: flex;
    gap: 0.4rem;
    margin-bottom: 0.4rem;
}

.modal-tag {
    background-color: rgba(26, 58, 107, 0.08);
    color: var(--primary-dark);
    font-size: 0.7rem;
    font-weight: 700;
    padding: 0.15rem 0.5rem;
    border-radius: 50px;
}

.modal-tag.firmness {
    background-color: var(--bg-light);
    border: 1px solid var(--border-color);
}

.modal-title {
    font-size: 1.35rem;
    line-height: 1.25;
    margin-bottom: 0.35rem;
    font-weight: 800;
}

.modal-price {
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.modal-price .price-retail {
    font-size: 0.85rem;
    display: inline-block;
    margin-left: 8px;
}

.modal-price .price-sale {
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--primary-dark);
}

.modal-price .out-of-stock-text {
    font-size: 1rem;
}

.modal-desc {
    margin-bottom: 0.5rem;
    font-size: 0.82rem;
    line-height: 1.35;
    color: var(--text-secondary);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.modal-specs {
    margin-bottom: 0.6rem;
    background-color: var(--bg-light);
    padding: 0.5rem 0.75rem;
    border-radius: var(--border-radius-sm);
    font-size: 0.78rem;
}

.spec-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.25rem;
}

.spec-item:last-child {
    margin-bottom: 0;
}

.spec-label {
    font-weight: 600;
    color: var(--primary-dark);
}

.spec-value {
    color: var(--text-secondary);
}

/* Modal variant selectors */
.modal-variant-selector {
    margin-bottom: 0.5rem;
}

.modal-variant-selector .variant-selector-row {
    margin-bottom: 0.35rem;
}

.modal-variant-selector .variant-label {
    font-size: 0.78rem;
    min-width: 65px;
}

.modal-variant-selector .variant-btn {
    padding: 0.25rem 0.6rem;
    font-size: 0.75rem;
    border-radius: 5px;
}

/* Quantity selector */
.qty-selector {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    margin-bottom: 0.6rem;
}

.qty-selector .variant-label {
    font-size: 0.82rem;
    min-width: 70px;
}

.qty-selector-controls {
    display: inline-flex;
    align-items: center;
    border: 1.5px solid var(--border-color);
    border-radius: 6px;
    overflow: hidden;
}

.qty-selector-btn {
    width: 34px;
    height: 34px;
    border: none;
    background-color: var(--bg-light);
    color: var(--text-primary);
    font-size: 0.85rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-smooth);
}

.qty-selector-btn:hover {
    background-color: var(--primary-color);
    color: var(--white);
}

.qty-selector-num {
    width: 36px;
    text-align: center;
    font-size: 0.9rem;
    font-weight: 700;
    border-left: 1.5px solid var(--border-color);
    border-right: 1.5px solid var(--border-color);
    padding: 0.35rem 0;
}


/* ==========================================
   ANIMATIONS
   ========================================== */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes badgePulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}


/* ==========================================
   RESPONSIVE - TABLET (1024px)
   ========================================== */
@media (max-width: 1024px) {
    .hero-container {
        min-height: 380px;
    }

    .hero-brand-title {
        font-size: 2rem;
    }

    .hero-main-title {
        font-size: 1.5rem;
    }

    .products-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .trust-bar-container {
        flex-wrap: wrap;
        gap: 0.75rem;
        justify-content: center;
    }

    .trust-divider {
        display: none;
    }

    .trust-item {
        padding: 0.5rem 1rem;
    }

    .footer-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .footer-newsletter {
        grid-column: 1 / -1;
    }

    .about-eveon-container {
        gap: 2rem;
    }

    .modal-content-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 2rem 1.5rem;
    }

    .reviews-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}


/* ==========================================
   RESPONSIVE - MOBILE (768px)
   ========================================== */
@media (max-width: 768px) {
    html {
        font-size: 15px;
    }

    /* Top bar hidden on mobile */
    .top-bar {
        display: none;
    }

    /* Fixed header on mobile so menu is never lost on scroll */
    .header {
        position: fixed !important;
        top: 0 !important;
        left: 0 !important;
        right: 0 !important;
        width: 100% !important;
        z-index: 1000 !important;
        background-color: var(--white) !important;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08) !important;
    }

    body {
        padding-top: 60px !important;
        padding-bottom: 75px !important;
    }

    /* Hide Phone Icon on Mobile Header (Kept on Desktop) */
    .mobile-phone-btn,
    .header-phone-box,
    #headerPhone {
        display: none !important;
    }

    .btn-cta-header {
        display: none;
    }

    .header-search-box {
        display: none;
    }


    .action-label {
        display: none;
    }

    .header-actions {
        gap: 0.5rem;
    }

    .header-actions .icon-btn {
        width: 36px;
        height: 36px;
        font-size: 1rem;
    }



    /* ===== HERO MOBILE ===== */
    .hero-section {
        padding: 1rem 0 0;
    }

    .hero-container {
        grid-template-columns: 1fr 1fr;
        min-height: auto;
        gap: 0.5rem;
        padding: 0 0.75rem;
        align-items: center;
    }

    .hero-text-col {
        text-align: left;
        padding: 0.5rem 0;
        order: 1;
    }

    .hero-brand-title {
        font-size: 1.35rem;
        margin-bottom: 0.1rem;
    }

    .hero-main-title {
        font-size: 0.85rem;
        margin-bottom: 0.35rem;
        line-height: 1.3;
    }

    .hero-description {
        font-size: 0.62rem;
        margin-bottom: 0.6rem;
        line-height: 1.4;
    }

    .hero-description br {
        display: none;
    }

    .hero-features-row {
        justify-content: flex-start;
        gap: 0.6rem;
        margin-bottom: 0.6rem;
    }

    .hero-feature-circle {
        width: 32px;
        height: 32px;
        font-size: 0.75rem;
    }

    .hero-feature-icon-item span {
        font-size: 0.5rem;
    }

    .btn-hero-cta {
        padding: 0.5rem 1rem;
        font-size: 0.7rem;
    }

    .hero-image-col {
        justify-content: center;
        order: 2;
    }

    .hero-product-img {
        max-height: 200px;
        max-width: 100%;
        object-fit: contain;
    }

    .hero-slider-dots {
        bottom: 6px;
    }

    .hero-dot {
        width: 6px;
        height: 6px;
    }

    /* ===== TRUST BAR MOBILE ===== */
    .trust-bar {
        padding: 0.6rem 0;
        overflow: hidden;
    }

    .trust-bar-track {
        width: max-content;
        animation: trustMarquee 22s linear infinite;
        justify-content: flex-start;
        padding: 0;
        margin: 0;
    }

    .trust-bar-content {
        width: auto;
        justify-content: flex-start;
    }

    .trust-bar-content[aria-hidden="true"] {
        display: flex;
    }

    .trust-divider {
        display: block;
        height: 24px;
    }

    .trust-item {
        padding: 0.2rem 0.8rem;
        flex-shrink: 0;
    }

    .trust-icon {
        font-size: 0.95rem;
    }

    .trust-text strong {
        font-size: 0.68rem;
    }

    .trust-text span {
        font-size: 0.58rem;
    }

    /* ===== ABOUT SECTION MOBILE ===== */
    .about-eveon-section {
        padding: 2.5rem 0;
    }

    .about-eveon-container {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .about-eveon-text {
        text-align: center;
    }

    .about-eveon-title {
        font-size: 1.35rem;
    }

    .about-eveon-badges {
        justify-content: center;
    }

    /* ===== PRODUCTS SECTION MOBILE ===== */
    .products-section {
        padding: 2rem 0;
    }

    .section-header-row {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        gap: 0.5rem;
        padding: 0 0.25rem;
        margin-bottom: 1rem;
    }

    .section-title {
        font-size: 1.2rem;
    }

    .view-all-link {
        font-size: 0.78rem;
        white-space: nowrap;
    }

    .section-subtitle {
        display: none;
    }

    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.6rem;
        padding: 0 0.25rem;
    }

    .product-card {
        border-radius: 10px;
    }

    .product-image-wrapper {
        border-radius: 10px 10px 0 0;
    }

    .product-details {
        padding: 0.6rem 0.6rem 0.75rem;
    }

    .product-title {
        font-size: 0.72rem;
        line-height: 1.3;
        margin-bottom: 0.25rem;
        -webkit-line-clamp: 2;
    }

    .variant-selector {
        display: none;
    }

    .price-sale {
        font-size: 0.88rem;
        font-weight: 800;
    }

    .price-retail {
        font-size: 0.65rem;
    }

    .product-actions {
        margin-top: 0.4rem;
    }

    .product-btn-detail {
        font-size: 0.62rem;
        padding: 0.3rem 0.5rem;
        height: 26px;
    }

    .product-btn-cart {
        width: 26px;
        height: 26px;
        font-size: 0.7rem;
    }

    /* ===== FILTERS MOBILE ===== */
    .filters-container {
        padding: 0.5rem;
        gap: 0.3rem;
        margin-bottom: 0.75rem;
    }

    .filter-group {
        flex-wrap: wrap;
        gap: 0.25rem;
    }

    .filter-label {
        font-size: 0.65rem;
        min-width: 55px;
    }

    .filter-btn {
        padding: 0.2rem 0.45rem;
        font-size: 0.62rem;
    }

    /* ===== WHY EVEON MOBILE ===== */
    .why-eveon-section {
        padding: 2.5rem 0;
    }

    .why-eveon-inner {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
    }

    .why-eveon-text-col {
        max-width: 100%;
    }

    .why-eveon-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1rem;
    }

    .why-icon-circle {
        width: 52px;
        height: 52px;
        font-size: 1.15rem;
    }

    .why-eveon-item h4 {
        font-size: 0.68rem;
    }

    /* ===== REVIEWS MOBILE ===== */
    .reviews-section {
        padding: 2.5rem 0;
    }

    .reviews-grid {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }

    .review-card-new {
        padding: 1.25rem;
    }

    .review-text {
        font-size: 0.85rem;
    }

    /* ===== FOOTER MOBILE ===== */
    .footer {
        padding: 2rem 0 0;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .footer-about {
        text-align: center;
    }

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

    .footer-bottom {
        padding-bottom: 4.5rem;
    }

    /* ===== MOBILE BOTTOM BAR ===== */
    .mobile-bottom-bar {
        display: flex;
    }

    /* ===== CART MOBILE ===== */
    .cart-drawer {
        max-width: 100%;
    }

    /* ===== MODAL MOBILE ===== */
    .modal-overlay {
        padding: 0.5rem;
        align-items: center;
        padding-top: 0.5rem;
    }

    .modal-container {
        max-height: 92vh;
        border-radius: 16px;
        position: relative;
        overflow-y: auto;
    }

    .modal-close-btn {
        top: 0.65rem;
        right: 0.65rem;
        width: 34px;
        height: 34px;
        font-size: 1rem;
        background-color: rgba(255, 255, 255, 0.95);
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
        border: 1px solid rgba(0, 0, 0, 0.08);
        z-index: 30;
    }

    .modal-content-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
        padding: 2.25rem 1rem 1.25rem 1rem;
    }

    .modal-image-wrapper {
        width: 100%;
    }

    .modal-carousel {
        position: relative;
        width: 100%;
        aspect-ratio: 16/9;
        max-height: 180px;
        border-radius: 10px;
        overflow: hidden;
        background: #f8fafc;
        margin: 0 auto;
    }

    .modal-carousel-img {
        width: 100%;
        height: 100%;
        object-fit: contain;
        position: absolute;
        top: 0;
        left: 0;
    }

    .modal-thumbs-strip {
        gap: 6px;
        margin-top: 8px;
        padding: 2px 0;
        -webkit-overflow-scrolling: touch;
    }

    .modal-thumb {
        width: 48px;
        height: 48px;
        border-radius: 6px;
        flex-shrink: 0;
    }

    .modal-title {
        font-size: 1.25rem;
        margin-bottom: 0.5rem;
        line-height: 1.35;
    }

    .modal-price {
        font-size: 1.2rem;
        margin-bottom: 0.75rem;
    }

    .modal-desc {
        font-size: 0.88rem;
        line-height: 1.45;
        margin-bottom: 1rem;
    }

    .modal-specs {
        padding: 0.85rem 1rem;
        margin-bottom: 1rem;
        font-size: 0.82rem;
        border-radius: 8px;
    }

    .modal-variant-selector .variant-btn {
        padding: 0.35rem 0.65rem;
        font-size: 0.75rem;
    }

    /* ===== QUIZ MOBILE ===== */
    .quiz-section {
        padding: 2.5rem 0;
    }

    .quiz-box {
        padding: 1.5rem 1rem;
    }

    .quiz-question {
        font-size: 1.2rem;
    }

    .quiz-options-grid {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }

    .quiz-option-card {
        padding: 1.25rem 1rem;
    }
}


/* ==========================================
   RESPONSIVE - SMALL MOBILE (400px)
   ========================================== */
@media (max-width: 400px) {
    html {
        font-size: 14px;
    }

    .container {
        padding: 0 0.75rem;
    }

    .hero-brand-title {
        font-size: 1.6rem;
    }

    .hero-main-title {
        font-size: 1.15rem;
    }

    .hero-features-row {
        gap: 1rem;
    }

    .hero-feature-circle {
        width: 42px;
        height: 42px;
        font-size: 0.95rem;
    }

    .products-grid {
        gap: 0.5rem;
    }

    .product-details {
        padding: 0.5rem 0.5rem 0.75rem;
    }

    .product-title {
        font-size: 0.72rem;
    }

    .price-sale {
        font-size: 0.78rem;
    }

    .product-btn-detail {
        display: none;
    }

    .footer-contact-list li {
        font-size: 0.78rem;
    }

    .quiz-question {
        font-size: 1.15rem;
    }

    .modal-content-grid {
        padding: 2rem 0.75rem 1rem 0.75rem;
    }

    .why-icon-circle {
        width: 50px;
        height: 50px;
        font-size: 1.1rem;
    }
}


/* ==========================================
   LOGIN BUTTON FIX
   ========================================== */
#goToLoginBtn {
    background: linear-gradient(135deg, var(--accent-gold) 0%, var(--accent-gold-hover) 100%) !important;
    color: var(--primary-dark) !important;
    font-weight: 700 !important;
    border-radius: 50px !important;
    box-shadow: 0 4px 15px rgba(223, 177, 91, 0.4) !important;
    border: none !important;
}

#goToLoginBtn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(223, 177, 91, 0.6) !important;
}





/* --- Floating Action Buttons (Right Side & Shifted Up) --- */
.floating-left-contact,
.floating-right-contact {
    position: fixed;
    bottom: 90px;
    right: 20px;
    left: auto;
    z-index: 999;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

@media (max-width: 768px) {
    .floating-left-contact,
    .floating-right-contact {
        bottom: 95px;
        right: 15px;
        left: auto;
        gap: 10px;
    }

    .float-btn {
        width: 48px;
        height: 48px;
    }
}

.float-btn {
    position: relative;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    text-decoration: none;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.3s ease;
}

.float-btn:hover {
    transform: scale(1.15) translateY(-2px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.35);
}

.float-btn-icon {
    position: relative;
    z-index: 2;
    font-size: 1.35rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.float-zalo-text {
    font-size: 0.82rem;
    font-weight: 800;
    font-family: 'Outfit', sans-serif;
    letter-spacing: -0.5px;
}

/* Phone Button */
.float-phone-btn {
    background: linear-gradient(135deg, #1d4ed8 0%, #2563eb 100%);
    border: 2px solid rgba(255, 255, 255, 0.8);
}

/* Zalo Button */
.float-zalo-btn {
    background: linear-gradient(135deg, #0052cc 0%, #0068ff 100%);
    border: 2px solid rgba(255, 255, 255, 0.8);
}

/* Facebook Button */
.float-fb-btn {
    background: linear-gradient(135deg, #1877f2 0%, #0066ff 100%);
    border: 2px solid rgba(255, 255, 255, 0.8);
}

/* Pulse Glow Animation */
.float-btn-pulse {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: inherit;
    opacity: 0.7;
    z-index: 1;
    animation: floatPulse 2s infinite ease-in-out;
}

@keyframes floatPulse {
    0% {
        transform: scale(1);
        opacity: 0.7;
    }
    70% {
        transform: scale(1.45);
        opacity: 0;
    }
    100% {
        transform: scale(1.45);
        opacity: 0;
    }
}

/* ==========================================
   FEATURED FOOTER DESIGN (EXACT MATCH FOR UPLOADED IMAGE)
   ========================================== */
.footer {
    background: #081635;
    color: #ffffff;
    padding: 3rem 1rem 2rem;
    border-top: 1px solid #142b58;
    position: relative;
}

.footer-brand-center {
    text-align: center;
    max-width: 520px;
    margin: 0 auto 2.25rem;
}

.footer-logo {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    text-decoration: none;
    margin-bottom: 0.5rem;
}

.footer-tagline {
    font-size: 0.92rem;
    color: #dfb15b;
    font-style: italic;
    margin-bottom: 1.25rem;
    font-weight: 500;
}

/* Social icons: Only FB, TikTok, Zalo */
.footer-social-3 {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.25rem;
}

.social-circle-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #0d224d;
    border: 1px solid #1c3b75;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 1.2rem;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.25);
}

.social-circle-btn:hover {
    background: #dfb15b;
    color: #0d1e3d;
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 8px 22px rgba(223, 177, 91, 0.45);
    border-color: #dfb15b;
}

.zalo-pill-icon {
    font-weight: 800;
    font-size: 0.8rem;
    font-family: 'Outfit', sans-serif;
    letter-spacing: -0.5px;
}

/* Capsule Outline Action Buttons (Image Match) */
.footer-quick-actions {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    max-width: 520px;
    margin: 0 auto 1.75rem;
}

.footer-capsule-btn {
    display: flex;
    align-items: center;
    padding: 0.8rem 1.35rem;
    border-radius: 50px;
    border: 1px solid #1c386b;
    background: #0a193b;
    color: #ffffff;
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 600;
    transition: all 0.25s ease;
}

.footer-capsule-btn:hover {
    border-color: #2563eb;
    background: #0f2759;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 99, 235, 0.25);
    color: #ffffff;
}

.capsule-icon-wrap {
    font-size: 1.2rem;
    margin-right: 0.85rem;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 26px;
}

.footer-responsible-note {
    text-align: left;
    max-width: 520px;
    margin: 0 auto 1.5rem;
    font-size: 0.95rem;
    color: #e2e8f0;
    font-weight: 500;
}

/* Accordion Lines (Image Match) */
.footer-accordion-list {
    max-width: 520px;
    margin: 0 auto 1.75rem;
    border-top: 1px solid #16305f;
}

.footer-accordion-item {
    border-bottom: 1px solid #16305f;
    cursor: pointer;
}

.accordion-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.15rem 0.25rem 0.65rem;
    font-weight: 700;
    font-size: 1.05rem;
    color: #ffffff;
    transition: color 0.2s ease;
}

.accordion-title.gold-title {
    color: #dfb15b;
}

.footer-accordion-item:hover .accordion-header {
    color: #dfb15b;
}

.accordion-arrow {
    font-size: 0.85rem;
    color: #dfb15b;
    transition: transform 0.3s ease, color 0.3s ease;
}

.footer-accordion-item.active .accordion-arrow {
    transform: rotate(180deg);
    color: #dfb15b;
}

.accordion-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease-out;
    padding: 0 0.25rem;
}

.footer-accordion-item.active .accordion-body {
    max-height: 250px;
    padding-bottom: 1.1rem;
}

.accordion-body ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.accordion-body li {
    margin-bottom: 0.55rem;
}

.accordion-body a {
    color: #cbd5e1;
    text-decoration: none;
    font-size: 0.88rem;
    transition: color 0.2s ease;
}

.accordion-body a:hover {
    color: #dfb15b;
}

/* Order Track & Scroll To Top Row (Image Match) */
.footer-track-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 520px;
    margin: 1.5rem auto 2.5rem;
    gap: 1rem;
}

.btn-order-track-amber {
    display: inline-flex;
    align-items: center;
    gap: 0.65rem;
    padding: 0.45rem 1.35rem 0.45rem 0.45rem;
    border-radius: 50px;
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    border: none;
    color: #ffffff;
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 0.98rem;
    cursor: pointer;
    box-shadow: 0 4px 18px rgba(245, 158, 11, 0.45);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.btn-order-track-amber:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 8px 24px rgba(245, 158, 11, 0.65);
}

.track-icon-circle {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: #ffffff;
    color: #d97706;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
}

.scroll-to-top-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #2563eb;
    border: 2px solid rgba(255, 255, 255, 0.9);
    color: #ffffff;
    font-size: 1.15rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.45);
    transition: all 0.25s ease;
}

.scroll-to-top-btn:hover {
    background: #1d4ed8;
    transform: translateY(-3px);
    box-shadow: 0 8px 22px rgba(37, 99, 235, 0.6);
}

/* ==========================================
   ABOUT EVEON & HIGHLIGHTS SECTION
   ========================================== */
.about-eveon-section {
    padding: 1.5rem 0 1.5rem;
    background: #fff;
}

.about-card-container {
    background: #fff;
    border: 1px solid #eef2f6;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    display: grid;
    grid-template-columns: 2.8fr 5.2fr 3.4fr;
    gap: 2rem;
    align-items: center;
}

.about-image-wrapper {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
}

.about-img {
    width: 100%;
    height: 195px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.about-text-content {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.about-tag {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--accent-gold);
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.about-title {
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--primary-dark);
    line-height: 1.3;
}

.about-desc {
    font-size: 0.88rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 0.5rem;
}

.btn-about-story {
    align-self: flex-start;
    padding: 0.75rem 1.5rem;
    border: 1px solid var(--primary-color);
    color: var(--primary-color);
    background: transparent;
    border-radius: 4px;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-decoration: none;
    transition: var(--transition-smooth);
    text-transform: uppercase;
}

.btn-about-story:hover {
    background: var(--primary-color);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(26, 58, 107, 0.15);
}

/* Stats Styling */
.about-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.5rem;
    align-items: stretch;
    height: 100%;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 0.5rem;
    position: relative;
}

.stat-item:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 15%;
    height: 70%;
    width: 1px;
    background: #e9ecef;
}

.stat-icon {
    width: 48px;
    height: 48px;
    background: #eef4fc;
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    margin-bottom: 0.75rem;
    transition: var(--transition-smooth);
}

.stat-item:hover .stat-icon {
    background: var(--primary-color);
    color: #fff;
    transform: scale(1.08);
}

.stat-number {
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--primary-dark);
    margin-bottom: 0.25rem;
    white-space: nowrap;
}

.stat-label {
    font-size: 0.75rem;
    color: var(--text-secondary);
    line-height: 1.3;
    font-weight: 500;
}

/* Highlights Section */
.highlights-section {
    padding: 2rem 0;
    background: #fdfefe;
    border-top: 1px solid #f0f4f8;
    border-bottom: 1px solid #f0f4f8;
}

.highlights-title {
    display: none;
}

.highlights-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1.25rem;
}

.highlight-card {
    background: #fff;
    border: 1px solid #edf2f7;
    border-radius: 8px;
    padding: 1.2rem 1rem;
    display: flex;
    align-items: center;
    gap: 0.85rem;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.02);
    transition: all 0.3s ease;
}

.highlight-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.04);
    border-color: #cbd5e0;
}

.highlight-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #f0f5fc;
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    flex-shrink: 0;
    transition: var(--transition-smooth);
}

.highlight-card:hover .highlight-icon {
    background: var(--primary-color);
    color: #fff;
}

.highlight-text {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
}

.highlight-name {
    font-size: 0.76rem;
    font-weight: 800;
    color: var(--primary-dark);
    letter-spacing: 0.2px;
}

.highlight-desc {
    font-size: 0.72rem;
    color: var(--text-secondary);
    line-height: 1.3;
}

/* Responsiveness for new sections */
@media (max-width: 1024px) {
    .about-card-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .about-image-wrapper {
        max-width: 500px;
        margin: 0 auto;
    }

    .about-text-content {
        align-items: center;
        text-align: center;
    }

    .btn-about-story {
        align-self: center;
    }

    .highlights-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .highlights-section {
        padding: 0.75rem 0;
        background: transparent;
        border: none;
    }

    .highlights-grid {
        display: grid;
        grid-template-columns: repeat(5, 1fr);
        gap: 0.2rem;
        background: #ffffff;
        border-radius: 16px;
        padding: 0.85rem 0.2rem;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
        border: 1px solid #e8ecf1;
    }

    .highlight-card {
        background: transparent;
        border: none;
        box-shadow: none;
        padding: 0;
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 0.3rem;
    }

    .highlight-icon {
        width: 38px;
        height: 38px;
        border-radius: 50%;
        background: #f0f7ff;
        color: #1a3a6b;
        border: 1px solid #d0e2ff;
        font-size: 0.95rem;
    }

    .highlight-text {
        align-items: center;
        text-align: center;
    }

    .highlight-name {
        font-size: 0.58rem;
        font-weight: 800;
        color: #1a3a6b;
        line-height: 1.2;
        text-align: center;
    }

    .highlight-desc {
        font-size: 0.5rem;
        color: #64748b;
        line-height: 1.15;
        text-align: center;
    }


    .about-stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem 0.5rem;
    }

    .stat-item:nth-child(2n)::after {
        display: none;
    }
}


/* ==========================================
   NEW HEADER DESIGN - ACTIONS
   ========================================== */
.header-actions-new {
    display: flex;
    align-items: center;
    gap: 0.2rem;
    flex-shrink: 0;
}



.header-phone-box {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    text-decoration: none;
    color: inherit;
    transition: var(--transition-smooth);
}

.header-phone-box:hover {
    opacity: 0.95;
}

.phone-circle-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #eef4fc;
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.15rem;
    transition: var(--transition-smooth);
}

.header-phone-box:hover .phone-circle-icon {
    background: var(--primary-color);
    color: #fff;
    transform: scale(1.05);
}

.phone-text-wrapper {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.phone-number {
    font-size: 0.95rem;
    font-weight: 800;
    color: var(--primary-dark);
}

.phone-sub {
    font-size: 0.68rem;
    color: var(--text-secondary);
    font-weight: 500;
}

.header-cta-group-new {
    display: flex;
    align-items: stretch;
    height: 42px;
    border-radius: 8px;
    overflow: visible;
}

.btn-buy-now {
    background: #f5b027;
    color: #1a3567;
    font-weight: 700;
    padding: 0 1.5rem;
    border-radius: 8px 0 0 8px;
    font-size: 0.8rem;
    letter-spacing: 0.5px;
    text-decoration: none;
    transition: var(--transition-smooth);
    display: flex;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
}

.btn-buy-now:hover {
    background: #e09b12;
}

.header-cart-box {
    width: 48px;
    height: 100%;
    background: #1a3567;
    border-radius: 0 8px 8px 0;
    border: none;
    cursor: pointer;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.15rem;
    position: relative;
    transition: var(--transition-smooth);
    padding: 0;
}

.header-cart-box:hover {
    background: #122850;
}

.cart-icon-wrap {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cart-badge-new {
    position: absolute;
    top: -12px;
    right: -12px;
    min-width: 18px;
    height: 18px;
    background: #f5b027;
    color: #1a3567;
    border-radius: 50%;
    font-size: 0.65rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1.5px solid #1a3567;
    padding: 0 4px;
}

/* ==========================================
   USER PROFILE MENU IN HEADER
   ========================================== */
.header-user-box {
    display: flex;
    align-items: center;
    gap: 0.3rem;
    text-decoration: none;
    cursor: pointer;
    padding: 0 0.1rem;
    border-radius: 8px;
    transition: all 0.25s ease;
}


.header-user-box:hover {
    background: rgba(255,255,255,0.08);
}

.user-circle-icon {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(223,177,91,0.15), rgba(223,177,91,0.3));
    border: 1.5px solid rgba(223,177,91,0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #dfb15b;
    font-size: 0.85rem;
    transition: all 0.25s ease;
}

.header-user-box:hover .user-circle-icon {
    background: linear-gradient(135deg, rgba(223,177,91,0.25), rgba(223,177,91,0.45));
    border-color: #dfb15b;
    transform: scale(1.05);
}

.header-user-name {
    font-size: 0.78rem;
    font-weight: 700;
    color: #fff;
    max-width: 100px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

/* User Dropdown */
.user-dropdown {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    min-width: 220px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.15), 0 2px 8px rgba(0,0,0,0.08);
    z-index: 1000;
    overflow: hidden;
    animation: dropdownSlide 0.2s ease;
}

@keyframes dropdownSlide {
    from { opacity: 0; transform: translateY(-8px); }
    to { opacity: 1; transform: translateY(0); }
}

.user-dropdown-header {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.85rem 1rem;
    background: linear-gradient(135deg, #0d1e3d, #1a3a6b);
    color: #fff;
    font-weight: 700;
    font-size: 0.85rem;
}

.user-dropdown-header i {
    font-size: 1.3rem;
    color: #dfb15b;
}

.user-dropdown-item {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.7rem 1rem;
    font-size: 0.82rem;
    font-weight: 600;
    color: #333;
    text-decoration: none;
    transition: all 0.15s ease;
}

.user-dropdown-item:hover {
    background: #f0f7ff;
    color: #1a3a6b;
}

.user-dropdown-item i {
    font-size: 0.85rem;
    color: #999;
    width: 18px;
    text-align: center;
}

.user-dropdown-item:hover i {
    color: #1a3a6b;
}

.user-logout-item {
    color: #dc2f02;
}

.user-logout-item:hover {
    background: #fff5f5;
    color: #dc2f02;
}

.user-logout-item i {
    color: #dc2f02 !important;
}

@media (max-width: 1024px) {
    .header-actions-new {
        display: flex !important;
        align-items: center;
        gap: 0.5rem;
    }
    .header-actions-new .phone-text-wrapper,
    .header-actions-new .btn-buy-now {
        display: none !important;
    }
    .header-actions-new .user-profile-menu {
        display: flex !important;
        align-items: center;
    }
    .header-actions-new .header-user-box {
        padding: 0;
    }
    .header-actions-new .header-user-name {
        display: none !important;
    }
    .header-actions-new .header-phone-box {
        display: flex !important;
    }
    .header-actions-new .phone-circle-icon {
        width: 36px;
        height: 36px;
        font-size: 1rem;
        background: #eef4fc;
        color: #1a3a6b;
    }
    .header-actions-new .header-cta-group-new {
        height: 36px;
    }
    .header-actions-new .header-cart-box {
        width: 42px;
        height: 36px;
        border-radius: 6px;
        font-size: 1rem;
        background: #1a3a6b;
    }
}





/* ==========================================
   PRODUCT CATALOG HEADERS & BUTTONS
   ========================================== */
.section-title-wrapper {
    margin-bottom: 2rem;
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}

.section-tag {
    font-size: 0.76rem;
    font-weight: 700;
    color: var(--accent-gold);
    letter-spacing: 1.2px;
}

.section-title-new {
    font-size: 1.7rem;
    font-weight: 800;
    color: var(--primary-dark);
}

.btn-all-products {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #0f2446;
    color: #fff;
    font-weight: 700;
    font-size: 0.8rem;
    padding: 0.8rem 2.2rem;
    border-radius: 30px;
    text-decoration: none;
    transition: var(--transition-smooth);
    border: none;
    letter-spacing: 0.5px;
}

.btn-all-products:hover {
    background: var(--accent-gold);
    color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(212, 168, 75, 0.25);
}

/* ==========================================
   REVIEWS & NEWS SPLIT COLUMNS SECTION
   ========================================== */
.reviews-news-section {
    padding: 3.5rem 0;
    background: #ffffff;
    border-top: 1px solid #f0f4f8;
}

.reviews-news-columns {
    display: grid;
    grid-template-columns: 1fr 1px 1fr;
    gap: 3rem;
    align-items: stretch;
}

.vertical-divider-new {
    background: #e2e8f0;
    width: 1px;
    height: 100%;
}

.reviews-column, .news-column {
    display: flex;
    flex-direction: column;
    gap: 1.75rem;
}

.column-header-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 2px solid #f1f5f9;
    padding-bottom: 0.75rem;
}

.column-title {
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--primary-dark);
    letter-spacing: 0.2px;
}

.view-all-link-new {
    font-size: 0.76rem;
    font-weight: 700;
    color: var(--primary-color);
    text-decoration: underline;
    transition: var(--transition-smooth);
}

.view-all-link-new:hover {
    color: var(--accent-gold);
}

/* Reviews List */
.reviews-list-new {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.review-card-modern {
    background: #fdfefe;
    border: 1px solid #f0f4f8;
    border-radius: 8px;
    padding: 1.25rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.01);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.review-card-modern:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.03);
    border-color: #cbd5e1;
}

.review-stars {
    color: #f5b027;
    font-size: 0.8rem;
    margin-bottom: 0.6rem;
    display: flex;
    gap: 2px;
}

.review-quote-new {
    font-size: 0.82rem;
    color: var(--text-primary);
    line-height: 1.5;
    font-weight: 500;
    margin-bottom: 0.85rem;
}

.review-user-row {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    margin-top: auto;
}

.review-avatar {
    width: 32px;
    height: 32px;
    background: #eef4fc;
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.78rem;
}

.review-user-info {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.review-name {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--primary-dark);
}

.review-loc {
    font-size: 0.68rem;
    color: var(--text-secondary);
}

/* News List */
.news-list-new {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.news-card-modern {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    text-decoration: none;
    color: inherit;
    background: #fdfefe;
    border: 1px solid #f0f4f8;
    border-radius: 8px;
    padding: 0.85rem;
    transition: all 0.3s ease;
}

.news-card-modern:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.03);
    border-color: var(--primary-color);
}

.news-thumb-wrapper {
    width: 100%;
    height: 100px;
    overflow: hidden;
    border-radius: 6px;
    flex-shrink: 0;
}

.news-thumb {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.news-card-modern:hover .news-thumb {
    transform: scale(1.08);
}

.news-info-modern {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.news-title-text {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--primary-dark);
    line-height: 1.4;
    transition: var(--transition-smooth);
}

.news-card-modern:hover .news-title-text {
    color: var(--primary-color);
}

.news-date {
    font-size: 0.68rem;
    color: var(--text-secondary);
}

/* Responsiveness */
@media (max-width: 1024px) {
    .reviews-news-columns {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    
    .vertical-divider-new {
        display: none;
    }

    .products-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }

    .reviews-list-new, .news-list-new {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .reviews-list-new, .news-list-new {
        grid-template-columns: 1fr;
    }
}

/* ==========================================
   NEW PRODUCT CARD LAYOUT (5 COLUMNS FORM)
   ========================================== */
.product-badge-new {
    position: absolute;
    top: 0.5rem;
    left: 0.5rem;
    background: #004094;
    color: #ffffff;
    padding: 0.25rem 0.6rem;
    font-size: 0.65rem;
    font-weight: 800;
    border-radius: 3px;
    z-index: 2;
    letter-spacing: 0.5px;
}

.product-details-new {
    padding: 0.85rem;
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    flex-grow: 1;
    background: #ffffff;
}

.product-category-new {
    font-size: 0.68rem;
    font-weight: 700;
    color: #8b96a5;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.product-title-new {
    font-size: 0.85rem;
    font-weight: 800;
    color: #1a3567;
    line-height: 1.35;
    margin: 0;
    text-transform: uppercase;
}

.product-subtitle-new {
    font-size: 0.72rem;
    color: #64748b;
}

.product-price-new {
    font-size: 0.82rem;
    color: #dc2626;
    margin-top: auto;
    font-weight: 700;
    padding-top: 0.35rem;
}

.product-price-new strong {
    font-size: 1.05rem;
    font-weight: 800;
}

.product-price-new sup {
    font-size: 0.7rem;
    font-weight: 700;
    margin-left: 1px;
}

.btn-product-detail-center {
    width: 100%;
    background: transparent;
    border: 1px solid #1a3567;
    color: #1a3567;
    padding: 0.5rem 0;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.25s ease;
    margin-top: 0.5rem;
    text-align: center;
}

.btn-product-detail-center:hover {
    background: #1a3567;
    color: #ffffff;
}

/* ==========================================
   MOBILE BOTTOM NAVIGATION BAR (5 ITEMS)
   ========================================== */
.mob-bottom-nav {
    display: none;
    position: fixed !important;
    bottom: 0 !important;
    left: 0 !important;
    right: 0 !important;
    width: 100% !important;
    z-index: 200000 !important;
    background: #ffffff !important;
    border-top: 1px solid #e2e8f0 !important;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.12) !important;
    height: 60px !important;
    padding: 0 0.25rem !important;
    box-sizing: border-box !important;
    pointer-events: auto !important;
    visibility: visible !important;
    opacity: 1 !important;
}

@media (max-width: 768px) {
    .mob-bottom-nav {
        display: flex !important;
        align-items: center !important;
        justify-content: space-around !important;
        pointer-events: auto !important;
        visibility: visible !important;
        opacity: 1 !important;
    }

    body {
        padding-bottom: 75px !important;
    }
}

/* Strict Desktop Viewport Fixes (>768px) */
@media (min-width: 769px) {
    .mob-bottom-nav,
    .mobile-nav-toggle,
    .mob-drawer-links,
    .mob-drawer-header,
    .pd-mobile-bar {
        display: none !important;
        visibility: hidden !important;
        opacity: 0 !important;
        pointer-events: none !important;
    }

    .hero-banner-slider {
        position: relative !important;
        width: 100% !important;
        height: auto !important;
        aspect-ratio: 1920 / 650 !important;
        min-height: 380px !important;
        max-height: 650px !important;
        overflow: hidden !important;
    }

    .hero-slide-img-box {
        position: absolute !important;
        top: 0 !important;
        left: 0 !important;
        width: 100% !important;
        height: 100% !important;
        background-repeat: no-repeat !important;
        background-position: center center !important;
        background-size: cover !important;
        z-index: 1 !important;
    }
}

.mob-nav-item {
    flex: 1 !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    text-decoration: none !important;
    color: #64748b !important;
    font-size: 0.65rem !important;
    font-weight: 600 !important;
    gap: 3px !important;
    padding: 0.35rem 0 !important;
    cursor: pointer !important;
    user-select: none !important;
    pointer-events: auto !important;
    -webkit-tap-highlight-color: transparent !important;
}

.mob-nav-item i,
.mob-nav-item span {
    pointer-events: none !important;
}

.mob-nav-item i {
    font-size: 1.2rem !important;
}

.mob-nav-item.active {
    color: #0b2559 !important;
    font-weight: 800 !important;
}

.mob-nav-item.mob-nav-zalo i {
    color: #0068ff !important;
}

.mob-nav-item.mob-nav-heart i {
    color: #ef4444 !important;
}

/* ==========================================
   MOBILE ACCOUNT POPUP
   ========================================== */
.mob-account-overlay {
    display: none;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0,0,0,0.45);
    z-index: 299999;
    opacity: 0;
    transition: opacity 0.25s ease;
}
.mob-account-overlay.active {
    display: block;
    opacity: 1;
}

.mob-account-popup {
    display: none;
    position: fixed;
    bottom: 70px;
    left: 50%;
    transform: translateX(-50%) translateY(20px);
    width: 92%;
    max-width: 380px;
    background: #ffffff;
    border-radius: 18px;
    box-shadow: 0 -8px 40px rgba(0,0,0,0.18);
    z-index: 300000;
    overflow: hidden;
    opacity: 0;
    transition: opacity 0.25s ease, transform 0.25s ease;
}
.mob-account-popup.active {
    display: block;
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

.mob-account-popup-header {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 18px 20px 14px;
    background: linear-gradient(135deg, #1a3a5c 0%, #2a5a8c 100%);
    color: #fff;
}
.mob-account-avatar {
    font-size: 2.2rem;
    line-height: 1;
    opacity: 0.9;
}
.mob-account-name {
    flex: 1;
    font-size: 1.05rem;
    font-weight: 700;
    letter-spacing: 0.2px;
}
.mob-account-close {
    background: rgba(255,255,255,0.15);
    border: none;
    color: #fff;
    width: 32px; height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    cursor: pointer;
    transition: background 0.2s;
}
.mob-account-close:hover {
    background: rgba(255,255,255,0.3);
}

.mob-account-popup-body {
    padding: 8px 10px 12px;
}
.mob-account-menu-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 14px;
    font-size: 0.95rem;
    font-weight: 600;
    color: #1e293b;
    text-decoration: none;
    border-radius: 12px;
    transition: background 0.18s;
}
.mob-account-menu-item:hover,
.mob-account-menu-item:active {
    background: #f1f5f9;
}
.mob-account-menu-item i {
    font-size: 1.1rem;
    width: 24px;
    text-align: center;
    color: #1a3a5c;
}
.mob-account-menu-item.mob-account-logout {
    color: #ef4444;
}
.mob-account-menu-item.mob-account-logout i {
    color: #ef4444;
}

/* ==========================================
   MOBILE MENU DRAWER & HERO BANNER FIXES
   ========================================== */
.mob-drawer-header,
.mob-drawer-links {
    display: none !important;
}

.desktop-menu-links {
    display: flex;
    align-items: center;
    gap: 1.75rem;
}

@media (max-width: 768px) {
    /* Hide Desktop Links on Mobile */
    .desktop-menu-links {
        display: none !important;
    }

    /* Mobile Hamburger Toggle */
    .mobile-nav-toggle {
        display: flex !important;
        align-items: center;
        justify-content: center;
        width: 38px;
        height: 38px;
        background: transparent;
        border: none;
        color: #0b2559;
        font-size: 1.3rem;
        cursor: pointer;
    }

    /* Mobile Slide-Out Drawer */
    .nav-menu {
        position: fixed !important;
        top: 0 !important;
        left: -100% !important;
        width: 310px !important;
        max-width: 88vw !important;
        height: 100vh !important;
        background: #ffffff !important;
        z-index: 1050 !important;
        box-shadow: 6px 0 30px rgba(0, 0, 0, 0.25) !important;
        transition: left 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
        display: flex !important;
        flex-direction: column !important;
        overflow-y: auto !important;
        padding: 0 !important;
    }

    .nav-menu.active {
        left: 0 !important;
    }

    .mob-drawer-header {
        display: flex !important;
        align-items: center !important;
        justify-content: space-between !important;
        width: 100% !important;
        padding: 1.1rem 1.25rem !important;
        background: #0b2559 !important;
        color: #ffffff !important;
        box-sizing: border-box !important;
        flex-shrink: 0 !important;
    }

    .mob-drawer-title {
        font-weight: 800 !important;
        font-size: 1.1rem !important;
        color: #ffffff !important;
        letter-spacing: 0.5px !important;
        display: flex !important;
        align-items: center !important;
        gap: 0.6rem !important;
    }

    .mob-drawer-close {
        background: transparent !important;
        border: none !important;
        color: #ffffff !important;
        font-size: 1.4rem !important;
        cursor: pointer !important;
        padding: 0 0.25rem !important;
    }

    /* Hide sticky price buy bar & fixed bottom nav ONLY when mobile menu drawer is open */
    body.nav-menu-open .pd-mobile-bar,
    body.nav-menu-open .mob-bottom-nav {
        display: none !important;
        visibility: hidden !important;
        opacity: 0 !important;
        pointer-events: none !important;
    }

    .mob-drawer-links {
        display: flex !important;
        flex-direction: column;
        padding: 0.5rem 0;
    }

    .mob-drawer-item {
        display: flex !important;
        align-items: center;
        justify-content: space-between;
        gap: 0.75rem;
        padding: 0.85rem 1.25rem;
        color: #1e293b;
        font-size: 0.92rem;
        font-weight: 600;
        text-decoration: none;
        border-bottom: 1px solid #f1f5f9;
        cursor: pointer;
        transition: background 0.2s;
    }

    .mob-drawer-item:hover,
    .mob-drawer-item.active {
        background: #f8fafc;
        color: #0b2559;
    }

    .mob-drawer-item i {
        font-size: 1.1rem;
        color: #0b2559;
        width: 24px;
        text-align: center;
    }

    .mob-drawer-item .arrow {
        font-size: 0.8rem;
        color: #94a3b8;
        transition: transform 0.25s ease;
    }

    .mob-drawer-item .arrow.rotate {
        transform: rotate(180deg);
    }

    /* Mobile Drawer Item Accordion (Khuyen mai -> Lien he) */
    .mob-drawer-item-group {
        border-bottom: 1px solid #f1f5f9;
    }

    .mob-drawer-item-row {
        display: flex !important;
        align-items: center !important;
        justify-content: space-between !important;
        padding: 0.15rem 0.5rem 0.15rem 0;
        cursor: pointer !important;
        user-select: none;
        transition: background 0.2s;
    }

    .mob-drawer-item-row:hover {
        background: #f8fafc;
    }

    .mob-drawer-item-title {
        flex: 1;
        display: flex !important;
        align-items: center !important;
        gap: 0.75rem !important;
        padding: 0.8rem 1rem !important;
        color: #1e293b !important;
        font-size: 0.92rem !important;
        font-weight: 600 !important;
    }

    .mob-drawer-item-title i {
        font-size: 1.1rem !important;
        color: #0b2559 !important;
        width: 24px !important;
        text-align: center !important;
    }

    .mob-item-toggle-btn {
        background: rgba(11, 37, 89, 0.06) !important;
        border: none !important;
        width: 30px !important;
        height: 30px !important;
        border-radius: 50% !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        color: #0b2559 !important;
        font-size: 0.75rem !important;
        cursor: pointer !important;
        flex-shrink: 0 !important;
        margin-right: 0.75rem !important;
        transition: background 0.2s, color 0.2s;
    }

    .mob-item-toggle-btn:hover {
        background: #0b2559 !important;
        color: #ffffff !important;
    }

    .mob-item-arrow {
        transition: transform 0.25s ease !important;
    }

    .mob-item-arrow.rotate {
        transform: rotate(180deg) !important;
    }

    .mob-item-info-card {
        display: none;
        background: #f8fafc !important;
        border: 1px solid #e2e8f0 !important;
        border-radius: 8px !important;
        padding: 0.75rem 0.85rem !important;
        margin: 0.1rem 1rem 0.75rem 1rem !important;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04) !important;
    }

    .mob-item-info-card.open {
        display: block !important;
    }

    .mob-item-info-badge {
        display: inline-flex;
        align-items: center;
        gap: 0.35rem;
        background: #e0f2fe;
        color: #0369a1;
        font-size: 0.7rem;
        font-weight: 700;
        padding: 0.2rem 0.55rem;
        border-radius: 4px;
        margin-bottom: 0.4rem;
    }

    .mob-item-info-desc {
        font-size: 0.78rem !important;
        color: #475569 !important;
        line-height: 1.45 !important;
        margin: 0 0 0.6rem 0 !important;
    }

    .mob-item-info-btn {
        background: #0b2559 !important;
        color: #ffffff !important;
        font-size: 0.72rem !important;
        font-weight: 700 !important;
        padding: 0.35rem 0.75rem !important;
        border-radius: 4px !important;
        text-decoration: none !important;
        display: inline-flex !important;
        align-items: center !important;
        gap: 0.3rem !important;
    }

    .mob-drawer-sub {
        display: none;
        background: #f8fafc;
        padding: 0.4rem 1.25rem 0.4rem 2.25rem;
        border-bottom: 1px solid #e2e8f0;
    }

    .mob-drawer-sub.open {
        display: flex !important;
        flex-direction: column !important;
    }

    .mob-drawer-sub a {
        display: block !important;
        padding: 0.65rem 0 !important;
        color: #475569 !important;
        font-size: 0.88rem !important;
        font-weight: 600 !important;
        text-decoration: none !important;
        border-bottom: 1px dashed #e2e8f0;
        transition: color 0.2s, padding-left 0.2s;
    }

    .mob-drawer-sub a:last-child {
        border-bottom: none;
    }

    .mob-drawer-sub a:hover {
        color: #0b2559 !important;
        padding-left: 0.25rem !important;
    }

    /* Sub Item Accordion in Mobile Drawer */
    .mob-sub-item-group {
        border-bottom: 1px solid #edf2f7;
    }

    .mob-sub-item-group:last-child {
        border-bottom: none;
    }

    .mob-sub-item-row {
        display: flex !important;
        align-items: center !important;
        justify-content: space-between !important;
        padding: 0.55rem 0.5rem 0.55rem 0.25rem;
    }

    .mob-sub-link {
        flex: 1;
        color: #334155 !important;
        font-size: 0.86rem !important;
        font-weight: 600 !important;
        text-decoration: none !important;
        line-height: 1.35;
        padding-right: 0.5rem;
    }

    .mob-sub-link:hover {
        color: #0b2559 !important;
    }

    .mob-sub-toggle-btn {
        background: rgba(11, 37, 89, 0.08) !important;
        border: none !important;
        width: 26px !important;
        height: 26px !important;
        border-radius: 50% !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        color: #0b2559 !important;
        font-size: 0.7rem !important;
        cursor: pointer !important;
        flex-shrink: 0 !important;
        transition: background 0.2s, color 0.2s;
    }

    .mob-sub-toggle-btn:hover {
        background: #0b2559 !important;
        color: #ffffff !important;
    }

    .mob-sub-arrow {
        transition: transform 0.25s ease !important;
    }

    .mob-sub-arrow.rotate {
        transform: rotate(180deg) !important;
    }

    .mob-sub-info-card {
        display: none;
        background: #ffffff !important;
        border: 1px solid #e2e8f0 !important;
        border-radius: 8px !important;
        padding: 0.65rem 0.75rem !important;
        margin: 0.2rem 0.25rem 0.6rem 0.25rem !important;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05) !important;
    }

    .mob-sub-info-card.open {
        display: block !important;
    }

    .mob-sub-info-badge {
        display: inline-flex;
        align-items: center;
        gap: 0.3rem;
        background: #fef3c7;
        color: #92400e;
        font-size: 0.68rem;
        font-weight: 700;
        padding: 0.18rem 0.5rem;
        border-radius: 4px;
        margin-bottom: 0.35rem;
    }

    .mob-sub-info-desc {
        font-size: 0.75rem !important;
        color: #475569 !important;
        line-height: 1.4 !important;
        margin: 0 0 0.55rem 0 !important;
    }

    .mob-sub-info-bottom {
        display: flex !important;
        align-items: center !important;
        justify-content: space-between !important;
        padding-top: 0.35rem;
        border-top: 1px dashed #f1f5f9;
    }

    .mob-sub-info-price {
        font-size: 0.72rem !important;
        color: #64748b !important;
    }

    .mob-sub-info-price strong {
        color: #d97706 !important;
        font-size: 0.82rem !important;
        font-weight: 800 !important;
    }

    .mob-sub-info-btn {
        background: #0b2559 !important;
        color: #ffffff !important;
        font-size: 0.7rem !important;
        font-weight: 700 !important;
        padding: 0.3rem 0.65rem !important;
        border-radius: 4px !important;
        text-decoration: none !important;
        display: inline-flex !important;
        align-items: center !important;
        gap: 0.25rem !important;
    }

    /* Mobile Drawer Brand Footer (Logo & Slogan in empty space) */
    .mob-drawer-brand-footer {
        display: flex !important;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-align: center;
        padding: 2rem 1.25rem 5.5rem !important;
        margin-top: 1.5rem;
        background: linear-gradient(180deg, rgba(240, 246, 253, 0.3) 0%, rgba(240, 246, 253, 0.95) 100%);
        border-top: 1px dashed #e2e8f0;
    }

    .mob-drawer-logo-img {
        width: 68px;
        height: auto;
        margin-bottom: 0.5rem;
        filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.08));
    }

    .mob-drawer-brand-title {
        font-size: 1.3rem;
        font-weight: 900;
        color: #0b2559;
        letter-spacing: 2px;
        line-height: 1;
        margin-bottom: 0.3rem;
    }

    .mob-drawer-brand-title span {
        color: #c6a02a;
    }

    .mob-drawer-brand-slogan {
        font-size: 0.76rem;
        color: #64748b;
        font-style: italic;
        margin-bottom: 0.85rem;
    }

    .mob-drawer-hotline-box {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        justify-content: center !important;
        background: #0b2559 !important;
        color: #ffffff !important;
        padding: 0.65rem 1.1rem !important;
        border-radius: 12px !important;
        text-decoration: none !important;
        box-shadow: 0 4px 14px rgba(11, 37, 89, 0.22) !important;
        max-width: 90% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        transition: transform 0.2s, box-shadow 0.2s;
    }

    .mob-drawer-hotline-box:hover {
        transform: translateY(-2px);
        box-shadow: 0 6px 18px rgba(11, 37, 89, 0.3) !important;
    }

    .mob-drawer-hotline-label {
        font-size: 0.72rem !important;
        color: #fbbf24 !important;
        font-weight: 700 !important;
        text-transform: uppercase !important;
        letter-spacing: 0.5px !important;
        display: flex !important;
        align-items: center !important;
        gap: 0.4rem !important;
        margin-bottom: 0.25rem !important;
    }

    .mob-drawer-hotline-label i {
        font-size: 0.82rem !important;
        color: #fbbf24 !important;
    }

    .mob-drawer-hotline-nums {
        font-size: 0.88rem !important;
        color: #ffffff !important;
        font-weight: 800 !important;
        letter-spacing: 0.3px !important;
        white-space: nowrap !important;
    }

    /* Hero Banner Mobile Styling Fixes */
    .hero-banner-slider {
        height: auto !important;
        min-height: 160px !important;
        aspect-ratio: 1920 / 650 !important;
    }

    .hero-slide-overlay {
        width: 100% !important;
        background: linear-gradient(to bottom, rgba(240, 246, 253, 0.95) 0%, rgba(240, 246, 253, 0.88) 65%, rgba(240, 246, 253, 0.96) 100%) !important;
    }

    .hero-text-block {
        max-width: 100% !important;
        text-align: center !important;
        padding: 0.5rem 0.75rem !important;
    }

    .hero-brand-big {
        font-size: 2.2rem !important;
        letter-spacing: 2px !important;
        margin-bottom: 0.1rem !important;
    }

    .hero-subtitle {
        font-size: 0.72rem !important;
        letter-spacing: 1.5px !important;
        margin-bottom: 0.2rem !important;
    }

    .hero-slogan-cursive {
        font-size: 1.25rem !important;
        margin-bottom: 0.35rem !important;
    }

    .hero-desc {
        font-size: 0.78rem !important;
        line-height: 1.45 !important;
        margin-bottom: 0.85rem !important;
        color: #334155 !important;
    }

    .hero-cta-group {
        justify-content: center !important;
        gap: 0.5rem !important;
    }

    .hero-btn-primary,
    .hero-btn-outline {
        padding: 0.65rem 1.25rem !important;
        font-size: 0.74rem !important;
    }

    .hero-arrow {
        display: none !important;
    }

    .hero-dots {
        bottom: 0.75rem !important;
    }
}