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

        :root {
            --primary: #14baab;
            --primary-dark: #14baab;
            --secondary: #4caf50;
            --accent: #b93538;
            --dark: #1a1a1a;
            --light: #f5f7fa;
            --border: #e0e0e0;
            --text: #333;
            --text-light: #f5f7fa;
            --pink: #ff6b8a;
            --pink-light: #ffd6e0;
            --yellow: #ffd166;
            --blue: #6ec6ff;
            --mint: #b5ead7;
            --bg: #f5f3f0;
        }

        body {
            font-family: 'Poppins', sans-serif;
            color: var(--text);
            line-height: 1.6;
            background-color: var(--light);
        }

        /* ============================================
           NAVBAR
           ============================================ */

        .navbar {
            background: white;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
            padding: 1rem 0;
            position: sticky;
            top: 0;
            z-index: 1000;
        }

        .navbar-brand {
            font-size: 24px;
            font-weight: 700;
            background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            display: flex;
            align-items: center;
            gap: 8px;
        }
       .navbar-brand img {
    height: 70px;
    width: 150px;
}

        .navbar-brand i {
            font-size: 28px;
        }

        .nav-link {
            color: var(--text) !important;
            font-weight: 500;
            position: relative;
            margin: 0 12px;
            transition: all 0.3s ease;
        }

        .nav-link:hover {
            color: var(--primary) !important;
        }

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

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

        .navbar-search {
            flex: 1;
            max-width: 400px;
            margin: 0 20px;
        }

        .navbar-search input {
            border-radius: 25px;
            border: 1px solid var(--border);
            padding: 8px 16px;
            font-size: 13px;
        }

        .navbar-search input:focus {
            border-color: var(--primary);
            box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
            outline: none;
        }

        .navbar-buttons {
            display: flex;
            gap: 8px;
            align-items: center;
        }

        .btn-navbar {
            padding: 8px 16px;
            border-radius: 6px;
            font-size: 13px!important;
            font-weight: 600;
            transition: all 0.3s ease;
            border: none;
        }

        .btn-login {
            color: var(--primary);
            background: white;
            border: 1px solid var(--primary);
        }

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

        .btn-signup {
            /* background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%); */
              background: #684287!important;
            color: white!important;
        }

        .btn-signup:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 20px rgba(102, 126, 234, 0.3);
        }

        .cart-icon-btn {
            position: relative;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            color: #684287;
            font-size: 18px;
            text-decoration: none;
            transition: color 0.2s ease;
        }

        .cart-icon-btn:hover {
            color: #764ba2;
        }

        .cart-badge {
            position: absolute;
            top: -4px;
            right: -4px;
            background: #e53935;
            color: white;
            font-size: 10px;
            font-weight: 700;
            min-width: 18px;
            height: 18px;
            border-radius: 9px;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 0 4px;
            line-height: 1;
        }

        /* ============================================
           HERO SECTION
           ============================================ */

        .hero {
            background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
            color: white;
            padding: 100px 0;
            position: relative;
            overflow: hidden;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            right: 0;
            width: 500px;
            height: 500px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            transform: translate(150px, -150px);
        }

        .hero-content {
            position: relative;
            z-index: 2;
        }

        .categories{
        font-size: 32px!important;
    font-weight: 700!important;
    margin-bottom: 20px!important;
    color: #222!important;
}
        .hero h1 {
            font-family: 'Playfair Display', serif;
            font-size: 56px;
            font-weight: 700;
            margin-bottom: 20px;
            line-height: 1.2;
        }

        .hero p {
            font-size: 18px;
            margin-bottom: 30px;
            opacity: 0.95;
            max-width: 500px;
        }

        .hero-buttons {
            display: flex;
            gap: 16px;
            margin-top: 30px;
        }

        .btn-primary-hero {
            padding: 14px 32px;
            border-radius: 8px;
            border: none;
            background: white;
            color: var(--primary);
            font-weight: 700;
            cursor: pointer;
            transition: all 0.3s ease;
            font-size: 15px;
        }

        .btn-primary-hero:hover {
            transform: translateY(-3px);
            box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
        }

        .btn-secondary-hero {
            padding: 14px 32px;
            border-radius: 8px;
            border: 2px solid white;
            background: transparent;
            color: white;
            font-weight: 700;
            cursor: pointer;
            transition: all 0.3s ease;
            font-size: 15px;
        }

        .btn-secondary-hero:hover {
            background: white;
            color: var(--primary);
        }

        .hero-stats {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
            gap: 30px;
            margin-top: 60px;
            padding-top: 30px;
            border-top: 1px solid rgba(255, 255, 255, 0.2);
        }

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

        .hero-stat-number {
            font-size: 32px;
            font-weight: 700;
            display: block;
        }

        .hero-stat-label {
            font-size: 13px;
            opacity: 0.8;
            margin-top: 5px;
        }

        /* ============================================
           CATEGORIES SECTION
           ============================================ */

        .categories-section {
            padding: 80px 0;
            background: white;
        }

        .section-title {
            /* font-family: 'Playfair Display', serif; */
            font-size: 42px;
            font-weight: 700;
            margin-bottom: 50px;
            text-align: center;
            position: relative;
            padding-bottom: 20px;
            color:#b93538;
        }

        .section-title::after {
            content: '';
            position: absolute;
            width: 80px;
            height: 4px;
            background: linear-gradient(to right, var(--primary), var(--primary-dark));
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            border-radius: 2px;
        }

        .category-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
            gap: 30px;
        }

        .category-card {
            background: white;
            border-radius: 12px;
            overflow: hidden;
            transition: all 0.3s ease;
            cursor: pointer;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
            text-decoration: none;
            color: inherit;
            display: flex;
            flex-direction: column;
        }

        .category-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 12px 30px rgba(102, 126, 234, 0.2);
        }

        .category-image {
            width: 100%;
            height: 200px;
            background: linear-gradient(135deg, var(--light) 0%, #e8eaf6 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 64px;
            color: var(--primary);
            overflow: hidden;
        }

        .category-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .category-info {
            padding: 20px;
            flex: 1;
            display: flex;
            flex-direction: column;
        }

        .category-name {
            font-size: 18px;
            font-weight: 700;
            margin-bottom: 8px;
        }

        .category-count {
            font-size: 13px;
            color: var(--text-light);
        }

        /* ============================================
           FEATURED PRODUCTS SECTION
           ============================================ */

        .products-section {
            padding: 20px 0;
            padding-bottom:20px;
        }

        .product-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 30px;
        }

        .product-card {
            background: white;
            border-radius: 12px;
            overflow: hidden;
            transition: all 0.3s ease;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
            text-decoration: none;
            color: inherit;
            display: flex;
            flex-direction: column;
        }

        .product-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 12px 30px rgba(102, 126, 234, 0.15);
        }

        .product-image {
            width: 100%;
            height: 250px;
            background: var(--light);
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            overflow: hidden;
        }

        .product-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.3s ease;
        }

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

        .product-badge {
            position: absolute;
            top: 10px;
            right: 10px;
            background: var(--accent);
            color: white;
            padding: 6px 12px;
            border-radius: 6px;
            font-size: 11px;
            font-weight: 700;
            z-index: 2;
        }

        .product-badge.new {
            background: var(--primary);
        }

        .product-info {
            padding: 20px;
            flex: 1;
            display: flex;
            flex-direction: column;
            background:white;
        }

        .product-category {
            font-size: 11px;
            color: var(--primary);
            font-weight: 700;
            text-transform: uppercase;
            margin-bottom: 6px;
            letter-spacing: 0.5px;
        }

        .product-name {
            font-size: 16px;
            font-weight: 700;
            margin-bottom: 10px;
            line-height: 1.3;
  display: -webkit-box;
  -webkit-line-clamp: 2;   /* limit to 2 lines */
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
        }



        .product-rating {
            display: flex;
            align-items: center;
            gap: 8px;
            margin-bottom: 12px;
        }

        .rating-stars {
            display: flex;
            color: #ffc107;
            font-size: 12px;
        }

        .rating-count {
            font-size: 12px;
            color: var(--text-light);
        }

        .product-price {
            font-size: 18px;
            font-weight: 700;
            color: var(--primary);
            margin-top: auto;
        }

        .product-description {
            font-size: 13px;
            color: var(--text-light);
            margin-bottom: 12px;
            line-height: 1.4;
        }

        .product-action {
            display: flex;
            gap: 10px;
            margin-top: 15px;
        }

        .btn-product {
            flex: 1;
            padding: 10px 16px;
            border: none;
            border-radius: 6px;
            font-size: 13px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .btn-view {
            background: var(--primary);
            color: white;
        }

        .btn-view:hover {
            background: var(--primary-dark);
        }

        .btn-quote {
            border: 1px solid var(--primary);
            color: var(--primary);
            background: white;
        }

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

        /* ============================================
           TESTIMONIALS SECTION
           ============================================ */

        .testimonials-section {
            padding: 80px 0;
            background: white;
        }

        .testimonial-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }

        .testimonial-card {
            background: var(--light);
            border-radius: 12px;
            padding: 30px;
            border-left: 4px solid var(--primary);
        }

        .testimonial-rating {
            display: flex;
            color: #ffc107;
            margin-bottom: 15px;
            font-size: 14px;
        }

        .testimonial-text {
            font-size: 15px;
            line-height: 1.6;
            margin-bottom: 20px;
            color: var(--text);
            font-style: italic;
        }

        .testimonial-author {
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .testimonial-avatar {
            width: 48px;
            height: 48px;
            border-radius: 50%;
            background: var(--primary);
            color: white;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
            font-size: 18px;
        }

        .testimonial-info h4 {
            font-size: 14px;
            font-weight: 700;
            margin: 0;
        }

        .testimonial-info p {
            font-size: 12px;
            color: var(--text-light);
            margin: 0;
        }

        /* ============================================
           CTA SECTION
           ============================================ */

       .cta-section {
    position: relative;
    background: 
        linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)),
        url('../images/cta-banner.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 80px 0;
    color: #fff;
}
        .cta-content h2 {
            /* font-family: 'Playfair Display', serif; */
            font-size: 42px;
            font-weight: 700;
            margin-bottom: 20px;
            text-align:center!important;
        }

        .cta-content p {
            font-size: 18px;
            margin-bottom: 30px;
            opacity: 0.95;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
            text-align:center;
        }

        .cta-buttons {
            display: flex;
            gap: 16px;
            justify-content: center;
            flex-wrap: wrap;
        }

        /* ============================================
           FOOTER
           ============================================ */

        .footer {
            background: #1a1a1a;
            color: #aaa;
            padding: 60px 0 20px;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-bottom: 40px;
        }

        .footer-section h4 {
            color: white;
            font-weight: 700;
            margin-bottom: 20px;
        }

        .footer-links {
            display: flex;
            flex-direction: column;
            gap: 10px;
        }

        .footer-links a {
            color: #aaa;
            text-decoration: none;
            font-size: 14px;
            transition: color 0.3s ease;
        }

        .footer-links a:hover {
            color: var(--primary);
        }

        .social-links {
            display: flex;
            gap: 12px;
            margin-top: 20px;
        }

        .social-links a {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.1);
            display: flex;
            align-items: center;
            justify-content: center;
            color: #aaa;
            text-decoration: none;
            transition: all 0.3s ease;
        }

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

        .footer-bottom {
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            padding-top: 20px;
            text-align: center;
            font-size: 13px;
        }
        .footer-section img {
    max-width: 100%;
    height: auto;
    display: block;
    padding:2px;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    padding: 10px 0;
}

