        :root {
            --vibrant-red: #ED1C24;
            --bright-orange: #F7941E;
            --golden-yellow: #FFD200;
            --solid-black: #000000;
            --dark-grey: #808080;
            --light-grey: #f5f5f5;
            --transition-speed: 0.8s;
            --nav-bg: rgba(255, 255, 255, 0.95);
            --card-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
            --card-hover-shadow: 0 15px 50px rgba(237, 28, 36, 0.15);
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }

        body {
            overflow-x: hidden;
            background-color: #f9f9f9;
        }

        .reveal {
            opacity: 0;
            transform: translateY(60px) scale(0.95);
            transition: all 0.9s cubic-bezier(0.4, 0, 0.2, 1);
            will-change: transform, opacity;
        }

        .reveal.active {
            opacity: 1;
            transform: translateY(0) scale(1);
        }

        .reveal.reversing {
            opacity: 0;
            transform: translateY(-60px) scale(0.95);
        }

        .subtle-float {
            animation: float 4s infinite ease-in-out;
        }

        @keyframes float {

            0%,
            100% {
                transform: translateY(0);
            }

            50% {
                transform: translateY(-10px);
            }
        }

        nav {
            background: var(--nav-bg);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            padding: 10px 4%;
            display: flex;
            justify-content: space-between;
            align-items: center;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 2px 20px rgba(237, 28, 36, 0.08);
            border-bottom: 1px solid rgba(237, 28, 36, 0.06);
            transition: all 0.3s ease;
            min-height: 60px;
            gap: 10px;
        }

        nav.scrolled {
            background: rgba(255, 255, 255, 0.98);
            box-shadow: 0 4px 30px rgba(237, 28, 36, 0.12);
        }

        .logo-container {
            display: flex;
            align-items: center;
            gap: 10px;
            flex-shrink: 0;
        }

        .logo-container img {
            height: 38px;
            width: auto;
            transition: all 0.3s ease;
        }

        .logo-container .brand-text {
            font-size: 18px;
            font-weight: 800;
            color: var(--solid-black);
            letter-spacing: -0.5px;
            white-space: nowrap;
        }

        .logo-container .brand-text span {
            color: var(--vibrant-red);
        }

        .desktop-nav {
            display: flex;
            list-style: none;
            gap: 4px;
            align-items: center;
            flex-wrap: nowrap;
        }

        .desktop-nav li {
            position: relative;
            flex-shrink: 0;
        }

        .desktop-nav a {
            text-decoration: none;
            color: #333;
            font-weight: 600;
            font-size: 12px;
            padding: 6px 14px;
            border-radius: 50px;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            gap: 5px;
            letter-spacing: 0.2px;
            white-space: nowrap;
        }

        .desktop-nav a i {
            font-size: 12px;
            color: var(--vibrant-red);
            transition: all 0.3s ease;
        }

        .desktop-nav a::after {
            content: '';
            position: absolute;
            bottom: 0px;
            left: 50%;
            transform: translateX(-50%);
            width: 0;
            height: 2.5px;
            background: linear-gradient(90deg, var(--vibrant-red), var(--golden-yellow));
            border-radius: 10px;
            transition: all 0.3s ease;
        }

        .desktop-nav a:hover::after {
            width: 40%;
        }

        .desktop-nav a:hover {
            color: var(--vibrant-red);
            background: rgba(237, 28, 36, 0.08);
        }

        .desktop-nav a:hover i {
            transform: scale(1.15);
        }

        .desktop-nav a.active {
            color: var(--vibrant-red);
            background: rgba(237, 28, 36, 0.12);
        }

        .desktop-nav a.active::after {
            width: 40%;
        }

        .nav-whatsapp {
            background: linear-gradient(135deg, #25d366, #128C7E) !important;
            color: white !important;
            padding: 6px 18px !important;
            border-radius: 50px !important;
            box-shadow: 0 4px 15px rgba(37, 211, 102, 0.35);
            transition: all 0.3s ease !important;
            animation: whatsappBlink 1.5s ease-in-out infinite;
            position: relative;
            font-weight: 700 !important;
            font-size: 12px !important;
        }

        .nav-whatsapp i {
            color: white !important;
            font-size: 14px !important;
        }

        .nav-whatsapp:hover {
            transform: translateY(-2px) scale(1.06) !important;
            box-shadow: 0 6px 30px rgba(37, 211, 102, 0.6) !important;
            animation-play-state: paused;
        }

        .nav-whatsapp::after {
            display: none !important;
        }

        @keyframes whatsappBlink {
            0% {
                box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.4);
                transform: scale(1);
            }
            25% {
                box-shadow: 0 0 20px 8px rgba(37, 211, 102, 0.2);
                transform: scale(1.04);
            }
            50% {
                box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.4);
                transform: scale(1);
            }
            75% {
                box-shadow: 0 0 20px 8px rgba(37, 211, 102, 0.2);
                transform: scale(1.04);
            }
            100% {
                box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.4);
                transform: scale(1);
            }
        }

        .nav-whatsapp::before {
            content: '';
            position: absolute;
            top: -3px;
            left: -3px;
            right: -3px;
            bottom: -3px;
            border-radius: 50px;
            border: 2px solid rgba(37, 211, 102, 0.3);
            animation: pulseRing 1.5s ease-in-out infinite;
        }

        @keyframes pulseRing {
            0% {
                transform: scale(1);
                opacity: 1;
            }
            100% {
                transform: scale(1.25);
                opacity: 0;
            }
        }

        .mobile-nav-wrapper {
            display: none;
            flex-direction: column;
            align-items: center;
            width: 100%;
            gap: 4px;
            padding: 4px 0;
        }

        .mobile-nav-row {
            width: 100%;
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 4px;
        }

        .mobile-nav-links {
            display: flex;
            list-style: none;
            gap: 4px;
            align-items: center;
            flex-wrap: nowrap;
            justify-content: center;
        }

        .mobile-nav-links li {
            position: relative;
            flex-shrink: 0;
        }

        .mobile-nav-links a {
            text-decoration: none;
            color: #333;
            font-weight: 600;
            font-size: 12px;
            padding: 5px 12px;
            border-radius: 50px;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            gap: 5px;
            letter-spacing: 0.2px;
            white-space: nowrap;
        }

        .mobile-nav-links a i {
            font-size: 12px;
            color: var(--vibrant-red);
            transition: all 0.3s ease;
        }

        .mobile-nav-links a::after {
            content: '';
            position: absolute;
            bottom: 0px;
            left: 50%;
            transform: translateX(-50%);
            width: 0;
            height: 2.5px;
            background: linear-gradient(90deg, var(--vibrant-red), var(--golden-yellow));
            border-radius: 10px;
            transition: all 0.3s ease;
        }

        .mobile-nav-links a:hover::after {
            width: 40%;
        }

        .mobile-nav-links a:hover {
            color: var(--vibrant-red);
            background: rgba(237, 28, 36, 0.08);
        }

        .mobile-nav-links a:hover i {
            transform: scale(1.15);
        }

        .mobile-nav-links a.active {
            color: var(--vibrant-red);
            background: rgba(237, 28, 36, 0.12);
        }

        .mobile-nav-links a.active::after {
            width: 40%;
        }

        .mobile-whatsapp {
            background: linear-gradient(135deg, #25d366, #128C7E) !important;
            color: white !important;
            padding: 5px 16px !important;
            border-radius: 50px !important;
            box-shadow: 0 4px 15px rgba(37, 211, 102, 0.35);
            transition: all 0.3s ease !important;
            animation: whatsappBlink 1.5s ease-in-out infinite;
            position: relative;
            font-weight: 700 !important;
            font-size: 12px !important;
        }

        .mobile-whatsapp i {
            color: white !important;
            font-size: 14px !important;
        }

        .mobile-whatsapp:hover {
            transform: translateY(-2px) scale(1.06) !important;
            box-shadow: 0 6px 30px rgba(37, 211, 102, 0.6) !important;
            animation-play-state: paused;
        }

        .mobile-whatsapp::after {
            display: none !important;
        }

        .mobile-whatsapp::before {
            content: '';
            position: absolute;
            top: -3px;
            left: -3px;
            right: -3px;
            bottom: -3px;
            border-radius: 50px;
            border: 2px solid rgba(37, 211, 102, 0.3);
            animation: pulseRing 1.5s ease-in-out infinite;
        }

        .page-banner {
            background: linear-gradient(135deg, var(--vibrant-red), var(--bright-orange));
            padding: 40px 8%;
            text-align: center;
            color: white;
        }

        .page-banner h1 {
            font-size: 2.8rem;
            font-weight: 800;
        }

        .page-banner p {
            font-size: 1.1rem;
            opacity: 0.9;
            margin-top: 8px;
        }

        .hero-banner-section {
            width: 100%;
            line-height: 0;
        }

        .hero-banner-section img {
            width: 100%;
            height: auto;
            display: block;
        }

        .text-slider-section {
            background: var(--solid-black);
            padding: 20px 0;
            overflow: hidden;
            position: relative;
        }

        .text-slider-track {
            display: flex;
            animation: textSlide 25s linear infinite;
            width: max-content;
        }

        .text-slider-track .slide-text {
            padding: 0 50px;
            color: white;
            font-size: 1.2rem;
            font-weight: 600;
            white-space: nowrap;
            letter-spacing: 1px;
        }

        .text-slider-track .slide-text i {
            color: var(--golden-yellow);
            margin: 0 10px;
        }

        @keyframes textSlide {
            0% {
                transform: translateX(0);
            }

            100% {
                transform: translateX(-50%);
            }
        }

        .section-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin: 40px 5% 20px;
        }

        .section-title {
            font-size: 24px;
            font-weight: 700;
            color: var(--vibrant-red);
        }

        .more-products-btn {
            background-color: #e8f1ff;
            color: #0066ff;
            padding: 8px 18px;
            border-radius: 20px;
            text-decoration: none;
            font-size: 14px;
            font-weight: 600;
            display: flex;
            align-items: center;
            gap: 5px;
            transition: 0.3s;
        }

        .more-products-btn:hover {
            background-color: #d0e0ff;
            transform: scale(1.05);
        }

        .slider-wrapper {
            position: relative;
            overflow: hidden;
            padding: 0 5%;
            margin-bottom: 10px;
        }

        .slider-track-cat {
            display: flex;
            gap: 20px;
            transition: transform 0.5s ease-in-out;
        }

        .cat-card {
            min-width: calc(20% - 16px);
            background: #fff;
            border-radius: 12px;
            padding: 20px 15px;
            text-align: center;
            box-shadow: var(--card-shadow);
            box-sizing: border-box;
            border: 1px solid rgba(237, 28, 36, 0.06);
            transition: all 0.4s ease;
            display: flex;
            flex-direction: column;
            align-items: center;
        }

        .cat-card:hover {
            transform: translateY(-8px);
            box-shadow: var(--card-hover-shadow);
            border-color: var(--vibrant-red);
        }

        .cat-image-box {
            border: 1px solid var(--light-grey);
            border-radius: 10px;
            height: 140px;
            width: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 12px;
            background: #fff;
            overflow: hidden;
        }

        .cat-image-box img {
            max-width: 85%;
            max-height: 85%;
            object-fit: contain;
            transition: 0.5s;
        }

        .cat-card:hover .cat-image-box img {
            transform: scale(1.1);
        }

        .cat-card h3 {
            font-size: 14px;
            text-transform: uppercase;
            margin: 5px 0 3px;
            letter-spacing: 0.5px;
            color: var(--solid-black);
        }

        .cat-card p {
            font-size: 13px;
            color: var(--dark-grey);
            margin: 0 0 12px 0;
        }

        .cat-whatsapp-btn {
            background-color: #25d366;
            color: #fff;
            border: none;
            padding: 8px 14px;
            border-radius: 50px;
            font-weight: 600;
            font-size: 12px;
            cursor: pointer;
            text-align: center;
            text-decoration: none;
            transition: 0.3s;
            display: inline-flex;
            align-items: center;
            gap: 6px;
            width: 100%;
            justify-content: center;
            margin-top: auto;
        }

        .cat-whatsapp-btn:hover {
            background-color: #1da851;
            transform: scale(1.02);
        }

        .cat-whatsapp-btn i {
            font-size: 14px;
        }

        .dots-container {
            text-align: center;
            margin-top: 15px;
        }

        .dot {
            height: 10px;
            width: 10px;
            background: #ccc;
            border-radius: 50%;
            display: inline-block;
            margin: 0 5px;
            cursor: pointer;
            border: 1px solid #aaa;
            transition: 0.3s;
        }

        .dot.active {
            background: var(--vibrant-red);
            border-color: var(--vibrant-red);
            transform: scale(1.2);
        }

        .dot:hover {
            background: var(--bright-orange);
        }

        .products-section {
            padding: 0 5% 40px;
        }

        .product-slider-wrapper {
            position: relative;
            overflow: hidden;
            margin: 0 -5px;
        }

        .product-slider-track {
            display: flex;
            transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            gap: 20px;
            will-change: transform;
        }

        .product-slide {
            min-width: calc(25% - 15px);
            box-sizing: border-box;
            padding: 0 5px;
        }

        .product-card {
            background: #fff;
            border-radius: 12px;
            padding: 15px;
            position: relative;
            transition: all 0.4s ease;
            border: 1px solid rgba(237, 28, 36, 0.06);
            display: flex;
            flex-direction: column;
            box-shadow: var(--card-shadow);
            height: 100%;
        }

        .product-card:hover {
            transform: translateY(-8px);
            border-color: var(--vibrant-red);
            box-shadow: var(--card-hover-shadow);
        }

        .discount-badge {
            position: absolute;
            top: 15px;
            left: 15px;
            background: var(--vibrant-red);
            color: #fff;
            padding: 4px 12px;
            border-radius: 12px;
            font-size: 11px;
            font-weight: 700;
            z-index: 2;
        }

        .prod-image-box {
            height: 180px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 15px;
            overflow: hidden;
        }

        .prod-image-box img {
            max-width: 100%;
            max-height: 100%;
            object-fit: contain;
            transition: 0.5s;
        }

        .product-card:hover .prod-image-box img {
            transform: scale(1.08);
        }

        .prod-info h4 {
            font-size: 15px;
            margin: 0 0 5px;
            color: var(--solid-black);
            font-weight: 600;
            line-height: 1.4;
        }

        .prod-category {
            font-size: 13px;
            color: var(--dark-grey);
            margin-bottom: 8px;
        }

        .rating {
            color: var(--golden-yellow);
            font-size: 14px;
            margin-bottom: 8px;
            letter-spacing: 2px;
        }

        .rating span {
            color: var(--dark-grey);
            font-size: 12px;
        }

        .stock-status {
            color: var(--solid-black);
            font-size: 13px;
            font-weight: 500;
            display: flex;
            align-items: center;
            gap: 6px;
            margin-bottom: 15px;
        }

        .stock-status i {
            color: var(--vibrant-red);
        }

        .price-row {
            margin-bottom: 15px;
        }

        .old-price {
            text-decoration: line-through;
            color: #bbb;
            font-size: 13px;
            margin-right: 8px;
        }

        .new-price {
            color: var(--vibrant-red);
            font-size: 18px;
            font-weight: 700;
        }

        .whatsapp-btn {
            background-color: #25d366;
            color: #fff;
            border: none;
            padding: 12px;
            border-radius: 8px;
            font-weight: 600;
            font-size: 14px;
            cursor: pointer;
            text-align: center;
            text-decoration: none;
            transition: 0.3s;
            margin-top: auto;
            position: relative;
            z-index: 5;
        }

        .whatsapp-btn:hover {
            background-color: #1da851;
            transform: scale(1.02);
        }

        .whatsapp-btn i {
            margin-right: 8px;
        }

        .product-dots {
            text-align: center;
            margin-top: 20px;
        }

        .product-dots .dot {
            height: 10px;
            width: 10px;
            background: #ccc;
            border-radius: 50%;
            display: inline-block;
            margin: 0 5px;
            cursor: pointer;
            border: 1px solid #aaa;
            transition: 0.3s;
        }

        .product-dots .dot.active {
            background: var(--vibrant-red);
            border-color: var(--vibrant-red);
            transform: scale(1.2);
        }

        .product-dots .dot:hover {
            background: var(--bright-orange);
        }

        .triple-banners {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 20px;
            padding: 0 5%;
            margin: 30px 0;
        }

        .triple-banners img {
            width: 100%;
            border-radius: 12px;
            box-shadow: var(--card-shadow);
            transition: 0.5s;
        }

        .triple-banners img:hover {
            transform: scale(1.03);
            box-shadow: var(--card-hover-shadow);
        }

        .contact-banner {
            padding: 60px 8%;
            background: linear-gradient(135deg, var(--vibrant-red), var(--bright-orange));
            text-align: center;
            color: white;
        }

        .contact-banner h2 {
            font-size: 2.5rem;
            font-weight: 800;
            margin-bottom: 15px;
        }

        .contact-banner p {
            font-size: 1.1rem;
            opacity: 0.9;
            max-width: 600px;
            margin: 0 auto 25px;
        }

        .contact-banner .btn-cta {
            display: inline-block;
            padding: 14px 40px;
            background: var(--golden-yellow);
            color: var(--solid-black);
            font-weight: 700;
            font-size: 1.1rem;
            border-radius: 50px;
            text-decoration: none;
            transition: all 0.3s ease;
            box-shadow: 0 4px 20px rgba(255, 210, 0, 0.3);
        }

        .contact-banner .btn-cta:hover {
            transform: scale(1.05);
            box-shadow: 0 6px 30px rgba(255, 210, 0, 0.5);
        }

        footer {
            background: linear-gradient(135deg, var(--solid-black), #1a1a1a);
            padding: 40px 8%;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 30px;
            color: white;
        }

        footer h3 {
            font-size: 1.2rem;
            margin-bottom: 10px;
            color: var(--golden-yellow);
        }

        footer p {
            font-size: 0.9rem;
            line-height: 1.6;
            color: rgba(255, 255, 255, 0.85);
        }

        footer a {
            text-decoration: none;
            color: rgba(255, 255, 255, 0.85);
            transition: 0.3s;
        }

        footer a:hover {
            color: var(--golden-yellow);
        }

        footer .social-links {
            display: flex;
            gap: 12px;
            flex-wrap: wrap;
            margin-top: 5px;
        }

        footer .social-links a {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.08);
            color: white;
            font-size: 17px;
            transition: all 0.3s ease;
            text-decoration: none;
            border: 1px solid rgba(255, 255, 255, 0.06);
        }

        footer .social-links a:hover {
            transform: translateY(-5px) scale(1.1);
            background: var(--golden-yellow);
            color: var(--solid-black);
            border-color: var(--golden-yellow);
            box-shadow: 0 8px 25px rgba(255, 210, 0, 0.3);
        }

        .floating-contacts {
            position: fixed;
            right: 15px;
            bottom: 15px;
            z-index: 1001;
            display: flex;
            flex-direction: column;
            gap: 8px;
        }

        .floating-contacts a {
            width: 45px;
            height: 45px;
            border-radius: 50%;
            display: flex;
            justify-content: center;
            align-items: center;
            color: white;
            font-size: 20px;
            text-decoration: none;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
            transition: 0.3s;
        }

        .whatsapp {
            background: #25d366;
        }

        .phone {
            background: linear-gradient(135deg, var(--vibrant-red), var(--bright-orange));
        }

        .email {
            background: #ea4335;
        }

        .floating-contacts a:hover {
            transform: scale(1.15);
        }

        @media (min-width: 1025px) {
            .mobile-nav-wrapper {
                display: none !important;
            }
        }

        @media (max-width: 1024px) and (min-width: 769px) {
            .mobile-nav-wrapper {
                display: none !important;
            }

            nav {
                padding: 8px 3%;
                min-height: 56px;
                gap: 8px;
            }

            .logo-container img {
                height: 32px;
            }

            .logo-container .brand-text {
                font-size: 16px;
            }

            .desktop-nav a {
                font-size: 11px;
                padding: 4px 10px;
            }

            .desktop-nav a i {
                font-size: 11px;
            }

            .nav-whatsapp {
                padding: 4px 12px !important;
                font-size: 11px !important;
            }

            .nav-whatsapp i {
                font-size: 12px !important;
            }

            .cat-card {
                min-width: calc(33.33% - 14px);
            }

            .product-slide {
                min-width: calc(33.33% - 14px);
            }
        }

        @media (max-width: 768px) {
            .desktop-nav {
                display: none !important;
            }

            .mobile-nav-wrapper {
                display: flex !important;
            }

            nav {
                flex-direction: column;
                padding: 6px 2%;
                min-height: auto;
                gap: 3px;
            }

            .logo-container img {
                height: 28px;
            }

            .logo-container .brand-text {
                font-size: 15px;
                letter-spacing: -0.3px;
            }

            .mobile-nav-links {
                gap: 2px;
            }

            .mobile-nav-links a {
                font-size: 11px;
                padding: 4px 10px;
                border-radius: 30px;
                gap: 4px;
            }

            .mobile-nav-links a i {
                font-size: 11px;
            }

            .mobile-whatsapp {
                padding: 4px 12px !important;
                font-size: 11px !important;
                border-radius: 30px !important;
            }

            .mobile-whatsapp i {
                font-size: 12px !important;
            }

            .mobile-whatsapp::before {
                top: -2px;
                left: -2px;
                right: -2px;
                bottom: -2px;
            }

            .page-banner h1 {
                font-size: 2rem;
            }

            .page-banner p {
                font-size: 0.95rem;
            }

            .section-header {
                margin: 30px 4% 15px;
                flex-wrap: wrap;
                gap: 10px;
            }

            .section-title {
                font-size: 20px;
            }

            .cat-card {
                min-width: calc(50% - 10px);
            }

            .product-slide {
                min-width: calc(50% - 10px);
            }

            .triple-banners {
                grid-template-columns: 1fr;
                padding: 0 4%;
            }

            .text-slider-track .slide-text {
                font-size: 0.8rem;
                padding: 0 20px;
            }

            .fullscreen-product {
                height: auto;
                min-height: 100vh;
                padding: 40px 5%;
            }

            .fullscreen-product .fs-content {
                gap: 30px;
            }

            .fullscreen-product .fs-image {
                min-width: auto;
                width: 100%;
            }

            .fullscreen-product .fs-text {
                min-width: auto;
                text-align: center;
            }

            .fullscreen-product .fs-text h2 {
                font-size: 2rem;
            }

            .fullscreen-product .fs-text p {
                font-size: 0.95rem;
                max-width: 100%;
            }

            .fullscreen-product .fs-text .fs-price {
                font-size: 1.5rem;
            }

            .fullscreen-product .fs-text .fs-btn {
                padding: 12px 30px;
                font-size: 0.95rem;
            }

            .fullscreen-product .fs-text .fs-badge {
                font-size: 0.7rem;
                padding: 3px 12px;
                margin-bottom: 10px;
            }
        }

        @media (max-width: 480px) {
            nav {
                padding: 4px 1.5%;
                gap: 2px;
            }

            .logo-container img {
                height: 22px;
            }

            .logo-container .brand-text {
                font-size: 12px;
                letter-spacing: -0.2px;
            }

            .logo-container {
                gap: 5px;
            }

            .mobile-nav-links {
                gap: 1px;
            }

            .mobile-nav-links a {
                font-size: 9px;
                padding: 3px 7px;
                border-radius: 20px;
                gap: 3px;
            }

            .mobile-nav-links a i {
                font-size: 8px;
            }

            .mobile-whatsapp {
                padding: 3px 8px !important;
                font-size: 9px !important;
                border-radius: 20px !important;
            }

            .mobile-whatsapp i {
                font-size: 9px !important;
            }

            .mobile-whatsapp::before {
                display: none;
            }

            .page-banner {
                padding: 20px 4%;
            }

            .page-banner h1 {
                font-size: 1.6rem;
            }

            .page-banner p {
                font-size: 0.8rem;
            }

            .section-title {
                font-size: 17px;
            }

            .more-products-btn {
                font-size: 12px;
                padding: 6px 14px;
            }

            .cat-card {
                min-width: 100%;
                padding: 15px;
            }

            .cat-image-box {
                height: 130px;
            }

            .cat-card h3 {
                font-size: 12px;
            }

            .cat-card p {
                font-size: 11px;
            }

            .product-slide {
                min-width: 100%;
            }

            .product-card {
                padding: 12px;
            }

            .prod-image-box {
                height: 140px;
            }

            .prod-info h4 {
                font-size: 13px;
            }

            .prod-category {
                font-size: 11px;
            }

            .rating {
                font-size: 12px;
            }

            .stock-status {
                font-size: 11px;
            }

            .new-price {
                font-size: 15px;
            }

            .old-price {
                font-size: 11px;
            }

            .whatsapp-btn {
                font-size: 12px;
                padding: 8px;
            }

            .discount-badge {
                font-size: 10px;
                padding: 3px 10px;
                top: 10px;
                left: 10px;
            }

            .triple-banners {
                gap: 12px;
                padding: 0 3%;
            }

            .contact-banner {
                padding: 40px 5%;
            }

            .contact-banner h2 {
                font-size: 1.6rem;
            }

            .contact-banner p {
                font-size: 0.9rem;
            }

            .contact-banner .btn-cta {
                padding: 12px 30px;
                font-size: 0.95rem;
            }

            .text-slider-track .slide-text {
                font-size: 0.65rem;
                padding: 0 12px;
            }

            .floating-contacts a {
                width: 38px;
                height: 38px;
                font-size: 16px;
            }

            .floating-contacts {
                right: 10px;
                bottom: 10px;
                gap: 6px;
            }

            footer {
                padding: 25px 5%;
                grid-template-columns: 1fr;
                gap: 20px;
            }

            footer h3 {
                font-size: 1rem;
            }

            footer p {
                font-size: 0.8rem;
            }

            footer .social-links a {
                width: 34px;
                height: 34px;
                font-size: 14px;
            }
        }

        @media (max-width: 360px) {
            nav {
                padding: 3px 1%;
                gap: 2px;
            }

            .logo-container img {
                height: 18px;
            }

            .logo-container .brand-text {
                font-size: 10px;
                letter-spacing: -0.1px;
            }

            .logo-container {
                gap: 3px;
            }

            .mobile-nav-links a {
                font-size: 7px;
                padding: 2px 5px;
                border-radius: 16px;
                gap: 2px;
            }

            .mobile-nav-links a i {
                font-size: 6px;
            }

            .mobile-whatsapp {
                padding: 2px 6px !important;
                font-size: 7px !important;
                border-radius: 16px !important;
            }

            .mobile-whatsapp i {
                font-size: 7px !important;
            }

            .page-banner h1 {
                font-size: 1.3rem;
            }

            .section-title {
                font-size: 14px;
            }

            .cat-card {
                padding: 10px;
            }

            .cat-image-box {
                height: 100px;
            }

            .prod-image-box {
                height: 120px;
            }

            .prod-info h4 {
                font-size: 11px;
            }

            .whatsapp-btn {
                font-size: 10px;
                padding: 6px;
            }

            .contact-banner h2 {
                font-size: 1.3rem;
            }
        }

        @media (min-width: 401px) and (max-width: 576px) {
            .cat-card {
                min-width: 50%;
            }

            .product-slide {
                min-width: 100%;
            }

            .triple-banners {
                grid-template-columns: 1fr 1fr;
            }

            footer {
                grid-template-columns: 1fr 1fr;
            }
        }

        @media (min-width: 577px) and (max-width: 768px) {
            .cat-card {
                min-width: 33.33%;
            }

            .product-slide {
                min-width: 50%;
            }

            .triple-banners {
                grid-template-columns: 1fr 1fr 1fr;
            }

            footer {
                grid-template-columns: 1fr 1fr;
            }
        }

        @media (max-width: 130px) {
            * {
                font-size: 8px !important;
            }

            nav {
                min-height: 30px !important;
                padding: 3px 2% !important;
            }

            .logo-container img {
                height: 15px !important;
            }

            .logo-container .brand-text {
                font-size: 8px !important;
            }

            .page-banner h1 {
                font-size: 12px !important;
            }

            .section-title {
                font-size: 10px !important;
            }

            .cat-card {
                min-width: 100% !important;
                padding: 8px !important;
            }

            .cat-image-box {
                height: 80px !important;
            }

            .product-slide {
                min-width: 100% !important;
            }

            .prod-image-box {
                height: 100px !important;
            }

            .triple-banners {
                grid-template-columns: 1fr !important;
                gap: 8px !important;
            }

            .fullscreen-product .fs-text h2 {
                font-size: 14px !important;
            }

            .fullscreen-product .fs-text p {
                font-size: 10px !important;
            }

            .text-slider-track .slide-text {
                font-size: 8px !important;
                padding: 0 10px !important;
            }
        }