    /* style.css - External CSS for StyleHub Clothing Store */

    * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
        font-family: poppins;
    }

    :root {
        --primary-color: #1b2733;
        --primary-color-invert: #ffffff;
        --secondary-color: #010001;
        --accent-color: #3498db;
        --light-color: #f9f9f9;
        --dark-color: #2c3e50;
        --text-color: #333;
        --text-light: #777;
        --discount-color: #e74c3c;
        --discount-bg: #ffebee;
    }
    a{
        text-decoration: none;
    }

    html {
        scroll-behavior: smooth;
    }

    body {
        background-color: #fffffe;
        color: var(--text-color);
        line-height: 1.6;
    }

    html,body
{
    width: 100%;
    height: 100%;
    margin: 0px;
    padding: 0px;
    overflow-x: hidden; 
}

    .container {
        width: 100%;
        max-width: 1650px;
        margin: 0 auto;
        padding: 0 20px;
    }

    .squish-container {
        width: 80%;
        max-width: 1650px;
        margin: 0 auto;
        padding: 0 20px;
    }

    img {
        max-width: 100%;
    }

    /* Top Bar */

    /* Header Styles */
    header {
        background-color: white;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        position: sticky;
        top: 0;
        z-index: 1000;
    }

    .header-container {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 15px 0;
    }

    /* Desktop Header Layout */
    .header-nav {
        display: flex;
        flex: 1;
        justify-content: center;
        align-items: center;
        gap: 30px;
    }

    .logo-container {
        flex: 0 1 220px;
        display: flex;
        justify-content: center;
        align-items: center;
        min-width: 250px;
        max-width: 260px;
        height: 48px;
    }

    .logo {
        font-size: 2.2rem;
        font-weight: 800;
        color: var(--primary-color);
        text-decoration: none;
        display: flex;
        align-items: center;
        justify-content: center;
        width: 100%;
        height: 100%;
    }

    /* Logo image sizing */
    .logo-img {
        max-height: 48px;
        max-width: 200px;
        width: 250px;
        height: auto;
        display: block;
        margin: 0 auto;
        object-fit: contain;
    }

    .logo span {
        color: var(--secondary-color);
    }

    .logo i {
        margin-right: 10px;
        font-size: 2.5rem;
    }

    .nav-link {
        color: var(--text-color);
        text-decoration: none;
        font-weight: 0;
        padding: 8px 15px;
        border-radius: 4px;
        transition: all 0.3s ease;
        display: inline-block;
        font-size: 1.6vw;
        text-transform: uppercase;
    }

    .nav-link:hover {
        color: var(--secondary-color);
        background-color: rgba(231, 76, 60, 0.1);
    }

    .header-icons {
        display: flex;
        flex: 0 1 220px;
        justify-content: center;
        align-items: center;
        min-width: 180px;
        max-width: 260px;
    }

    .header-icon {
        color: var(--primary-color);
        font-size: 2rem;
        margin: 0 10px;
        cursor: pointer;
        transition: color 0.3s ease;
    }

    .header-icon:hover {
        color: var(--secondary-color);
    }

    /* Mobile Header Layout */
    .mobile-header {
        display: none;
        width: 100%;
        justify-content: space-between;
        align-items: center;
    }

    .mobile-logo {
        font-size: 1.8rem;
        font-weight: 800;
        color: var(--primary-color);
        text-decoration: none;
        display: flex;
        align-items: center;
    }

    .mobile-logo span {
        color: var(--secondary-color);
    }

    .hamburger-menu {
        background: none;
        border: none;
        font-size: 1.8rem;
        color: var(--primary-color);
        cursor: pointer;
        padding: 5px;
        transition: color 0.3s ease;
    }

    .hamburger-menu:hover {
        color: var(--secondary-color);
    }

    /* Mobile Navigation Menu */
    .mobile-nav {
        position: fixed;
        top: 0;
        left: -100%;
        width: 280px;
        height: 100vh;
        background-color: white;
        box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
        transition: left 0.4s ease;
        z-index: 1100;
        padding: 80px 30px 30px;
        overflow-y: auto;
    }

    .mobile-nav.active {
        left: 0;
    }

    .mobile-nav-close {
        position: absolute;
        top: 20px;
        right: 20px;
        background: none;
        border: none;
        font-size: 1.8rem;
        color: var(--primary-color);
        cursor: pointer;
        padding: 5px;
    }

    .mobile-nav-links {
        list-style: none;
        margin-bottom: 30px;
    }

    .mobile-nav-links li {
        margin-bottom: 15px;
    }

    .mobile-nav-links a {
        display: block;
        color: var(--text-color);
        text-decoration: none;
        font-size: 1.2rem;
        font-weight: 600;
        padding: 12px 15px;
        border-radius: 6px;
        transition: all 0.3s ease;
    }

    .mobile-nav-links a:hover {
        color: var(--secondary-color);
        background-color: rgba(231, 76, 60, 0.1);
    }

    .mobile-nav-icons {
        display: flex;
        justify-content: center;
        gap: 20px;
        margin-top: 30px;
    }

    .mobile-nav-icon {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 50px;
        height: 50px;
        background-color: rgba(52, 152, 219, 0.1);
        border-radius: 50%;
        color: var(--accent-color);
        font-size: 1.5rem;
        transition: all 0.3s ease;
    }

    .mobile-nav-icon:hover {
        background-color: var(--accent-color);
        color: white;
    }

    .overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.5);
        z-index: 1050;
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.3s ease, visibility 0.3s ease;
    }

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

    /* Hero Section */
    .hero {
        color: white;
        text-align: center;
        padding: 370px 20px;
        margin-left: 8%;
        margin-right: 8%;
        margin-bottom: 1.11vh;
        background-size: cover;
        background-repeat: no-repeat;
        background-position: center;
        position: relative;
        overflow: hidden;
        transition: background-image 1s ease-in-out;
    }

    /* Alternative with multiple background layers for smoother crossfade */
    .hero::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
        z-index: -1;
        opacity: 0;
        transition: opacity 1s ease-in-out;
    }

    .hero-logo {
        width: auto;
        height: auto;
        margin-bottom: 20px;
    }

    .hero h1 {
        font-size: 3.5rem;
        margin-bottom: 20px;
        text-transform: uppercase;
        letter-spacing: 1px;
    }

    .hero-subtitle {
        font-size: 1.5rem;
        margin-bottom: 30px;
        opacity: 0.9;
        max-width: 700px;
        margin-left: auto;
        margin-right: auto;
    }

    .hero-tagline {
        font-size: 1.2rem;
        margin-bottom: 40px;
        opacity: 0.8;
        font-style: italic;
    }

    .page-title {
        position: relative;
        font-size: large;

    }

    .page-title-prod {
        display: table;
        width: 100%;

    }

    .btn {

        background-color: var(--secondary-color);
        color: var(--primary-color-invert);
        padding: 10px 40px;
        text-decoration: none;
        border-radius: 8px;
        font-size: 20vw;
        text-transform: uppercase;
        letter-spacing: 1px;
        transition: all 0.3s ease;
        border: none;
        cursor: pointer;
        font-size: 2em;
        display: table-cell;
        vertical-align: middle;
        line-height: 1;
        height: 100%;




    }

    .btn:hover {
        background-color: var(--primary-color-invert);
        transform: translateY(-3px);
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
        color: var(--secondary-color);
    }

    /* About Us Section */
    .l1 {
        position: relative;
    }

    .section-title {
        text-align: left;
        position: relative;
        scroll-margin-top: 400px;

        justify-content: space-between;
        flex-direction: row;
        display: table-cell;
        vertical-align: middle;
        text-align: right;

    }

    .section-title h2 {
        font-size: 3.3vw;
        color: var(--primary-color);
        text-transform: uppercase;
        letter-spacing: 1px;
        display: inline-flex;
        align-items: flex-start;
        position: relative;
        width: 100%;
        font-weight: normal;
        
    }

    .section-title h3 {
        font-size: 2rem;
        color: var(--primary-color);
        text-transform: uppercase;
        letter-spacing: 1px;
        font-weight: normal;
        margin-bottom: -40px;
    }

    /* Add line only after .section-title, not after h3 */
    .line h2:after {
        content: '';
        flex: 1;
        height: 2px;
        background-color: var(--secondary-color);
        margin-left: 15px;
        min-width: 30px;
        font-weight: normal;
        margin-top: 2.6vw;
    }

    /* Remove the line after h3 */
    .section-title h3:after {
        display: none;
        content: none;
    }

    /* Inverted Section Title */
    .section-title.invert h2,
    .section-title.invert h3 {
        color: var(--primary-color-invert);
    }

    .section-title.invert h2:after {
        background-color: var(--primary-color-invert);
    }

    .bg-text {
        position: absolute;
        bottom: -11vw;
        left: 50%;
        transform: translateX(-50%);
        font-size: 22.1vw;
        color: #000000;
        opacity: 0.1;
        z-index: -1;
        font-weight: 900;
        pointer-events: none;
        text-transform: uppercase;
        white-space: nowrap;
        text-align: center;
        text-size-adjust: auto;
    }

    .bg-logo {
        position: absolute;
        right: -210px;
        transform: translateX(-50%);
        top: -380px;
        width: 480px;
        color: var(--primary-color);
        opacity: 0.1;
        z-index: -1;
        pointer-events: none;
        overflow: hidden;
    }

    .about-us {
        padding: 60px 0;
        position: relative;
        overflow: visible;
        padding-bottom: 24vw;
    }

    .about-content {
        max-width: 1000px;
        /*1.8vw*/
        font-size: clamp(16px, 1.8vw, 1.8vw);
        line-height: 1.8;
        color: var(--text-light);
    }

    .about-content p {
        margin-bottom: 25px;
        text-align: justify;
    }

    /* ==========================================================================
    HIGHLIGHT SWIPER SECTION - IMPROVED RESPONSIVENESS
    ========================================================================== */
    .highlight {
        padding: 80px 0 40px;
        background-color: rgba(0, 0, 1, 0.9);
        overflow: hidden;
    }

    .swiper {
        width: 100%;
        height: auto;
        padding: 60px 20px 40px;
        position: relative;
    }

    .swiper-wrapper {
        align-items: center;
    }

    .swiper-slide {
        display: flex;
        justify-content: center;
        align-items: center;
        transition: all 0.4s ease;
        opacity: 0.4;
        transform: scale(0.85);
        filter: blur(2px);
        z-index: 1;
        height: auto;
        padding: 10px 0;
    }

    .swiper-slide-active {
        opacity: 1 !important;
        transform: scale(1.2) !important;
        /* Changed from scale(1) to scale(1.05) */
        filter: none !important;
        z-index: 3;
        box-shadow: 0 15px 40px rgba(0, 0, 0, 0.25);
    }

    .swiper-slide-next,
    .swiper-slide-prev {
        opacity: 0.7 !important;
        transform: scale(0.95) !important;
        filter: blur(1px);
        z-index: 2;
    }

    .swiper-slide:nth-child(odd) {
        transform-origin: center center;
    }

    .trending-card {
        background-color: white;
        border-radius: 16px;
        overflow: hidden;
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
        transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        display: flex;
        flex-direction: column;
        height: 100%;
        width: 90%;
        max-width: 900px;
        margin: 0 auto;
        position: relative;
        padding: 0;
    }

    .trending-card:hover {
        transform: translateY(-15px);
        box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
    }

    .card-img-container {
        width: 100%;
        height: 300px;
        overflow: hidden;
        position: relative;
    }

    .card-img {
        width: 100%;
        height: 100%;
        object-fit: contain;
        transition: transform 0.7s ease;
        will-change: transform;
    }

    .trending-card:hover .card-img {
        transform: scale(1.08);
    }

    .card-content {
        padding: 25px;
        flex-grow: 1;
        display: flex;
        flex-direction: column;
        background: linear-gradient(to bottom, white, #f9f9f9);
    }

    .card-title {
        font-size: 1.4rem;
        font-weight: 700;
        color: var(--primary-color);
        margin-bottom: 12px;
        line-height: 1.3;
    }

    .card-description {
        color: var(--text-light);
        font-size: 1rem;
        line-height: 1.6;
        margin-bottom: 20px;
        flex-grow: 1;
        display: -webkit-box;
        -webkit-line-clamp: 3;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }

    .card-price {
        font-size: 1.4rem;
        font-weight: 800;
        color: var(--secondary-color);
        margin-bottom: 20px;
        display: flex;
        align-items: center;
        gap: 10px;
    }

    .card-button {
        background-color: var(--accent-color);
        color: white;
        border: none;
        padding: 14px 24px;
        border-radius: 8px;
        font-weight: 600;
        cursor: pointer;
        transition: all 0.3s ease;
        text-align: center;
        text-decoration: none;
        display: inline-block;
        font-size: 1rem;
        letter-spacing: 0.5px;
        text-transform: uppercase;
        align-self: flex-start;
        margin-top: auto;
    }

    .card-button:hover {
        background-color: var(--secondary-color);
        transform: translateY(-2px);
        box-shadow: 0 5px 15px rgba(231, 76, 60, 0.3);
    }

    .card-tag {
        position: absolute;
        top: 20px;
        right: 20px;
        background-color: var(--secondary-color);
        color: white;
        padding: 8px 16px;
        border-radius: 6px;
        font-size: 0.85rem;
        font-weight: 700;
        z-index: 2;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
        text-transform: uppercase;
        letter-spacing: 1px;
    }

    .swiper-button-next,
    .swiper-button-prev {
        color: white;
        background-color: rgba(0, 0, 0, 0.7);
        width: 50px;
        height: 50px;
        border-radius: 50%;
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
        transition: all 0.3s ease;
        top: 50%;
        transform: translateY(-50%);
        margin-top: 0;
    }

    .swiper-button-next:after,
    .swiper-button-prev:after {
        font-size: 1.4rem;
        font-weight: bold;
    }

    .swiper-button-next:hover,
    .swiper-button-prev:hover {
        background-color: var(--secondary-color);
        color: white;
        transform: translateY(-50%) scale(1.1);
    }

    .swiper-button-prev {
        left: 20px;
    }

    .swiper-button-next {
        right: 20px;
    }

    .swiper-pagination {
        position: relative !important;
        bottom: 0 !important;
        margin-top: 30px;
    }

    .swiper-pagination-bullet {
        width: 14px;
        height: 14px;
        background-color: rgba(255, 255, 255, 0.5);
        opacity: 1;
        transition: all 0.3s ease;
        margin: 0 8px !important;
    }

    .swiper-pagination-bullet-active {
        background-color: white;
        transform: scale(1.2);
        box-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
    }

    /* ==========================================================================
    RESPONSIVE ADJUSTMENTS FOR HIGHLIGHT SECTION
    ========================================================================== */
    @media (max-width: 1400px) {
        .swiper {
            padding: 50px 40px 40px;
        }

        .trending-card {
            width: 85%;
        }

        .card-img-container {
            height: 280px;
        }
    }

    @media (max-width: 1200px) {
        .highlight {
            padding: 60px 0 30px;
        }

        .swiper {
            padding: 40px 30px 30px;
        }

        .swiper-slide {
            opacity: 0.3;
            transform: scale(0.8);
        }

        .swiper-slide-active {
            transform: scale(1.05) !important;
            /* Added scaling for responsiveness */
        }

        .card-img-container {
            height: 250px;
        }

        .card-title {
            font-size: 1.3rem;
        }
    }

    @media (max-width: 992px) {
        .highlight {
            padding: 50px 0 30px;
        }

        .swiper {
            padding: 30px 20px 30px;
        }

        .swiper-slide {
            opacity: 0.25;
            transform: scale(0.75);
        }

        .swiper-slide-active {
            transform: scale(1.05) !important;
            /* Added scaling for responsiveness */
        }

        .swiper-slide-next,
        .swiper-slide-prev {
            opacity: 0.5 !important;
            transform: scale(0.85) !important;
        }

        .trending-card {
            width: 80%;
            max-width: 350px;
        }

        .card-img-container {
            height: 220px;
        }

        .card-content {
            padding: 20px;
        }

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

        .card-description {
            font-size: 0.95rem;
            -webkit-line-clamp: 2;
        }

        .swiper-button-next,
        .swiper-button-prev {
            width: 45px;
            height: 45px;
        }

        .swiper-button-next:after,
        .swiper-button-prev:after {
            font-size: 1.2rem;
        }
    }

    @media (max-width: 768px) {
        .highlight {
            padding: 40px 0 20px;
        }

        .swiper {
            padding: 20px 15px 25px;
        }

        .swiper-slide {
            opacity: 0.2;
            transform: scale(0.7);
        }

        .swiper-slide-active {
            transform: scale(1.05) !important;
            /* Added scaling for responsiveness */
        }

        .swiper-slide-next,
        .swiper-slide-prev {
            opacity: 0.4 !important;
            transform: scale(0.8) !important;
        }

        .trending-card {
            width: 90%;
            max-width: 320px;
        }

        .card-img-container {
            height: 200px;
        }

        .card-content {
            padding: 18px;
        }

        .card-title {
            font-size: 1.1rem;
        }

        .card-price {
            font-size: 1.2rem;
            margin-bottom: 15px;
        }

        .card-button {
            padding: 12px 20px;
            font-size: 0.9rem;
        }

        .card-tag {
            top: 15px;
            right: 15px;
            padding: 6px 12px;
            font-size: 0.8rem;
        }

        .swiper-button-next,
        .swiper-button-prev {
            width: 40px;
            height: 40px;
            display: none;
            /* Hide on mobile for more space */
        }

        .swiper-pagination-bullet {
            width: 12px;
            height: 12px;
            margin: 0 6px !important;
        }
    }

    @media (max-width: 576px) {
        .highlight {
            padding: 30px 0 15px;
        }

        .swiper {
            padding: 15px 10px 20px;
        }

        .swiper-slide {
            opacity: 0.15;
            transform: scale(0.65);
        }

        .swiper-slide-active {
            transform: scale(1.05) !important;
            /* Added scaling for responsiveness */
            opacity: 1 !important;
        }

        .swiper-slide-next,
        .swiper-slide-prev {
            opacity: 0.3 !important;
            transform: scale(0.7) !important;
        }

        .trending-card {
            width: 95%;
            max-width: 300px;
            border-radius: 12px;
        }

        .card-img-container {
            height: 180px;
        }

        .card-content {
            padding: 15px;
        }

        .card-title {
            font-size: 1rem;
            margin-bottom: 8px;
        }

        .card-description {
            font-size: 0.9rem;
            margin-bottom: 15px;
            -webkit-line-clamp: 2;
        }

        .card-price {
            font-size: 1.1rem;
            margin-bottom: 12px;
        }

        .card-button {
            padding: 10px 18px;
            font-size: 0.85rem;
            width: 100%;
            text-align: center;
        }

        .swiper-pagination-bullet {
            width: 10px;
            height: 10px;
            margin: 0 4px !important;
        }
    }

    @media (max-width: 400px) {
        .highlight {
            padding: 20px 0 10px;
        }

        .swiper {
            padding: 10px 5px 15px;
        }

        .trending-card {
            width: 100%;
            max-width: 280px;
        }

        .card-img-container {
            height: 160px;
        }

        .card-content {
            padding: 12px;
        }

        .card-title {
            font-size: 0.95rem;
        }

        .card-description {
            font-size: 0.85rem;
            -webkit-line-clamp: 2;
        }

        .card-price {
            font-size: 1rem;
        }

        .swiper-pagination {
            margin-top: 20px;
        }
    }

    /* Add smooth transitions for better mobile experience */
    @media (hover: none) and (pointer: coarse) {
        .trending-card {
            transform: none !important;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1) !important;
        }

        .trending-card:active {
            transform: scale(0.98) !important;
            box-shadow: 0 3px 8px rgba(0, 0, 0, 0.15) !important;
        }

        .card-button:active {
            transform: scale(0.95) !important;
        }
    }

    /* Landscape mode adjustments */
    @media (max-height: 600px) and (orientation: landscape) {
        .highlight {
            padding: 30px 0;
        }

        .swiper {
            padding: 20px 15px;
        }

        .card-img-container {
            height: 150px;
        }

        .card-content {
            padding: 15px;
        }

        .card-title {
            font-size: 1rem;
            margin-bottom: 5px;
        }

        .card-description {
            font-size: 0.85rem;
            margin-bottom: 10px;
            -webkit-line-clamp: 2;
        }
    }

    /* High DPI screens optimization */
    @media (-webkit-min-device-pixel-ratio: 2),
    (min-resolution: 192dpi) {
        .trending-card {
            border: 0.5px solid rgba(0, 0, 0, 0.1);
        }

        .card-tag {
            border: 0.5px solid rgba(255, 255, 255, 0.3);
        }
    }

    /* Coming Soon Section */
    .csoon {
        position: relative;
        width: 100%;
        height: 600px;
        overflow: hidden;
        text-align: center;
        align-items: center;
        --image-count: 4;
        --marquee-speed: 5s;
        margin-top: 120px;
        margin-bottom: 60px;
    }

    .csoon::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: calc(var(--image-count) * 600px * 2);
        height: 600px;
        background-repeat: no-repeat;
        background-size: 600px 600px;
        animation: marquee var(--marquee-speed) linear infinite;
        filter: blur(2px);
    }

    /* Marquee animation */
    @keyframes marquee {
        0% {
            transform: translateX(0);
        }

        100% {
            transform: translateX(calc(-600px * var(--image-count)));
        }
    }

    .csoon::before {
        background-image:
            url('/img/cson/1.jpg'),
            url('/img/cson/2.jpg'),
            url('/img/cson/3.jpg'),
            url('/img/cson/4.jpg'),
            url('/img/cson/1.jpg'),
            url('/img/cson/2.jpg'),
            url('/img/cson/3.jpg'),
            url('/img/cson/4.jpg');
        background-position:
            0px 0px,
            600px 0px,
            calc(600*2px) 0px,
            calc(600*3px) 0px,
            calc(600*4px) 0px,
            calc(600*5px) 0px,
            calc(600*6px) 0px,
            calc(600*7px) 0px,
            calc(600*8px) 0px;
    }

    .csoon h1 {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        font-size: 3.5rem;
        margin-bottom: 20px;
        text-transform: uppercase;
        letter-spacing: 1px;
        color: white;
        z-index: 2;
        font-weight: 450;
        letter-spacing: 20px;
    }

    .bg-text2 {
        position: absolute;
        bottom: -22vw;
        left: 50%;
        transform: translateX(-50%);
        font-size: 22.1vw;
        color: #000000;
        opacity: 0.2;
        z-index: 2;
        font-weight: 900;
        pointer-events: none;
        text-transform: uppercase;
        white-space: nowrap;
        text-align: center;
        text-size-adjust: auto;
    }

    /* Shop Category Section */
    .shop-category {
        padding: 60px 0;
        margin-bottom: 60px;
        padding-top: 30px;
        position: relative;
        overflow: hidden;
    }

    .shop-category-index {
        padding: 60px 0;
        background-color: white;
        margin-bottom: 11vw;
        position: relative;
        overflow: visible;
    }

    .bento-grid {
        display: grid;
        grid-template-columns: repeat(5, 1fr);
        gap: 24px;
        margin-bottom: 40px;
        max-height: calc(5 * 220px + 4 * 24px);
        overflow-y: auto;
    }

    .category-item {
        border-radius: 18px;
        overflow: hidden;
        box-shadow: 0 4px 16px rgba(0, 0, 0, 0.11);
        transition: all 0.3s ease;
        position: relative;
        height: 220px;
        min-width: 0;
        text-transform: uppercase;
    }

    .category-item:hover {
        transform: translateY(-10px);
        box-shadow: 0 14px 28px rgba(0, 0, 0, 0.18);
    }

    /* FIXED DUPLICATE: Using the first .category-img definition */
    .category-img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .category-text {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        display: flex;
        align-items: center;
        justify-content: center;
        background: rgba(0, 0, 0, 0.3);
        /* Optional: adds a subtle overlay for better text visibility */
        color: white;
        padding: 20px;
        text-align: center;
    }

    .category-text h3 {
        font-size: 1.3rem;
        margin: 0;
    }

    .category-text p {
        display: none;
        /* Hide the paragraph since we're centering just the h3 */
    }

    /* Category filter menu - SINGLE DEFINITION */
    .category-filter {
        margin: 20px 0;
        text-align: center;
    }

    .category-filter label {
        font-weight: bold;
        margin-right: 10px;
        color: var(--primary-color);
    }

    .category-filter select {
        padding: 8px 12px;
        border: 1px solid #ddd;
        border-radius: 4px;
        background-color: white;
        font-size: 1em;
        cursor: pointer;
        transition: border-color 0.3s;
    }

    .category-filter select:focus {
        outline: none;
        border-color: var(--accent-color);
    }

    /* For tablets */
    @media (max-width: 1024px) {
        .bento-grid {
            grid-template-columns: repeat(5, 1fr);
            gap: 20px;
        }

        .category-item {
            height: 180px;
            border-radius: 14px;
        }
    }

    /* For mobile */
    @media (max-width: 768px) {
        .bento-grid {
            grid-template-columns: repeat(5, 1fr);
            gap: 16px;
        }

        .category-item {
            height: 140px;
            border-radius: 12px;
            box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
        }

        .category-item:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
        }

        .category-text h3 {
            font-size: 0.7rem;
        }
    }

    /* For small mobile */
    @media (max-width: 480px) {
        .bento-grid {
            grid-template-columns: repeat(5, 1fr);
            /* Fixed 2 columns for very small screens */
            gap: 7px;
        }

        .category-item {
            height: 90px;
            border-radius: 10px;
        }

        .category-text h3 {
            font-size: 0.6rem;
        }
    }


    /* Loading message for dynamic content */
    .loading-message {
        color: var(--text-light);
        font-style: italic;
    }

    /* Shop Item Section */
    .shopcon {
        padding: 60px 0;
        position: relative;
    }

    .shop-container {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 20px;
        padding: 20px;
        width: 100%;
    }

    /* PRODUCT CARD WITH IMAGE HOVER EFFECT */
    .product-card {
        background: white;
        border: 1px solid #ddd;
        border-radius: 15px;
        padding: 30px;
        transition: transform 0.3s, box-shadow 0.3s;
        position: relative;
        background-color: white;
        width: 100%;
        cursor: pointer;
        height: 100%;
        display: flex;
        flex-direction: column;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
        overflow: hidden;
    }

    .product-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    }

    .product-link {
        text-decoration: none;
        color: inherit;
        display: block;
    }

    .product-link:hover .product-card {
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    }

    /* PRODUCT IMAGE CONTAINER FOR HOVER EFFECT */
    /* PRODUCT IMAGE CONTAINER FOR HOVER EFFECT */
    .product-image-container {
        width: 100%;
        height: 300px;
        position: relative;
        overflow: hidden;
        border-radius: 4px;
        margin-bottom: 15px;
    }

    .product-image {
        width: 100%;
        height: 100%;
        object-fit: cover;
        position: absolute;
        top: 0;
        left: 0;
        transition: opacity 0.5s ease-in-out;
    }

    .product-image.main-image {
        opacity: 1;
        z-index: 1;
    }

    .product-image.hover-image {
        opacity: 0;
        z-index: 2;
    }

    /* Only apply hover effect if hover-image exists */
    .product-card:has(.hover-image):hover .product-image.main-image {
        opacity: 0;
    }

    .product-card:has(.hover-image):hover .product-image.hover-image {
        opacity: 1;
    }

    /* For products without hover image, the main image stays visible */
    .product-card:not(:has(.hover-image)) .product-image.main-image {
        position: relative;
    }

    .product-name {
        font-size: 1.2em;
        font-weight: bold;
        margin: 10px 0;
        color: #333;
        line-height: 1.3;
    }

    .product-price {
        font-size: 1.1em;
        color: #2c3e50;
        margin: 5px 0;
        display: flex;
        align-items: center;
        gap: 8px;
        flex-wrap: wrap;
        margin-top: auto;
        font-weight: bold;
        font-size: 18px;
    }

    .original-price {
        text-decoration: line-through;
        color: #95a5a6;
        font-size: 0.9em;
    }

    .discounted-price {
        color: var(--discount-color);
        font-weight: bold;
        font-size: 1.2em;
    }

    .product-description {
        color: #7f8c8d;
        margin: 10px 0;
        font-size: 0.9em;
        line-height: 1.4;
        flex-grow: 1;
    }

    .category {
        display: inline-block;
        background: #ecf0f1;
        padding: 3px 8px;
        border-radius: 12px;
        font-size: 0.8em;
        margin: 5px 0;
        width: min-content;
        color: #666;
        font-size: 12px;
        text-transform: uppercase;
        letter-spacing: 1px;
        margin-bottom: 5px;
        height: min-content;
    }

    .rating {
        color: #f39c12;
        margin: 5px 0;
    }

    .stock {
        color: #27ae60;
        font-size: 0.9em;
        margin: 5px 0;
    }

    .out-of-stock {
        color: #e74c3c;
    }

    .add-to-cart {
        background: #3498db;
        color: white;
        border: none;
        padding: 10px 15px;
        border-radius: 4px;
        cursor: pointer;
        width: 100%;
        margin-top: 10px;
        transition: background 0.3s;
    }

    .add-to-cart:hover {
        background: #2980b9;
    }

    .add-to-cart:disabled {
        background: #bdc3c7;
        cursor: not-allowed;
    }

    /* Discount Styling */
    .discount-badge {
        position: absolute;
        top: 15px;
        right: 15px;
        background: var(--discount-color);
        color: white;
        padding: 6px 12px;
        border-radius: 20px;
        font-size: 14px;
        font-weight: bold;
        z-index: 3;
        box-shadow: 0 3px 6px rgba(231, 76, 60, 0.3);
    }

    /* Optional: Add a subtle sale indicator for discounted products */
    .product-card:has(.discount-badge) {
        border: 2px solid var(--discount-bg);
        background-color: var(--discount-bg);
    }

    .product-card:has(.discount-badge)::before {
        content: "SALE";
        position: absolute;
        top: 0;
        left: 0;
        background: var(--discount-color);
        color: white;
        padding: 4px 10px;
        border-radius: 4px;
        font-size: 11px;
        font-weight: bold;
        z-index: 3;
        letter-spacing: 1px;
    }

    /* Make price section stand out for discounted items */
    .product-card:has(.discount-badge) .product-price {
        padding: 8px 0;
        border-top: 1px solid #eee;
        margin-top: 10px;
    }

    /* Highlight discount savings */
    .discount-savings {
        font-size: 0.85em;
        color: var(--discount-color);
        font-weight: 600;
        background: rgba(231, 76, 60, 0.1);
        padding: 2px 6px;
        border-radius: 4px;
        margin-left: 8px;
    }

    /* Filter buttons for discounts */
    .discount-filter {
        margin-bottom: 20px;
        padding: 15px;
        background: #f8f9fa;
        border-radius: 8px;
        display: flex;
        gap: 10px;
        flex-wrap: wrap;
    }

    .discount-filter-btn {
        padding: 8px 16px;
        background: white;
        border: 2px solid #ddd;
        border-radius: 20px;
        text-decoration: none;
        color: #333;
        font-weight: 600;
        cursor: pointer;
        transition: all 0.3s;
    }

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

    .discount-filter-btn.active {
        box-shadow: 0 3px 6px rgba(231, 76, 60, 0.3);
    }

    /* Remove any existing add to cart buttons from cards */
    .product-card .add-to-cart,
    .product-card .view-details-btn {
        display: none;
    }

    /* Next Category Section */
    .next-category {
        padding: 60px 0;
        background-color: var(--light-color);
        margin-bottom: 60px;
    }

    .next-category-container {
        width: 100%;
        margin: 0 auto;
        padding: 0 20px;
    }

    .next-category-buttons {
        display: flex;
        justify-content: center;
        gap: 20px;
        flex-wrap: wrap;
    }

    .next-category-button {
        background-color: var(--secondary-color);
        color: white;
        padding: 12px 30px;
        border-radius: 30px;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 1px;
        transition: all 0.3s ease;
        border: none;
        cursor: pointer;
        font-size: 1rem;
        text-decoration: none;
        display: inline-block;
        flex: 1;
    }

    .next-category-button:hover {
        background-color: #c0392b;
        transform: translateY(-3px);
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    }

    .next-category-button:active {
        transform: translateY(0);
        box-shadow: none;
    }

    .next-category-btn {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-decoration: none;
        color: #333;
        background: #f9f9f9;
        padding: 15px;
        border-radius: 8px;
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
        transition: transform 0.2s;
        width: 450px;
        margin: 0 auto;
        padding: 10px;
    }

    .next-category-btn:hover {
        transform: translateY(-5px);
    }

    /* Contact Us Section */
    .contact {
        padding: 60px 0;
        background-color: rgba(0, 0, 1, 0.9);
        scroll-margin-top: 80px;
    }

    .contact-container {
        max-width: 1300px;
        margin: 0 auto;
        background-color: white;
        padding: 40px;
        border-radius: 10px;
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .section-title.center {
        text-align: center;
        margin-bottom: 40px;
        width: 100%;
    }

    /* Special centered section title for contact section */
    .section-title-center {
        text-align: center !important;
        display: flex !important;
        justify-content: center !important;
    }

    .section-title-center h2 {
        justify-content: center !important;
        text-align: center !important;
    }

    .section-title-center.line h2:after {
        display: none;
        /* Hide the line or adjust as needed */
    }

    .contact-maps {
        display: grid;
        justify-content: center;
        gap: 30px;
        margin-bottom: 40px;
        width: 100%;
        max-width: 1200px;
        grid-template-columns: repeat(2, 1fr);
        justify-items: center;
    }

    .map-item {
        display: flex;
        flex-direction: column;
        width: 100%;
        max-width: 1200px;
    }

    .contact-img {
        width: 100%;
        height: auto;
        border-radius: 5%;
        object-fit: cover;
        margin-bottom: 15px;
    }

    .map-description {
        text-align: center;
        padding: 10px 5px;
    }

    .map-description h4 {
        font-size: 1.2rem;
        color: var(--primary-color);
        margin-bottom: 5px;
        font-weight: 600;
    }

    .map-description p {
        color: var(--text-light);
        font-size: 0.95rem;
        line-height: 1.4;
    }

    .contact-info {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 30px;
        width: 100%;
        max-width: 900px;
        margin-top: 0;
    }

    .contact-item {
        display: flex;
        align-items: flex-start;
        margin-bottom: 20px;
    }

    .contact-icon {
        background-color: rgba(52, 152, 219, 0.1);
        color: var(--accent-color);
        width: 50px;
        height: 50px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-right: 15px;
        font-size: 1.3rem;
        flex-shrink: 0;
    }

    .contact-details h4 {
        font-size: 1.2rem;
        margin-bottom: 5px;
        color: var(--primary-color);
    }

    .contact-details p {
        color: var(--text-light);
    }

    /* Responsive adjustments */
    @media (max-width: 768px) {
        .contact-maps {
            flex-direction: column;
            gap: 2px;

        }

        .map-item {
            width: 90%;
            max-width: 100%;
        }

        .map-description h4 {
            font-size: 1rem;
        }

        .map-description p {
            font-size: 0.7rem;
        }

        .contact-info {
            grid-template-columns: repeat(1, 1fr);
        }

        .contact-container {
            padding: 25px;
        }
    }

    /* Social media icon specific colors if needed */
    .contact-item:nth-child(1) .contact-icon {
        color: #1877F2;
        /* Facebook blue */
        background-color: rgba(24, 119, 242, 0.1);
    }

    .contact-item:nth-child(2) .contact-icon {
        color: #E4405F;
        /* Instagram pink */
        background-color: rgba(228, 64, 95, 0.1);
    }

    .contact-item:nth-child(3) .contact-icon {
        color: #25D366;
        /* WhatsApp green */
        background-color: rgba(37, 211, 102, 0.1);
    }

    /* Footer */
    footer {
        background-color: rgba(0, 0, 1, 0.9);
        color: white;
        padding: 40px 0;
        text-align: center;
        position: relative;
        overflow: hidden;
        /* Changed from 'visible' to 'hidden' */
        padding-bottom: 11vw;
    }

    /* Footer Menu */
    .footer-menu {
        display: flex;
        justify-content: center;
        gap: 40px;
        margin-bottom: 30px;
        flex-wrap: wrap;
    }

    .menu-item {
        color: white;
        text-decoration: none;
        font-size: 1rem;
        transition: color 0.3s ease;
        text-transform: uppercase;
        letter-spacing: 1px;
        padding: 5px 0;
        position: relative;
    }

    .menu-item:hover {
        color: #f0f0f0;
    }

    .menu-item::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 0;
        height: 1px;
        background-color: white;
        transition: width 0.3s ease;
    }

    .menu-item:hover::after {
        width: 100%;
    }

    .copyright {
        padding-top: 20px;
        color: #aaa;
        font-size: 0.9rem;
        position: relative;
        z-index: 2;
        /* Ensure copyright is above the background text */
    }

    .bg-text3 {
        position: absolute;
        bottom: -9vw;
        left: 50%;
        transform: translateX(-50%);
        font-size: 22.1vw;
        color: #ffffff;
        opacity: 0.03;
        /* Reduced opacity to prevent visual clutter */
        z-index: 1;
        font-weight: 900;
        pointer-events: none;
        text-transform: uppercase;
        white-space: nowrap;
        text-align: center;
        text-size-adjust: auto;
    }

    /* Responsive adjustments */
    @media (max-width: 768px) {
        .footer-menu {
            gap: 20px;
        }

        .menu-item {
            font-size: 0.9rem;
        }
    }

    /* Filter buttons for products menu */
    .filter-buttons {
        display: flex;
        gap: 10px;
        flex-wrap: wrap;
        margin-top: 10px;
    }

    .filter-btn {
        padding: 8px 16px;
        background: var(--secondary-color);
        border: 1px solid #ddd;
        border-radius: 20px;
        text-decoration: none;
        color: #ddd;
        transition: all 0.3s;
    }

    .filter-btn:hover,
    .filter-btn.active {
        background: #c0392b;
        color: white;
        border-color: #c0392b;
    }

    .category-header {
        margin-bottom: 20px;
        padding-bottom: 10px;
        border-bottom: 2px solid #eee;
    }

    .loading-spinner {
        width: 40px;
        height: 40px;
        border: 4px solid #f3f3f3;
        border-top: 4px solid #3498db;
        border-radius: 50%;
        animation: spin 1s linear infinite;
        margin: 20px auto;
    }

    @keyframes spin {
        0% {
            transform: rotate(0deg);
        }

        100% {
            transform: rotate(360deg);
        }
    }

    /* Popup Styles */
    #popup-container {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: 2000;
        pointer-events: none;
    }

    .product-popup {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
        background: rgba(0, 0, 0, 0.8);
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.3s, visibility 0.3s;
        pointer-events: all;
        z-index: 2001;
        padding: 20px;
    }

    .product-popup.active {
        opacity: 1;
        visibility: visible;
    }

    .popup-content {
        background: white;
        width: 90%;
        max-width: 900px;
        max-height: 90vh;
        border-radius: 12px;
        overflow: hidden;
        display: flex;
        flex-direction: column;
        position: relative;
        transform: translateY(20px);
        transition: transform 0.3s;
        pointer-events: all;
    }

    .product-popup.active .popup-content {
        transform: translateY(0);
    }

    body.popup-open {
        overflow: hidden;
    }

    .close-popup {
        position: absolute;
        top: 15px;
        right: 15px;
        background: none;
        border: none;
        font-size: 24px;
        cursor: pointer;
        color: #333;
        width: 40px;
        height: 40px;
        border-radius: 50%;
        background: white;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        z-index: 10;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .close-popup:hover {
        background: #f0f0f0;
    }

    .popup-images {
        background: #f8f8f8;
        padding: 20px;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .main-image-container {
        position: relative;
        width: 100%;
        max-width: 500px;
        margin-bottom: 20px;
    }

    .product-image {
        width: 100%;
        height: 300px;
        object-fit: contain;
        border-radius: 8px;
        background: white;
    }

    .image-nav-btn {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        background: rgba(255, 255, 255, 0.9);
        border: none;
        width: 40px;
        height: 40px;
        border-radius: 50%;
        font-size: 20px;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
        transition: all 0.3s;
    }

    .image-nav-btn:hover {
        background: white;
        transform: translateY(-50%) scale(1.1);
    }

    .prev-btn {
        left: 10px;
    }

    .next-btn {
        right: 10px;
    }

    .thumbnail-container {
        display: flex;
        gap: 10px;
        flex-wrap: wrap;
        justify-content: center;
    }

    .thumbnail {
        width: 60px;
        height: 60px;
        object-fit: cover;
        border-radius: 4px;
        cursor: pointer;
        border: 2px solid transparent;
        transition: all 0.3s;
    }

    .thumbnail:hover {
        border-color: #3498db;
        transform: scale(1.05);
    }

    .thumbnail.active {
        border-color: #e74c3c;
        box-shadow: 0 2px 8px rgba(231, 76, 60, 0.3);
    }

    .popup-details {
        padding: 30px;
        overflow-y: auto;
        flex-grow: 1;
    }

    .category-badge {
        display: inline-block;
        background: #f0f0f0;
        color: #666;
        padding: 5px 12px;
        border-radius: 20px;
        font-size: 12px;
        margin-bottom: 10px;
    }

    .popup-title {
        font-size: 24px;
        margin: 0 0 15px 0;
        color: #333;
    }

    .popup-price {
        margin: 20px 0;
        font-size: 22px;
        font-weight: bold;
    }

    .popup-price .original-price {
        text-decoration: line-through;
        color: #999;
        font-size: 18px;
        margin-right: 10px;
    }

    .popup-price .discounted-price {
        color: #e74c3c;
        font-size: 24px;
    }

    .popup-price .discount-percent {
        background: #e74c3c;
        color: white;
        padding: 2px 8px;
        border-radius: 4px;
        font-size: 14px;
        margin-left: 10px;
    }

    .popup-price .current-price {
        color: #2c3e50;
    }

    .popup-description h3 {
        color: #333;
        margin: 20px 0 10px 0;
        font-size: 18px;
    }

    .popup-description p {
        color: #666;
        line-height: 1.6;
        margin: 0;
    }

    .popup-actions {
        display: flex;
        gap: 15px;
        margin-top: 30px;
        flex-wrap: wrap;
    }

    .whatsapp-order-btn {
        flex: 1;
        background: black;
        color: white;
        padding: 15px 20px;
        text-decoration: none;
        border-radius: 8px;
        text-align: center;
        font-weight: bold;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
        transition: all 0.3s;
        min-width: 200px;
    }

    .whatsapp-order-btn:hover {
        background: #128C7E;
        transform: translateY(-2px);
        box-shadow: 0 5px 15px rgba(37, 211, 102, 0.3);
    }

    /* Keep these styles as they are */
    .event-popup {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        z-index: 9999;
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.3s ease, visibility 0.3s ease;
    }

    .event-popup.active {
        opacity: 1;
        visibility: visible;
    }

    .event-popup-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.8);
        z-index: 9998;
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.3s ease, visibility 0.3s ease;
    }

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

    .event-popup-content {
        position: relative;
        background-color: transparent;
        /* Changed from white to transparent */
        width: 90%;
        max-width: 800px;
        border-radius: 15px;
        overflow: hidden;
        box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
        z-index: 9999;
        transform: translateY(20px);
        transition: transform 0.4s ease;
    }

    .event-popup.active .event-popup-content {
        transform: translateY(0);
    }

    .event-popup-close {
        position: absolute;
        top: 15px;
        right: 15px;
        background: rgba(255, 255, 255, 0.9);
        border: none;
        width: 40px;
        height: 40px;
        border-radius: 50%;
        font-size: 18px;
        cursor: pointer;
        z-index: 10;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: all 0.3s ease;
    }

    .event-popup-close:hover {
        background: #000;
        color: white;
        transform: rotate(90deg);
    }

    .event-popup-image {
        width: 100%;
        height: auto;
        /* Changed from 300px to auto for responsive */
        overflow: hidden;
    }

    .event-img {
        width: 100%;
        height: auto;
        object-fit: cover;
        transition: transform 0.5s ease;
        border-radius: 10px;
        /* Added border-radius */
    }

    .event-popup-content:hover .event-img {
        transform: scale(1.05);
    }

    /* Privacy Modal Styles */
    .privacy-modal {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: 2000;
        display: none;
        align-items: center;
        justify-content: center;
        padding: 20px;
        animation: fadeIn 0.3s ease;
    }

    .privacy-modal.active {
        display: flex;
    }

    .privacy-modal-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.8);
        z-index: 1999;
        display: none;
    }

    .privacy-modal-overlay.active {
        display: block;
    }

    .privacy-modal-content {
        background: white;
        border-radius: 20px;
        width: 100%;
        max-width: 800px;
        max-height: 85vh;
        overflow: hidden;
        box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
        position: relative;
        animation: slideUp 0.4s ease;
    }

    .privacy-modal-close {
        position: absolute;
        top: 20px;
        right: 20px;
        background: #f0f0f0;
        border: none;
        width: 40px;
        height: 40px;
        border-radius: 50%;
        font-size: 18px;
        color: #333;
        cursor: pointer;
        z-index: 10;
        transition: all 0.3s ease;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .privacy-modal-close:hover {
        background: #333;
        color: white;
        transform: rotate(90deg);
    }

    .privacy-modal-header {
        background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
        color: white;
        padding: 40px 40px 20px;
        text-align: center;
    }

    .privacy-modal-header h2 {
        font-size: 32px;
        margin-bottom: 10px;
        font-weight: 700;
    }

    .privacy-date {
        opacity: 0.9;
        font-size: 14px;
    }

    .privacy-modal-body {
        padding: 30px 40px;
        overflow-y: auto;
        max-height: 50vh;
    }

    .privacy-section {
        margin-bottom: 25px;
    }

    .privacy-section h3 {
        color: #333;
        font-size: 18px;
        margin-bottom: 10px;
        font-weight: 600;
    }

    .privacy-section p {
        color: #666;
        line-height: 1.6;
        font-size: 15px;
        margin-bottom: 5px;
    }

    .privacy-modal-footer {
        padding: 20px 40px;
        background: #f9f9f9;
        border-top: 1px solid #eee;
        text-align: center;
    }

    .privacy-accept-btn {
        background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
        color: white;
        border: none;
        padding: 15px 40px;
        border-radius: 50px;
        font-size: 16px;
        font-weight: 600;
        cursor: pointer;
        transition: all 0.3s ease;
        display: inline-block;
        box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
    }

    .privacy-accept-btn:hover {
        transform: translateY(-2px);
        box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);
    }

    /* Animations */
    @keyframes fadeIn {
        from {
            opacity: 0;
        }

        to {
            opacity: 1;
        }
    }

    @keyframes slideUp {
        from {
            opacity: 0;
            transform: translateY(50px);
        }

        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    /* Scrollbar styling for modal body */
    .privacy-modal-body::-webkit-scrollbar {
        width: 6px;
    }

    .privacy-modal-body::-webkit-scrollbar-track {
        background: #f1f1f1;
        border-radius: 10px;
    }

    .privacy-modal-body::-webkit-scrollbar-thumb {
        background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
        border-radius: 10px;
    }

    .privacy-modal-body::-webkit-scrollbar-thumb:hover {
        background: linear-gradient(135deg, #5a6fd8 0%, #6a4190 100%);
    }

    /* Pagination Styles */
    .pagination-container {
        margin-top: 40px;
        padding: 20px 0;
        border-top: 1px solid #eee;
        text-align: center;
        width: 100%;
    }

    .pagination-info {
        margin-bottom: 15px;
        color: #666;
        font-size: 14px;
    }

    .pagination-controls {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 10px;
        flex-wrap: wrap;
    }

    .pagination-btn {
        padding: 8px 16px;
        background: #333;
        color: white;
        border: none;
        border-radius: 4px;
        cursor: pointer;
        transition: background 0.3s;
        font-size: 14px;
        min-width: 100px;
    }

    .pagination-btn:hover:not(.disabled) {
        background: #555;
    }

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

    .page-numbers {
        display: flex;
        gap: 5px;
        flex-wrap: wrap;
        justify-content: center;
    }

    .page-number {
        padding: 8px 12px;
        background: #f5f5f5;
        border: 1px solid #ddd;
        border-radius: 4px;
        cursor: pointer;
        transition: all 0.3s;
        font-size: 14px;
        min-width: 40px;
        height: 40px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .page-number:hover {
        background: #e9e9e9;
    }

    .page-number.active {
        background: #333;
        color: white;
        border-color: #333;
    }

    .ellipsis {
        padding: 8px 5px;
        color: #666;
        display: flex;
        align-items: center;
        justify-content: center;
        height: 40px;
    }

    /* Responsive Pagination */
    @media (max-width: 768px) {
        .pagination-controls {
            flex-direction: column;
            gap: 15px;
        }

        .page-numbers {
            order: 2;
            margin: 10px 0;
        }

        .pagination-btn {
            order: 1;
            width: 100%;
            max-width: 200px;
        }

        #prev-page {
            order: 1;
        }

        #next-page {
            order: 3;
        }
    }

    @media (max-width: 480px) {
        .page-number {
            min-width: 35px;
            height: 35px;
            font-size: 13px;
            padding: 6px 8px;
        }

        .pagination-btn {
            padding: 10px;
            font-size: 13px;
        }
    }

    /* Responsive styles */
    @media (max-width: 768px) {
        .privacy-modal-content {
            max-height: 90vh;
            margin: 10px;
        }

        .privacy-modal-header {
            padding: 30px 20px 15px;
        }

        .privacy-modal-header h2 {
            font-size: 26px;
        }

        .privacy-modal-body {
            padding: 20px;
            max-height: 55vh;
        }

        .privacy-modal-footer {
            padding: 15px 20px;
        }

        .privacy-accept-btn {
            width: 100%;
            padding: 15px 20px;
        }
    }

    /* Responsive Styles */
    @media (max-width: 768px) {
        .event-popup-content {
            width: 95%;
            margin: 20px;
        }

        .event-popup-image {
            max-height: 70vh;
            /* Limit height on mobile */
        }
    }

    @media (max-width: 480px) {
        .event-popup-content {
            width: 90%;
        }

        .event-popup-close {
            top: 10px;
            right: 10px;
            width: 35px;
            height: 35px;
            font-size: 16px;
        }
    }


    /* Responsive Design */
    @media (max-width: 992px) {
        .hero {
            padding-top: 25vh;
            padding-bottom: 25vh;
            margin-left: 2%;
            margin-right: 2%;
        }
        .btn {
            padding: 6px 25px;
            font-size: 1.2em;
        }

        .swiper-slide {
            width: 33.33%;
        }

        .mhidden {
            display: none;
            visibility: hidden;
            transform: scale(0);
        }

        .discount-badge {
            top: 10px;
            right: 10px;
            padding: 4px 8px;
            font-size: 12px;
        }

        .contact-container {
            flex-direction: column;
            gap: 30px;
            padding: 30px 15px;
        }

        .contact-maps,
        .contact-info {
            max-width: 100%;
            min-width: 0;
        }

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

    @media (max-width: 768px) {

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

        .btn {
            padding: 6px 25px;
            font-size: 1em;
        }

        .section-title h3 {
            font-size: 4vw;
            margin-bottom: -30px;
        }

        .logo-img {
            max-height: 30px;
            max-width: 200px;
            width: 250px;
        }

        .hero {
            padding-top: 15vh;
            padding-bottom: 15vh;
        }

        .product-image-container {
            height: 250px;
        }

        .desktop-header {
            display: none;
        }

        .mobile-header {
            display: flex;
        }

        .swiper-slide {
            width: 50%;
        }

        .contact-container {
            padding: 30px 20px;
        }

        .mhidden {
            display: none;
            visibility: hidden;
            transform: scale(0);
        }

        .product-card:has(.discount-badge)::before {
            top: 2px;
            left: 3px;
            font-size: 5px;
            padding: 3px 8px;
        }

        .discount-filter {
            padding: 10px;
        }

        .discount-filter-btn {
            padding: 6px 12px;
            font-size: 0.9em;
        }

        .popup-content {
            flex-direction: column;
            width: 95%;
            max-height: 95vh;
        }

        .popup-images {
            flex: 1;
        }

        .popup-details {
            flex: 1;
            overflow-y: auto;
        }

        .popup-actions {
            flex-direction: column;
        }

        .whatsapp-order-btn {
            width: 100%;
        }



        .product-image-container {
            height: 250px;
        }
        .product-image{
            height: 250px;
        }
    }

    @media (max-width: 576px) {
        .shop-container {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 5px;
            padding: 0px;
            width: 100%;
            justify-items: center;
        }

        .btn {
            padding: 3px 25px;
            font-size: 0.8em;
            margin-bottom: 3px;
        }

        .product-card {
            padding: 0;
            width: 100px;

        }

        .product-name,
        .product-price {
            margin-left: 10px;
            font-size: 0.7rem;
        }

        .category {
            display: none;
        }

        .hero {
            padding-top: 17vh;
            padding-bottom: 17vh;
        }


        .swiper-slide {
            width: 100%;
        }

        .mobile-nav {
            width: 100%;
        }

        .card-img-container {
            height: 180px;
        }

        .mhidden {
            display: none;
            visibility: hidden;
            transform: scale(0);
        }

        .product-price {
            flex-direction: column;
            align-items: flex-start;
            gap: 5px;
        }

        .discount-badge {
            top: 2px;
            right: 5px;
            padding: 1px 3px;
            font-size: 11px;
        }

        .product-image-container {
            height: 100px;
        }

        .product-image{
            height: 100px;
        }
    }

    @media (max-width: 480px) {
        .hero {
            padding-top: 14vh;
            padding-bottom: 14vh;
        }

        .btn {
            padding: 6px 20px;
            font-size: 0.5em;
            padding-top: 5px;
        }
        .section-title h2{
            font-size: 1em;
        }

        .swiper-button-next,
        .swiper-button-prev {
            display: none;
        }

        .trending-card {
            margin: 0 5px;
        }

        .product-card:has(.discount-badge)::before {
            display: none;
        }


    }

    .hidden {
        opacity: 0;
    }

    .section-title {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 30px;
        /* Optional: add some spacing below */
    }