.footer-bottom p {
    margin: 0;
    font-size: 14px;
}

.footer-bottom a {
    color: var(--primary);
    text-decoration: none;
}

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

/* shop by categories
 */
 /* SECTION BACKGROUND */
.categories-section {
    background: url('../images/our-category-bg.jpg') no-repeat center;
    background-size: cover;
    padding: 80px 0;
    position: relative;
}

/* LIGHT OVERLAY */
/* .categories-section .overlay {
    background: rgba(255, 255, 255, 0.85);
    padding: 40px 20px;
} */

/* TITLE */
.categories {
    text-align: center;
    font-size: 32px;
    margin-bottom: 40px;
    color: #333;
}

/* GRID */
.category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 25px;
}

/* CARD */
.category-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    text-align: center;
    text-decoration: none;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    padding-bottom: 15px;
}

/* IMAGE */
.category-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

/* TEXT */
.category-card h3 {
    font-size: 18px;
    margin-top: 15px;
    color: #333;
}

/* HOVER EFFECT */
.category-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}
.section-subtitle {
text-align:center!important;
}
        /* ============================================
           RESPONSIVE
           ============================================ */

        /* ── 14-inch laptop fix (992px – 1400px) ── */
        @media (min-width: 992px) and (max-width: 1400px) {
            .navbar-brand img {
                height: 50px;
                width: 115px;
            }
            .nav-link {
                margin: 0 5px;
                white-space: nowrap;
            }
            .navbar-search {
                flex: 0 0 170px !important;
                width: 170px !important;
                min-width: 170px !important;
                max-width: 170px !important;
                margin: 0 8px;
            }
            .navbar-search input {
                width: 170px !important;
                min-width: 170px !important;
                font-size: 12px;
                padding: 7px 12px;
            }
            .btn-navbar {
                padding: 7px 11px;
                font-size: 12px !important;
                white-space: nowrap;
            }
        }

        @media (max-width: 768px) {
            .hero h1 {
                font-size: 36px;
            }

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

            .product-grid {
                grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
                gap: 20px;
            }

            .navbar-search {
                max-width: 250px;
                margin: 0 10px;
            }

            .hero-buttons {
                flex-direction: column;
            }

            .btn-navbar {
                padding: 6px 12px;
                font-size: 12px;
            }
            .checkout-btn{
                display:none!important;
            }
        }

        @media (max-width: 480px) {
            .hero {
                padding: 60px 0;
            }

            .hero h1 {
                font-size: 28px;
            }

            .hero p {
                font-size: 16px;
            }

            .category-grid {
                grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
                gap: 20px;
            }

            .navbar-search {
                display: none;
            }

            .navbar-buttons {
                flex-wrap: wrap;
            }
            .checkout-btn{
                display:none!important;
            }
        }

        .hero-slider {
    position: relative;
}

