
        /* ========== RESET & BASE STYLES ========== */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        body {
            font-family: 'Inter', sans-serif;
            color: #1a1a1a;
            background-color: #ffffff;
            line-height: 1.5;
            overflow-x: hidden;
        }
        a {
            text-decoration: none;
            color: inherit;
        }
        .container {
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .section-padding {
            padding: 60px 0;
        }
        
        /* ========== BUTTON STYLES ========== */
        .btn-primary {
            display: inline-block;
            background: #c9002c;
            color: white;
            padding: 12px 32px;
            border-radius: 40px;
            font-weight: 600;
            transition: 0.3s ease;
            border: none;
            cursor: pointer;
            font-size: 1rem;
        }
        .btn-primary:hover {
            background: #a30023;
            transform: translateY(-2px);
        }
        .btn-outline {
            background: transparent;
            border: 1px solid #c9002c;
            color: #c9002c;
            padding: 10px 24px;
            border-radius: 40px;
            font-weight: 500;
            transition: 0.3s;
            display: inline-block;
        }
        .btn-outline:hover {
            background: #c9002c;
            color: white;
        }
        
        /* ========== PROMO MARQUEE (INDEX) ========== */
        .promo-marquee {
            background: #971D37;
            color: #e4dbd3;
            padding: 13px 0;
            overflow: hidden;
            white-space: nowrap;
            font-weight: 500;
            font-size: 14px;
            position: sticky;
            top: 0;
            z-index: 1002;
            box-shadow: 0 2px 5px rgba(0,0,0,0.1);
        }
        .marquee-content {
            display: inline-block;
            animation: scrollMarquee 40s linear infinite;
        }
        .marquee-content span {
            margin-right: 48px;
        }
        @keyframes scrollMarquee {
            0% { transform: translateX(0); }
            100% { transform: translateX(-50%); }
        }
        
        /* ========== MAIN HEADER & NAVIGATION (INDEX) ========== */
        .main-header {
            background: white;
            box-shadow: 0 2px 15px rgba(0,0,0,0.05);
            position: sticky;
            top: 44px;
            z-index: 1001;
        }
        .header-inner {
            display: flex;
            justify-content: space-between;
            align-items: center;
            width: 100%;
            max-width: none;
            margin: 0;
            padding: 14px 14px;
        }
        .logo {
            flex-shrink: 0;
        }
        .logo img {
            height: 34px;
            width: auto;
            display: block;
        }
        .nav-menu {
            display: flex;
            align-items: center;
            flex-wrap: wrap;
            gap: 0;
        }
        .nav-menu > a,
        .nav-menu > .dropdown {
            display: flex;
            align-items: center;
            position: relative;
            padding: 0 12px;
            font-weight: 500;
            font-size: 0.95rem;
        }
        .nav-menu > *:not(:last-child)::after {
            content: "|";
            position: absolute;
            right: -2px;
            top: 50%;
            transform: translateY(-50%);
            color: #d0d0d0;
            font-weight: 400;
        }
        .dropdown {
            position: relative;
            display: inline-block;
        }
        .dropdown-toggle {
            cursor: pointer;
            font-weight: 500;
            font-size: 0.95rem;
        }
        .dropdown-content {
            display: none;
            position: absolute;
            background: white;
            min-width: 160px;
            box-shadow: 0 8px 20px rgba(0,0,0,0.1);
            border-radius: 12px;
            padding: 10px 0;
            top: 35px;
            left: 0;
            z-index: 1001;
        }
        .dropdown-content a {
            display: block;
            padding: 14px 20px;
            font-size: 0.95rem;
            font-weight: 500;
            color: #333;
            background: #fff;
            transition: background 0.2s ease, color 0.2s ease;
        }
        .dropdown-content a:hover {
            background: #971D37;
            color: #fff;
        }
        .dropdown.show .dropdown-content {
            display: block;
        }
        .mobile-menu-btn {
            display: none;
            font-size: 30px;
            cursor: pointer;
            color: #333;
            margin-left: auto;
        }
        .nav-menu .dropdown-content {
            display: none;
            opacity: 0;
            visibility: hidden;
            transform: translateY(6px);
            transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
        }
        .nav-menu .dropdown:hover .dropdown-content {
            display: block;
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }
        .nav-menu .dropdown {
            position: relative;
        }
        .nav-menu .dropdown::after {
            content: "";
            position: absolute;
            left: 0;
            top: 100%;
            width: 100%;
            height: 12px;
        }
        .nav-menu .dropdown-content {
            position: absolute;
            top: calc(100% + 10px);
            left: 0;
            min-width: 160px;
            opacity: 0;
            visibility: hidden;
            transform: translateY(5px);
            transition: 0.2s ease;
        }
        .nav-menu .dropdown:hover .dropdown-content,
        .nav-menu .dropdown-content:hover {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }
        
        /* ========== MOBILE NAVIGATION RESPONSIVE ========== */
        @media (max-width: 1024px) {
            .header-inner {
                padding: 14px 18px;
                position: relative;
            }
            .mobile-menu-btn {
                display: block;
                z-index: 1102;
            }
            .nav-menu {
                display: flex;
                position: absolute;
                top: 100%;
                left: 0;
                width: 100%;
                background: #fff;
                flex-direction: column;
                align-items: flex-start;
                padding: 0 20px;
                box-shadow: 0 12px 24px rgba(0,0,0,0.10);
                border-top: 1px solid #eee;
                gap: 0;
                z-index: 1100;
                opacity: 0;
                visibility: hidden;
                max-height: 0;
                overflow: hidden;
                transform: translateY(-10px);
                transition: opacity 0.28s ease, transform 0.28s ease, max-height 0.28s ease, padding 0.28s ease;
            }
            .nav-menu.mobile-nav-active {
                opacity: 1;
                visibility: visible;
                max-height: 700px;
                padding: 14px 20px;
                transform: translateY(0);
            }
            .nav-menu > a,
            .nav-menu > .dropdown {
                width: 100%;
                padding: 14px 0;
                font-size: 1rem;
                border-bottom: 1px solid #eee;
            }
            .nav-menu > *:not(:last-child)::after {
                display: none;
            }
            .nav-menu .dropdown {
                display: block;
                width: 100%;
            }
            .dropdown-toggle {
                display: flex;
                justify-content: space-between;
                align-items: center;
                width: 100%;
            }
            .nav-menu .dropdown-content {
                position: static;
                display: none;
                opacity: 1;
                visibility: visible;
                transform: none;
                box-shadow: none;
                border-radius: 0;
                padding: 8px 0 0 0;
                min-width: 100%;
                background: transparent;
            }
            .nav-menu .dropdown.show .dropdown-content {
                display: block;
            }
            .dropdown-content a {
                padding: 10px 0 10px 14px;
                font-size: 0.95rem;
                background: transparent;
            }
            .dropdown-content a:hover {
                background: transparent;
                color: #971D37;
            }
        }
        
        /* ========== BLOG HERO ========== */
        .blog-hero {
            background: linear-gradient(135deg, #f5f7fa 0%, #e9edf2 100%);
            padding: 50px 20px;
            text-align: center;
            margin-bottom: 30px;
        }
        .blog-hero h1 {
            font-size: 2.5rem;
            margin-bottom: 10px;
        }
        .blog-hero p {
            max-width: 800px;
            margin: 0 auto;
            color: #555;
        }
        
        /* ========== BLOG CONTENT ========== */
        .blog-content {
            max-width: 800px;
            margin: 0 auto;
            font-size: 1rem;
            line-height: 1.7;
            color: #333;
        }
        .blog-content h2 {
            margin: 30px 0 15px;
            color: #c9002c;
        }
        .blog-content ul, .blog-content p {
            margin-bottom: 20px;
        }
        .blog-content img {
            max-width: 100%;
            height: auto;
            border-radius: 12px;
            margin: 20px 0;
        }
        .blog-content .aligncenter {
            display: block;
            margin-left: auto;
            margin-right: auto;
            text-align: center;
        }
        
        /* ========== PRODUCT CAROUSEL SWIPER STYLES ========== */
        .product-carousel-section {
            background: #f8f9fc;
            padding: 60px 0;
            margin-top: 50px;
            overflow: hidden;
        }
        .product-carousel-title {
            text-align: center;
            font-size: 2rem;
            margin-bottom: 40px;
            font-weight: 700;
            color: #1a1a1a;
        }
        .productSwiper {
            padding: 20px 50px;
        }
        .product-card {
            text-align: center;
            background: white;
            border-radius: 20px;
            padding: 25px 20px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.08);
            transition: all 0.3s ease;
            cursor: pointer;
        }
        .product-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 20px 40px rgba(0,0,0,0.12);
        }
        .product-card img {
            width: 100%;
            height: 160px;
            object-fit: contain;
            margin-bottom: 15px;
        }
        .product-card h4 {
            font-size: 1.1rem;
            font-weight: 600;
            margin-top: 10px;
            color: #1a1a1a;
        }
        .product-card a {
            text-decoration: none;
            color: inherit;
            display: block;
        }
        .swiper-button-next,
        .swiper-button-prev {
            color: #c9002c;
            background: white;
            width: 45px;
            height: 45px;
            border-radius: 50%;
            box-shadow: 0 4px 15px rgba(0,0,0,0.15);
        }
        .swiper-button-next:after,
        .swiper-button-prev:after {
            font-size: 20px;
            font-weight: bold;
        }
        .swiper-button-next:hover,
        .swiper-button-prev:hover {
            background: #c9002c;
            color: white;
        }
        .swiper-pagination-bullet {
            background: #ccc;
            opacity: 1;
        }
        .swiper-pagination-bullet-active {
            background: #c9002c;
        }

        @media (max-width: 768px) {
            .product-carousel-section {
                padding: 40px 0;
            }
            .product-carousel-title {
                font-size: 1.5rem;
                margin-bottom: 25px;
            }
            .productSwiper {
                padding: 10px 30px;
            }
            .product-card {
                padding: 15px 12px;
            }
            .product-card img {
                height: 120px;
            }
            .product-card h4 {
                font-size: 0.9rem;
            }
            .swiper-button-next,
            .swiper-button-prev {
                width: 35px;
                height: 35px;
            }
            .swiper-button-next:after,
            .swiper-button-prev:after {
                font-size: 16px;
            }
        }

        @media (max-width: 480px) {
            .productSwiper {
                padding: 5px 20px;
            }
            .product-card img {
                height: 100px;
            }
            .product-card h4 {
                font-size: 0.8rem;
            }
        }
        
        /* ========== FOOTER ========== */
        .footer {
            background: #971D37;
            color: #fff;
            padding: 100px 0 28px;
            position: relative;
        }
        .footer-grid {
            display: grid;
            grid-template-columns: 1.35fr 0.8fr 1fr 1.3fr;
            gap: 50px;
            max-width: 1380px;
            margin: 0 auto;
            padding: 0 32px;
            align-items: start;
        }
        .footer-col h4 {
            color: #fff;
            font-size: 20px;
            font-weight: 700;
            margin-bottom: 20px;
        }
        .footer-col p, .footer-col a, .footer-contact-item {
            color: #fff;
            font-size: 17px;
            line-height: 1.45;
        }
        .footer-intro-title {
            font-size: 28px;
            font-weight: 500;
            line-height: 1.25;
            margin-bottom: 24px;
            max-width: 360px;
        }
        .footer-intro-desc {
            max-width: 360px;
            margin-bottom: 28px;
        }
        .footer-bullet-list a, .footer-bullet-list .footer-contact-item {
            display: flex;
            align-items: flex-start;
            gap: 12px;
            margin-bottom: 10px;
            color: #fff;
        }
        .footer-bullet-list a::before {
            content: "●";
            font-size: 12px;
            line-height: 1.8;
            flex-shrink: 0;
        }
        .footer-contact-item i {
            width: 20px;
            margin-top: 4px;
            flex-shrink: 0;
        }
        .footer-branch-label {
            font-weight: 700;
            margin: 6px 0 4px 0;
        }
        .footer-whatsapp-btn {
            display: inline-flex;
            align-items: center;
            gap: 12px;
            background: #fff;
            color: #111 !important;
            padding: 12px 22px;
            border-radius: 30px;
            font-size: 15px;
            font-weight: 500;
            margin-top: 24px;
            width: fit-content;
            box-shadow: 0 4px 10px rgba(0,0,0,0.1);
            transition: 0.3s;
        }
        .footer-whatsapp-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 18px rgba(0,0,0,0.15);
        }
        .footer-bottom {
            text-align: center;
            margin-top: 44px;
            color: #fff;
            font-size: 18px;
        }
        @media (max-width: 1100px) {
            .footer-grid {
                grid-template-columns: 1fr 1fr;
                gap: 36px;
            }
        }
        @media (max-width: 768px) {
            .footer {
                padding: 50px 0 24px;
            }
            .footer-grid {
                grid-template-columns: 1fr;
                gap: 28px;
                padding: 0 20px;
            }
            .footer-intro-title {
                font-size: 24px;
                max-width: 100%;
            }
            .footer-intro-desc {
                max-width: 100%;
            }
            .footer-col p, .footer-col a, .footer-contact-item {
                font-size: 16px;
            }
            .footer-whatsapp-btn {
                min-width: 100%;
                width: 100%;
            }
            .footer-bottom {
                font-size: 16px;
                margin-top: 34px;
            }
        }
        
        /* ========== FLOATING WHATSAPP BUTTON ========== */
        .whatsapp-float {
            position: fixed;
            bottom: 20px;
            right: 20px;
            background: #25D366;
            width: 55px;
            height: 55px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 30px;
            box-shadow: 0 4px 12px rgba(0,0,0,0.2);
            z-index: 99;
        }
        
        /* ========== PROMO MODAL STYLES ========== */
        .promo-modal-overlay {
            display: none;
            position: fixed;
            inset: 0;
            z-index: 9999;
            background: rgba(0,0,0,0.7);
            justify-content: center;
            align-items: center;
        }
        .promo-modal-card {
            font-family: 'Ubuntu', sans-serif;
            position: relative;
            width: 90%;
            max-width: 820px;
            background: #9C0E2E;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 20px 40px rgba(0,0,0,0.3);
            padding-bottom: 14px;
        }
        .close-modal-btn {
            position: absolute;
            top: 18px;
            right: 18px;
            z-index: 20;
            width: 32px;
            height: 32px;
            border: none;
            border-radius: 50%;
            background: #fff;
            color: #9C0E2E;
            font-size: 18px;
            font-weight: bold;
            cursor: pointer;
        }
        .modal-header {
            display: flex;
            align-items: center;
            gap: 14px;
            padding: 18px 24px 8px 24px;
        }
        .modal-header h1, .modal-header .modal-title {
            margin: 0;
            color: #fff;
            font-family: 'Ubuntu', sans-serif;
            font-size: 34px;
            font-weight: 700;
            line-height: 1;
            margin-left: 270px;
        }
        .header-logo {
            width: 63px;
            height: auto;
            display: block;
            flex-shrink: 0;
            margin-top: 4px;
        }
        .modal-body-flex {
            display: flex;
            align-items: flex-start;
            flex-wrap: nowrap;
            gap: 18px;
            background: #9C0E2E;
            padding: 8px 22px 0 10px;
        }
        .sidebar {
            width: 168px;
            flex: 0 0 168px;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 12px;
            padding: 92px 0 0 0;
            margin: 0;
            background: transparent;
        }
        .sidebar button {
            width: 100%;
            max-width: 150px;
            min-height: 84px;
            padding: 0 20px;
            display: flex;
            align-items: center;
            justify-content: flex-start;
            border: 1.5px solid #fff;
            border-radius: 28px;
            background: transparent;
            color: #fff;
            font-family: 'Ubuntu', sans-serif;
            font-size: 17px;
            font-weight: 700;
            line-height: 1.02;
            text-align: left;
            cursor: pointer;
            transition: 0.25s ease;
        }
        .sidebar button.active {
            background: #fff;
            color: #9C0E2E;
            box-shadow: none;
        }
        .sidebar button:hover:not(.active) {
            background: rgba(255,255,255,0.2);
        }
        .main-content-area {
            flex: 1;
            padding: 0;
            text-align: center;
            background: #9C0E2E;
            color: #fff;
        }
        .slider-wrapper-main {
            overflow: hidden;
            width: 100%;
            max-width: 440px;
            margin: 0 auto 14px;
        }
        .slider-track {
            display: flex;
            transition: transform 0.35s ease-in-out;
            will-change: transform;
        }
        .slide {
            min-width: 220px;
            flex: 0 0 220px;
            display: flex;
            justify-content: center;
            align-items: center;
            overflow: hidden;
        }
        .slider-img-dua {
            width: 210px;
            height: 210px;
            object-fit: cover;
            border-radius: 12px;
            background: #fff;
            display: block;
            box-shadow: 0 2px 6px rgba(0,0,0,0.1);
        }
        .slider-dots {
            display: flex;
            justify-content: center;
            gap: 10px;
            margin: 12px 0 18px;
        }
        .dot {
            width: 10px;
            height: 10px;
            background: #d9d9d9;
            border-radius: 50%;
            cursor: pointer;
            transition: 0.2s;
        }
        .dot.active {
            width: 22px;
            background: #c9002c;
            border-radius: 10px;
        }
.white-box {
    margin: 0;
    padding: 26px 24px 20px;
    border-radius: 40px;
    background: url("../../Background.webp") center / cover no-repeat;
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}
        .white-box .cooling-badge {
            display: inline-block;
            margin: 10px 0;
            padding: 8px 20px;
            border-radius: 40px;
            background: #c9002c;
            color: #fff;
            font-size: 13px;
            font-weight: 700;
        }
        .white-box .price-big {
            margin: 5px 0;
            color: #c9002c;
            font-size: 24px;
            font-weight: 800;
        }
        .white-box .description-box {
            margin: 15px 0;
            padding: 0;
            background: transparent;
            border-radius: 0;
        }
        .white-box .description-box strong {
            color: #9C0E2E;
        }
        .white-box .description-box p {
            color: #555;
            font-size: 12px;
        }
        .whatsapp-btn {
            position: relative;
            z-index: 1;
            display: inline-block;
            overflow: hidden;
            margin: 10px 0;
            padding: 12px 38px;
            border-radius: 999px;
            background: #9C0E2E;
            color: #fff;
            text-decoration: none;
            font-size: 14px;
            font-weight: 700;
            box-shadow: 0 8px 18px rgba(37,211,102,0.28);
            transition: transform 0.25s ease, box-shadow 0.25s ease;
            animation: breathingBtn 2.5s ease-in-out infinite;
        }
        .whatsapp-btn::before, .whatsapp-btn::after {
            content: "";
            position: absolute;
            z-index: -1;
            border-radius: 50%;
            background: rgba(255,255,255,0.22);
            animation: bubbleFloat 4s ease-in-out infinite;
        }
        .whatsapp-btn::before {
            top: 50%;
            left: 12px;
            width: 38px;
            height: 38px;
            transform: translateY(-50%);
        }
        .whatsapp-btn::after {
            top: 28%;
            right: 18px;
            width: 22px;
            height: 22px;
            animation-delay: 1.2s;
        }
        .whatsapp-btn:hover {
            transform: scale(1.08);
            box-shadow: 0 14px 28px rgba(37,211,102,0.35);
        }
        @keyframes bubbleFloat {
            0% { transform: translateY(-50%) translateX(0); opacity: 0.55; }
            25% { transform: translateY(-58%) translateX(6px); opacity: 0.75; }
            50% { transform: translateY(-45%) translateX(-4px); opacity: 0.45; }
            75% { transform: translateY(-55%) translateX(5px); opacity: 0.7; }
            100% { transform: translateY(-50%) translateX(0); opacity: 0.55; }
        }
        @keyframes breathingBtn {
            0% { transform: scale(1); box-shadow: 0 8px 18px rgba(37,211,102,0.25); }
            50% { transform: scale(1.06); box-shadow: 0 14px 30px rgba(37,211,102,0.45); }
            100% { transform: scale(1); box-shadow: 0 8px 18px rgba(37,211,102,0.25); }
        }
        .new-customer-card {
            max-width: 600px;
            margin: 20px auto;
            padding: 30px 25px;
            text-align: center;
            border-radius: 30px;
            background: #fff;
            box-shadow: 0 10px 25px rgba(0,0,0,0.2);
        }
        .new-img {
            width: 100%;
            max-width: 400px;
            margin-bottom: 20px;
            border-radius: 20px;
        }
        .new-text-small {
            margin-bottom: 5px;
            color: #9C0E2E;
            font-size: 15px;
        }
        .new-text-big {
            margin-bottom: 10px;
            color: #9C0E2E;
            font-size: 26px;
            font-weight: 800;
        }
        .new-text-desc {
            margin-bottom: 20px;
            color: #9C0E2E;
            font-size: 14px;
        }
        .terms-note {
            margin-top: 12px;
            color: rgba(255,255,255,0.6);
            font-size: 10px;
        }
        
        /* ========== OHSEM STICKER ========== */
        #ohsemSticker {
            position: fixed;
            left: 15px;
            bottom: 20px;
            width: 160px;
            height: 160px;
            z-index: 1000;
            cursor: pointer;
            overflow: hidden;
            background: transparent;
            animation: stickerBreath 2s ease-in-out infinite;
        }
        #ohsemSticker img {
            width: 100%;
            height: 100%;
            object-fit: contain;
            display: block;
        }
        #ohsemSticker:hover {
            animation-play-state: paused;
            transform: scale(1.08);
        }
        @keyframes stickerBreath {
            0% { transform: scale(1); }
            50% { transform: scale(1.08); }
            100% { transform: scale(1); }
        }

        @media (max-width: 650px) {
            .modal-body-flex { flex-direction: column; }
            .sidebar { width: 100%; max-width: none; flex-direction: row; flex-wrap: wrap; gap: 10px; padding: 12px 18px 0 18px; justify-content: center; }
            .sidebar button { max-width: none; width: auto; text-align: center; padding: 12px 18px; }
            .main-content-area { padding: 18px; }
            .modal-header h1, .modal-header .modal-title { font-size: 18px; margin-left: 0; }
        }
        
        .section-title {
            text-align: center;
            font-size: 2rem;
            margin-bottom: 40px;
            font-weight: 700;
        }
        @media (max-width: 768px) {
            .blog-hero h1 { font-size: 1.8rem; }
        }
        .nav-menu > a:hover,