.hero-slide {
    position: relative;
    min-height: 100vh;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
}

.hero-slide .overlay {
    position: absolute;
    inset: 0;
    /* background: rgba(0,0,0,0.55); */
        /* background: rgba(0, 0, 0, 0.30); */
       background: rgba(0, 0, 0, 0.05); 
}

.hero-content {
    position: relative;
    z-index: 2;
    color: #fff;
}

.hero-content h1 {
    font-size: 56px;
    font-weight: 700;
    margin-bottom: 20px;
}

.hero-content p {
    font-size: 18px;
    margin-bottom: 30px;
    line-height: 1.7;
    max-width: 600px;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    margin-bottom: 40px;
}

.btn-primary-hero,
.btn-secondary-hero {
    padding: 14px 30px;
    border-radius: 8px;
    border: none;
    font-weight: 600;
    transition: 0.3s;
}

.btn-primary-hero {
    background: #b93538;
    color: #fff;
}

.btn-primary-hero:hover {
    background: #b93538;
}

.btn-secondary-hero {
    background: #fff;
    color: #111;
}

.btn-secondary-hero:hover {
    background: #f1f1f1;
}

.hero-stats {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.hero-stat {
    display: flex;
    flex-direction: column;
}

.hero-stat-number {
    font-size: 28px;
    font-weight: 700;
}

.hero-stat-label {
    font-size: 14px;
    opacity: 0.85;
}

.carousel-indicators button {
    width: 12px !important;
    height: 12px !important;
    border-radius: 50%;
}

@media(max-width: 768px) {

    .hero-slide {
        min-height: 80vh;
    }

    .hero-content h1 {
        font-size: 38px;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .hero-stats {
        gap: 20px;
    }
    .checkout-btn{
        display:none;
    }
}
.about-us {
    padding: 80px 0;
    background: #ffffff;
}

.about-us img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    margin-top:20px;
}

.about-content h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #222;
}