.nav-menu > .dropdown:hover > a {
    color: #c9002c;
}.lg-cta {
    position: relative;
    width: 100%;
    margin-top: 80px;
    margin-bottom: -74px;
    z-index: 20;
    padding: 0 20px;
    background: transparent;
}

.lg-cta::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 50%;
    bottom: 0;
    background: #971D37;
    z-index: 0;
}

.cta-container {
    max-width: 980px;
    margin: 0 auto;
    background: #ffffff;
    border-radius: 999px;
    padding: 20px 28px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.10);
    position: relative;
    z-index: 2;
}

.cta-logo {
    flex-shrink: 0;
    width: 78px;
    height: 78px;
    border-radius: 50%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cta-logo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.cta-text {
    flex: 1;
    font-size: 25px;
    line-height: 1.4;
    color: #555;
    font-weight: 400;
    max-width: 560px;
}

.cta-btn {
    flex-shrink: 0;
}

.cta-btn a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #a50034;
    color: #ffffff;
    padding: 13px 30px;
    border-radius: 999px;
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
    white-space: nowrap;
    min-width: 170px;
    transition: all 0.3s ease;
}
    
/* ===== FIX .lg-cta MOBILE - STAY BELOW CAROUSEL, OVERLAP FOOTER ONLY ===== */
@media (max-width: 768px) {
    .product-carousel-section {
        padding-bottom: 120px !important;
    }

    .lg-cta {
        position: relative !important;
        width: 100% !important;
        margin-top: -65px !important;
        margin-bottom: -75px !important;
        padding: 0 18px !important;
        z-index: 60 !important;
        background: transparent !important;
    }

    .lg-cta::before {
        content: "" !important;
        position: absolute !important;
        left: 0 !important;
        right: 0 !important;
        top: 58% !important;
        bottom: 0 !important;
        background: #971D37 !important;
        z-index: 0 !important;
    }

    .cta-container {
        width: 100% !important;
        max-width: 100% !important;
        margin: 0 auto !important;
        padding: 26px 22px 24px !important;
        border-radius: 38px !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        justify-content: center !important;
        gap: 18px !important;
        text-align: center !important;
        background: #fff !important;
        position: relative !important;
        z-index: 2 !important;
        box-shadow: 0 8px 24px rgba(0,0,0,0.12) !important;
    }

    .cta-logo {
        width: 86px !important;
        height: 86px !important;
        margin: 0 auto !important;
    }

    .cta-text {
        width: 100% !important;
        max-width: 100% !important;
        font-size: 16px !important;
        line-height: 1.45 !important;
        color: #555 !important;
        text-align: center !important;
    }

    .cta-btn {
        width: 100% !important;
    }

    .cta-btn a {
        width: 100% !important;
        min-width: 0 !important;
        padding: 15px 20px !important;
        font-size: 16px !important;
        border-radius: 999px !important;
    }

    .footer {
        margin-top: 0 !important;
        padding-top: 165px !important;
    }
}

    /* ===== FINAL NAVBAR FIX - DESKTOP + MOBILE FOLLOW EXAMPLE ===== */
        @media (min-width: 1025px) {
            .promo-marquee {
                position: sticky !important;
                top: 0 !important;
                z-index: 1002 !important;
            }

            .main-header {
                position: sticky !important;
                top: 44px !important;
                z-index: 1001 !important;
                background: #ffffff !important;
                overflow: visible !important;
            }

            .header-inner {
                display: flex !important;
                justify-content: space-between !important;
                align-items: center !important;
                width: 100% !important;
                max-width: none !important;
                margin: 0 !important;
                padding: 14px 14px !important;
                overflow: visible !important;
            }

            .logo {
                flex-shrink: 0 !important;
            }

            .logo img {
                height: 34px !important;
                width: auto !important;
                display: block !important;
            }

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

            .nav-menu {
                display: flex !important;
                align-items: center !important;
                flex-direction: row !important;
                flex-wrap: wrap !important;
                gap: 0 !important;
                position: static !important;
                width: auto !important;
                max-height: none !important;
                overflow: visible !important;
                opacity: 1 !important;
                visibility: visible !important;
                transform: none !important;
                background: transparent !important;
                padding: 0 !important;
                box-shadow: none !important;
                border: 0 !important;
            }

            .nav-menu > a,
            .nav-menu > .dropdown {
                display: flex !important;
                align-items: center !important;
                position: relative !important;
                padding: 0 12px !important;
                margin: 0 !important;
                font-weight: 500 !important;
                font-size: 0.95rem !important;
                line-height: 1.4 !important;
                border-bottom: 0 !important;
                width: auto !important;
                color: #1a1a1a !important;
            }

            .nav-menu > *:not(:last-child)::after {
                content: "|" !important;
                display: block !important;
                position: absolute !important;
                right: -2px !important;
                top: 50% !important;
                transform: translateY(-50%) !important;
                color: #d0d0d0 !important;
                font-weight: 400 !important;
            }

            .nav-menu > a:hover,
            .nav-menu > .dropdown:hover > a {
                color: #c9002c !important;
            }

            .dropdown {
                position: relative !important;
                display: inline-flex !important;
                width: auto !important;
            }

            .dropdown-toggle {
                cursor: pointer !important;
                font-weight: 500 !important;
                font-size: 0.95rem !important;
                display: inline-flex !important;
                align-items: center !important;
                gap: 5px !important;
                width: auto !important;
            }

            .nav-menu .dropdown-content,
            .dropdown-content {
                display: block !important;
                position: absolute !important;
                top: calc(100% + 10px) !important;
                left: 0 !important;
                min-width: 160px !important;
                width: auto !important;
                background: #ffffff !important;
                box-shadow: 0 8px 20px rgba(0,0,0,0.1) !important;
                border-radius: 12px !important;
                padding: 10px 0 !important;
                opacity: 0 !important;
                visibility: hidden !important;
                transform: translateY(5px) !important;
                transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease !important;
                z-index: 2000 !important;
            }

            .nav-menu .dropdown:hover .dropdown-content,
            .nav-menu .dropdown-content:hover,
            .dropdown.show .dropdown-content {
                opacity: 1 !important;
                visibility: visible !important;
                transform: translateY(0) !important;
            }

            .dropdown-content a {
                display: block !important;
                padding: 14px 20px !important;
                font-size: 0.95rem !important;
                font-weight: 500 !important;
                color: #333333 !important;
                background: #ffffff !important;
                white-space: nowrap !important;
                border: 0 !important;
            }

            .dropdown-content a:hover {
                background: #971D37 !important;
                color: #ffffff !important;
            }
        }

        @media (max-width: 1024px) {
            .main-header,
            .header-inner {
                overflow: visible !important;
                overflow-x: visible !important;
                overflow-y: visible !important;
            }

            .header-inner {
                position: relative !important;
                padding: 12px 16px !important;
                max-width: none !important;
                width: 100% !important;
                flex-wrap: nowrap !important;
            }

            .logo img {
                height: 34px !important;
                width: auto !important;
                display: block !important;
            }

            .mobile-menu-btn {
                display: flex !important;
                align-items: center !important;
                justify-content: center !important;
                font-size: 24px !important;
                line-height: 1 !important;
                z-index: 5001 !important;
                width: 36px !important;
                height: 36px !important;
                margin-left: auto !important;
                cursor: pointer !important;
            }

            .nav-menu {
                display: flex !important;
                position: absolute !important;
                top: 100% !important;
                left: 0 !important;
                right: 0 !important;
                width: 100% !important;
                max-width: 100% !important;
                background: #ffffff !important;
                flex-direction: column !important;
                flex-wrap: nowrap !important;
                align-items: stretch !important;
                gap: 0 !important;
                padding: 0 18px !important;
                box-shadow: 0 12px 24px rgba(0,0,0,0.12) !important;
                border-top: 1px solid #eeeeee !important;
                z-index: 5000 !important;
                opacity: 0 !important;
                visibility: hidden !important;
                max-height: 0 !important;
                overflow: hidden !important;
                transform: translateY(-8px) !important;
                transition: opacity 0.25s ease, transform 0.25s ease, max-height 0.25s ease, padding 0.25s ease !important;
            }

            .nav-menu.mobile-nav-active {
                opacity: 1 !important;
                visibility: visible !important;
                max-height: calc(100vh - 110px) !important;
                padding: 10px 18px 26px !important;
                overflow-y: auto !important;
                overflow-x: hidden !important;
                transform: translateY(0) !important;
            }

            .nav-menu > a,
            .nav-menu > .dropdown {
                display: block !important;
                width: 100% !important;
                max-width: 100% !important;
                padding: 10px 0 !important;
                margin: 0 !important;
                font-size: 13px !important;
                line-height: 1.25 !important;
                font-weight: 500 !important;
                border-bottom: 1px solid #eeeeee !important;
                white-space: normal !important;
                box-sizing: border-box !important;
                color: #1a1a1a !important;
            }

            .nav-menu > *::after,
            .nav-menu .dropdown::after {
                display: none !important;
                content: none !important;
            }

            .dropdown {
                padding-bottom: 0 !important;
                position: relative !important;
                width: 100% !important;
            }

            .dropdown-toggle {
                display: flex !important;
                align-items: center !important;
                justify-content: space-between !important;
                width: 100% !important;
                font-size: 13px !important;
                line-height: 1.25 !important;
                font-weight: 500 !important;
                color: #1a1a1a !important;
                cursor: pointer !important;
            }

            .dropdown-toggle i {
                font-size: 11px !important;
                transition: transform 0.2s ease !important;
            }

            .dropdown.show .dropdown-toggle i {
                transform: rotate(180deg) !important;
            }

            .nav-menu .dropdown-content,
            .dropdown .dropdown-content,
            .nav-menu .dropdown:hover .dropdown-content,
            .dropdown:hover .dropdown-content {
                position: static !important;
                display: none !important;
                opacity: 1 !important;
                visibility: visible !important;
                transform: none !important;
                box-shadow: none !important;
                border-radius: 0 !important;
                padding: 4px 0 0 12px !important;
                margin: 0 !important;
                min-width: 100% !important;
                width: 100% !important;
                max-height: none !important;
                overflow: visible !important;
                background: transparent !important;
                transition: none !important;
            }

            .nav-menu .dropdown.show .dropdown-content,
            .dropdown.show .dropdown-content {
                display: block !important;
            }

            .dropdown-content a {
                display: block !important;
                width: 100% !important;
                padding: 9px 0 !important;
                font-size: 12.5px !important;
                line-height: 1.25 !important;
                font-weight: 500 !important;
                background: transparent !important;
                color: #333333 !important;
                border: none !important;
            }
        }

        @media (max-width: 768px) {
            html, body {
                width: 100% !important;
                max-width: 100% !important;
                overflow-x: hidden !important;
            }

            .promo-marquee {
                position: fixed !important;
                top: 0 !important;
                left: 0 !important;
                width: 100% !important;
                z-index: 3000 !important;
            }

            .main-header {
                position: fixed !important;
                top: 43px !important;
                left: 0 !important;
                width: 100% !important;
                z-index: 2999 !important;
                background: #ffffff !important;
                overflow: visible !important;
            }

            body {
                padding-top: 115px !important;
            }

            .product-carousel-section {
                margin-bottom: 0 !important;
                padding-bottom: 95px !important;
            }

            .lg-cta {
                position: relative !important;
                width: 100% !important;
                margin-top: 0 !important;
                margin-bottom: -82px !important;
                padding: 0 18px !important;
                z-index: 60 !important;
                background: transparent !important;
            }

            .lg-cta::before {
                content: "" !important;
                position: absolute !important;
                left: 0 !important;
                right: 0 !important;
                top: 58% !important;
                bottom: 0 !important;
                background: #971D37 !important;
                z-index: 0 !important;
            }

            .cta-container {
                width: 100% !important;
                max-width: 100% !important;
                margin: 0 auto !important;
                padding: 28px 22px 26px !important;
                border-radius: 36px !important;
                display: flex !important;
                flex-direction: column !important;
                align-items: center !important;
                justify-content: center !important;
                gap: 18px !important;
                text-align: center !important;
                background: #ffffff !important;
                position: relative !important;
                z-index: 2 !important;
                box-shadow: 0 10px 28px rgba(0,0,0,0.10) !important;
            }

            .cta-logo {
                width: 86px !important;
                height: 86px !important;
                margin: 0 auto !important;
            }

            .cta-text {
                width: 100% !important;
                max-width: 100% !important;
                font-size: 16px !important;
                line-height: 1.45 !important;
                color: #555555 !important;
                text-align: center !important;
            }

            .cta-btn {
                width: 100% !important;
            }

            .cta-btn a {
                width: 100% !important;
                min-width: 0 !important;
                display: flex !important;
                align-items: center !important;
                justify-content: center !important;
                padding: 15px 20px !important;
                font-size: 16px !important;
                border-radius: 999px !important;
            }

            .footer {
                margin-top: 0 !important;
                padding-top: 155px !important;
            }

            #ohsemSticker {
                width: 125px !important;
                height: 125px !important;
                left: 10px !important;
                bottom: 15px !important;
            }

            #openPromoBtn {
                right: -52px !important;
                padding: 12px 22px !important;
                font-size: 12px !important;
            }
        }

        @media (max-width: 480px) {
            .nav-menu > a,
            .nav-menu > .dropdown,
            .dropdown-toggle {
                font-size: 12.5px !important;
            }

            .dropdown-content a {
                font-size: 12px !important;
            }

            .mobile-menu-btn {
                font-size: 22px !important;
            }
        }
    