.about-content p {
    font-size: 15px;
    line-height: 1.7;
    color: #555;
    margin-bottom: 15px;
}

.btn-shop {
    display: inline-block;
    margin-top: 10px;
    padding: 10px 22px;
    background: #ff4d6d;
    color: #fff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: 0.3s;
}

.btn-shop:hover {
    background: #e63b5c;
}

/* Responsive */
@media (max-width: 768px) {
    .about-us {
        padding: 40px 15px;
        text-align: center;
    }

    .about-content h2 {
        font-size: 26px;
    }
}

/* Responsive */
@media(max-width: 768px) {
    .about-us {
        padding: 50px 15px;
    }

    .about-us h2 {
        font-size: 28px;
        text-align: center;
    }

    .about-btn {
        width: 100%;
    }
}
      /* ===================================================
           PRODUCT GRID & LAYOUT
           =================================================== */

        .product-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
            gap: 28px;
            margin-bottom: 50px;
        }

        /* ===================================================
           PRODUCT CARD - MAIN STYLES
           =================================================== */

        .product-card {
            display: flex;
            flex-direction: column;
            background: var(--text-light);
            border-radius: 16px;
            overflow: hidden;
            text-decoration: none;
            color: inherit;
            cursor: pointer;
            transition: var(--transition-base);
            box-shadow: var(--shadow-sm);
            animation: cardFadeIn 0.6s ease-out;
            position: relative;
        }

        .product-card:nth-child(1) { animation-delay: 0ms; }
        .product-card:nth-child(2) { animation-delay: 100ms; }
        .product-card:nth-child(3) { animation-delay: 200ms; }
        .product-card:nth-child(4) { animation-delay: 300ms; }
        .product-card:nth-child(5) { animation-delay: 400ms; }
        .product-card:nth-child(6) { animation-delay: 500ms; }
        .product-card:nth-child(7) { animation-delay: 600ms; }
        .product-card:nth-child(8) { animation-delay: 700ms; }

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

        .product-card:hover {
            transform: translateY(-8px);
            box-shadow: var(--shadow-lg);
        }

        /* ===================================================
           PRODUCT IMAGE SECTION
           =================================================== */

        .product-image {
            position: relative;
            width: 100%;
            height: 260px;
            overflow: hidden;
            background: linear-gradient(135deg, #f0f0f0 0%, #e8e8e8 100%);
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .product-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: center;
            transition: var(--transition-slow);
        }

        .product-card:hover .product-image img {
           transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        }

        /* Image Placeholder Icon */
        .product-placeholder {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 100%;
            height: 100%;
            color: #ccc;
            font-size: 3rem;
            background: linear-gradient(135deg, #ffeef6 0%, #f0e6ff 100%);
            transition: var(--transition-base);
        }

        .product-card:hover .product-placeholder {
            background: linear-gradient(135deg, #ffd4e5 0%, #e0d5ff 100%);
            color: #999;
        }

        /* ===================================================
           PRODUCT BADGES & LABELS
           =================================================== */

        .product-badge {
            position: absolute;
            top: 12px;
            right: 12px;
            padding: 6px 14px;
            background: linear-gradient(135deg, var(--primary), var(--secondary));
            color: var(--text-light);
            border-radius: 20px;
            font-size: 0.75rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            z-index: 2;
            box-shadow: var(--shadow-md);
            animation: badgePulse 2s ease-in-out infinite;
        }

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

        /* Special badge for sale/discount */
        .product-badge.sale {
            background: linear-gradient(135deg, #35bd1a, #8effa1);
        }

        .product-badge.hot {
            /* background: linear-gradient(135deg, #FFA502, #FFB84D); */
            background:var(--accent);
        }

        /* Stock status indicator */
        .stock-status {
            position: absolute;
            bottom: 12px;
            left: 12px;
            padding: 6px 12px;
            background: rgba(255, 255, 255, 0.95);
            color: #27ae60;
            border-radius: 12px;
            font-size: 0.75rem;
            font-weight: 600;
            display: flex;
            align-items: center;
            gap: 4px;
            backdrop-filter: blur(10px);
        }

        .stock-status.low {
            color: #e74c3c;
        }

        .stock-dot {
            width: 6px;
            height: 6px;
            border-radius: 50%;
            background: currentColor;
            animation: dotBlink 1.5s ease-in-out infinite;
        }

        @keyframes dotBlink {
            0%, 100% { opacity: 1; }
            50% { opacity: 0.5; }
        }

        /* ===================================================
           PRODUCT INFO SECTION
           =================================================== */

        .product-info {
            padding: 20px;
            display: flex;
            flex-direction: column;
            gap: 10px;
            flex-grow: 1;
        }

        .product-category {
            font-size: 0.8rem;
            font-weight: 600;
            color: var(--primary);
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .product-name {
            font-size: 1.1rem;
            font-weight: 700;
            color: var(--text-dark);
            margin: 0;
            line-height: 1.3;
            transition: var(--transition-fast);
        }

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

        /* ===================================================
           PRODUCT RATING
           =================================================== */

        .product-rating {
            display: flex;
            align-items: center;
            gap: 8px;
            margin: 4px 0;
        }

        .rating-stars {
            font-size: 0.9rem;
            color: #FFD700;
            letter-spacing: 2px;
            line-height: 1;
        }

        .rating-count {
            font-size: 0.75rem;
            color: var(--text-muted);
            font-weight: 500;
        }

        /* ===================================================
           PRODUCT DESCRIPTION
           =================================================== */

        .product-description {
            font-size: 0.85rem;
            color: var(--text-muted);
            line-height: 1.4;
            margin: 4px 0;
            flex-grow: 1;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }

        /* ===================================================
           PRODUCT PRICING
           =================================================== */

        .product-price-section {
            display: flex;
            align-items: center;
            justify-content: space-between;
            margin-top: auto;
            padding-top: 12px;
            border-top: 1px solid var(--border-color);
        }

        .product-price {
            font-size: 1.4rem;
            font-weight: 700;
            color: var(--primary);
        }

        .product-price-original {
            font-size: 0.9rem;
            color: var(--text-muted);
            text-decoration: line-through;
            margin-right: 8px;
        }

        /* Discount badge */
        .discount-badge {
            background: linear-gradient(135deg, var(--primary), var(--secondary));
            color: white;
            padding: 4px 10px;
            border-radius: 8px;
            font-size: 0.8rem;
            font-weight: 700;
        }

        /* ===================================================
           ACTION BUTTON
           =================================================== */

        .product-action-btn {
            background: linear-gradient(135deg, var(--primary), var(--secondary));
            color: white;
            border: none;
            padding: 10px 16px;
            border-radius: 8px;
            font-weight: 600;
            font-size: 0.9rem;
            cursor: pointer;
            transition: var(--transition-base);
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 6px;
            width: 100%;
            margin-top: 12px;
        }

        .product-action-btn:hover {
            transform: translateY(-2px);
            box-shadow: var(--shadow-md);
        }

        .product-action-btn:active {
            transform: translateY(0);
        }

        /* ===================================================
           SECONDARY ACTIONS
           =================================================== */

        .product-actions {
            display: flex;
            gap: 8px;
            margin-top: 12px;
        }

        .action-icon-btn {
            flex: 1;
            background: var(--border-color);
            border: none;
            padding: 10px;
            border-radius: 8px;
            cursor: pointer;
            transition: var(--transition-fast);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--text-dark);
            font-size: 1rem;
        }

        .action-icon-btn:hover {
            background: var(--primary);
            color: white;
            transform: scale(1.05);
        }

        /* ===================================================
           SECTION FOOTER / CTA
           =================================================== */

        .products-footer {
            text-align: center;
            position: relative;
            z-index: 1;
        }

        .view-all-btn {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            padding: 14px 40px;
            background: linear-gradient(135deg, var(--primary), var(--secondary));
            color: white;
            border: none;
            border-radius: 50px;
            font-weight: 600;
            font-size: 1rem;
            cursor: pointer;
            transition: var(--transition-base);
            box-shadow: var(--shadow-md);
            text-decoration: none;
            display: inline-flex;
        }

        .view-all-btn:hover {
            transform: translateY(-3px);
            box-shadow: var(--shadow-lg);
        }

        .view-all-btn i {
            transition: var(--transition-fast);
        }

        .view-all-btn:hover i {
            transform: translateX(4px);
        }

        /* ===================================================
           EMPTY STATE
           =================================================== */

        .products-empty {
            grid-column: 1 / -1;
            text-align: center;
            padding: 60px 20px;
            color: var(--text-muted);
        }

        .products-empty i {
            font-size: 4rem;
            margin-bottom: 16px;
            opacity: 0.5;
        }

        /* ===================================================
           FILTERS & SORTING (Optional)
           =================================================== */

        .products-toolbar {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 30px;
            gap: 20px;
            flex-wrap: wrap;
        }

        .products-count {
            font-size: 0.95rem;
            color: var(--text-muted);
            font-weight: 500;
        }

        .products-sort {
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .sort-select {
            padding: 8px 12px;
            border: 1px solid var(--border-color);
            border-radius: 8px;
            font-family: 'Poppins', sans-serif;
            font-size: 0.9rem;
            color: var(--text-dark);
            cursor: pointer;
            transition: var(--transition-fast);
        }

        .sort-select:hover {
            border-color: var(--primary);
        }

        .sort-select:focus {
            outline: none;
            border-color: var(--primary);
            box-shadow: 0 0 0 3px rgba(255, 107, 157, 0.1);
        }

        /* ===================================================
           ACCESSIBILITY & FOCUS STATES
           =================================================== */

        .product-card:focus-within {
            outline: none;
            box-shadow: 0 0 0 3px rgba(255, 107, 157, 0.3), var(--shadow-lg);
        }

        .product-action-btn:focus {
            outline: none;
            box-shadow: 0 0 0 3px rgba(255, 107, 157, 0.3), var(--shadow-md);
        }

        .view-all-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 40px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition-base);
    box-shadow: var(--shadow-md);
    text-decoration: none;
    display: inline-flex;
}
        /* ===================================================
           RESPONSIVE DESIGN
           =================================================== */

        @media (max-width: 768px) {
            .products-section {
                padding: 60px 0;
            }

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

            .section-subtitle {
                font-size: 1rem;
            }

            .product-grid {
                grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
                gap: 20px;
            }

            .product-image {
                height: 200px;
            }

            .products-toolbar {
                flex-direction: column;
                align-items: flex-start;
            }
        }

        @media (max-width: 480px) {
            .products-section {
                padding: 40px 0;
            }

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

            .product-grid {
                grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
                gap: 16px;
            }

            .product-image {
                height: 150px;
            }

            .product-name {
                font-size: 1rem;
            }

            .product-info {
                padding: 16px;
                gap: 8px;
            }

            .section-header {
                margin-bottom: 40px;
            }
        }

        /* ===================================================
           DARK MODE (Optional)
           =================================================== */

        @media (prefers-color-scheme: dark) {
            .products-section {
                background: linear-gradient(135deg, #1a1a1a 0%, #222 50%, #2a1a2a 100%);
            }

            .product-card {
                background: #2a2a2a;
            }

            .section-title {
                color: white;
            }

            .section-subtitle {
                color: #aaa;
            }

            .product-name {
                color: white;
            }

            .product-image {
                background: linear-gradient(135deg, #333 0%, #2a2a2a 100%);
            }

            .product-placeholder {
                background: linear-gradient(135deg, #333 0%, #2a2a2a 100%);
            }

            .product-card:hover .product-placeholder {
                background: linear-gradient(135deg, #3a3a3a 0%, #333 100%);
            }

            .product-price-section {
                border-top-color: #444;
            }
        }

        /* ===================================================
           ANIMATIONS ON SCROLL (Optional enhancement)
           =================================================== */

        @media (prefers-reduced-motion: reduce) {
            .product-card,
            .product-badge {
                animation: none;
            }

            .product-card:hover {
                transform: none;
            }

            .product-image img {
                transform: none !important;
            }
        }
.scrollup1 {
    overflow: hidden;
    position: fixed;
    height: 50px;
    width: 50px;
    line-height: 60px;
    bottom: 40px;
    right: 40px;
    text-align: center;
    z-index: 9999;
    background: 0 0;
    color: #fff;
    border: none;
}
  .nav-link.active {
    color: var(--accent) !important;
    font-weight: 600;
}