* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Arial', sans-serif;
        }
        html {
           scroll-behavior: smooth;
         }

        body {
            background-color: #FDF5E6;
            overflow-x: hidden;
        }

        /* ==================== HEADER & NAVBAR ==================== */
        .navbar {
            background: linear-gradient(135deg, #FDF5E6 0%, #A86444 100%);
            padding: 15px 20px;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        }

        .nav-container {
            max-width: 1400px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 15px;
        }


        .logo-wrap {
        
        
        border-radius: 45px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        

         
        }

         .logo-wrap img {
           height: 55px;
           width: auto;
           border-color: #A86444;
           border-radius: 15px;
    
          }


       


        .search-container {
            flex: 1;
            max-width: 550px;
            min-width: 250px;
            display: flex;
            background-color: #e40a0a;
            border-radius: 6px;
            overflow: hidden;
            box-shadow: 0 2px 8px rgba(0,0,0,0.2);
        }

        .select-search {
            background-color: #A86444;
            border: none;
            padding: 0 10px;
            font-size: 14px;
            cursor: pointer;
            outline: none;
        }

        .search-input {
            flex: 1;
            border: none;
            padding: 12px 15px;
            font-size: 14px;
            outline: none;
        }

        .search-icon {
            background-color: #A86444;
            color: white;
            padding: 12px 20px;
            cursor: pointer;
            transition: background-color 0.3s;
        }

        .search-icon:hover {
            background-color: #FDF5E6;
        }

        .nav-links {
            display: flex;
            gap: 30px;
            align-items: center;
        }

        .nav-links a {
            color: white;
            text-decoration: none;
            font-size: 16px;
            font-weight: 600;
            transition: transform 0.3s, color 0.3s;
            position: relative;
        }

        .nav-links a::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: -5px;
            left: 0;
            background-color: white;
            transition: width 0.3s;
        }

        .nav-links a:hover::after {
            width: 100%;
        }

        .nav-links a:hover {
            transform: translateY(-2px);
        }

        /* ==================== HERO SECTION ==================== */
/* Main Container */
.hero {
    width: 100%;
    position: relative;
    background-image: url('/pic/hero.jpg');
    background-repeat: no-repeat;
    /* 'contain' makes sure 100% of the image fits inside the box */
    background-size: contain; 
    background-position: center top;
    /* This ensures the container height matches your image shape */
    height: 0;
    padding-bottom:30.25%; /* Use 56.25% for a 16:9 image or 100% for a square */
    display: block;
}

/* Content Wrapper */
.hero-content {
    width: 90%; /* Leaves a small margin on mobile screens */
    max-width: 1200px;
    text-align: center;
    z-index: 2;
    padding: 20px;
}

/* Mobile Specific Fix */
@media (max-width: 700px) {
    .hero {
        background-size: contain; /* Forces the image to not crop */
        padding-bottom: 25%;
    }
    
    .hero-content {
        padding: 60px 10px; /* Gives text room to breathe */
    }
}
        .scroll-indicator {
            position: absolute;
            bottom: 15px;
            right: 15px;
            background-color: white;
            border-radius: 50px;
            padding: 8px 20px;
            font-size: 12px;
            color: #333;
            cursor: pointer;
            box-shadow: 0 2px 8px rgba(0,0,0,0.2);
            z-index: 3;
        }

        /* ==================== CATEGORY BAR ==================== */
        .category-bar {
            background: linear-gradient(135deg, #FDF5E6 0%, #A86444 100%);
            padding: 20px 15px;
            display: flex;
            justify-content: center;
            gap: 40px;
            flex-wrap: wrap;
            box-shadow: 0 2px 5px rgba(0,0,0,0.1);
        }

        .category-bar a {
            color: white;
            text-decoration: none;
            font-size: 16px;
            font-weight: 600;
            padding: 8px 20px;
            border-radius: 25px;
            transition: all 0.3s;
            position: relative;
        }

        .category-bar a:hover {
            background-color: rgba(255,255,255,0.3);
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(0,0,0,0.2);
        }

        /* ==================== PRODUCTS SECTION ==================== */
        .products-section {
            background: linear-gradient(to bottom,#FDF5E6 0%, #A86444 100%);
            padding: 40px 20px;
            min-height: 600px;
        }

        .products-container {
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 25px;
            padding: 20px 0;
        }

        .product-card {
            background-color: white;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 4px 15px rgba(0,0,0,0.1);
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            cursor: pointer;
            position: relative;
        }

        .product-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 12px 30px rgba(0,0,0,0.2);
        }

        .product-image {
            width: 100%;
            height: 300px;
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
            position: relative;
            overflow: hidden;
        }

        .product-card:hover .product-image {
            transform: scale(1.05);
            transition: transform 0.5s;
        }

        .product-badge {
            position: absolute;
            top: 10px;
            right: 10px;
            background-color: #ff6b9d;
            color: white;
            padding: 5px 15px;
            border-radius: 20px;
            font-size: 12px;
            font-weight: bold;
        }

        .product-info {
            padding: 20px;
            text-align: center;
        }

        .product-info h3 {
            font-size: 14px;
            color: #A86444;
            margin-bottom: 10px;
            font-weight: 700;
            line-height: 1.5;
            min-height: 42px;
        }

        .product-price {
            font-size: 18px;
            color: #333;
            font-weight: bold;
            margin-bottom: 10px;
        }

        .add-to-cart {
            background-color: #A86444;
            color: white;
            border: none;
            padding: 10px 25px;
            border-radius: 25px;
            cursor: pointer;
            font-size: 14px;
            font-weight: 600;
            transition: all 0.3s;
            margin-top: 10px;
        }

        .add-to-cart:hover {
            background-color:#A86444;
            transform: scale(1.05);
        }

        /* ==================== NEWSLETTER SECTION ==================== */
        .newsletter-section {
            background-color: #FDF5E6;
            padding: 60px 20px;
            text-align: center;
        }

        .newsletter-section h2 {
            font-size: 18px;
            letter-spacing: 4px;
            color: #333;
            margin-bottom: 20px;
            font-weight: 600;
        }

        .newsletter-section p {
            color: #666;
            font-size: 14px;
            line-height: 1.8;
            margin-bottom: 30px;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }

        .newsletter-form {
            display: flex;
            justify-content: center;
            align-items: stretch;
            max-width: 500px;
            margin: 0 auto;
            box-shadow: 0 4px 15px rgba(0,0,0,0.1);
            border-radius: 6px;
            overflow: hidden;
        }

        .newsletter-form input {
            flex: 1;
            padding: 15px 20px;
            border: 1px solid #ddd;
            border-right: none;
            font-size: 14px;
            outline: none;
        }

        .newsletter-form button {
            padding: 15px 35px;
            background: linear-gradient(135deg, #FDF5E6 0%, #A86444 100%);
            color: white;
            border: none;
            cursor: pointer;
            font-size: 14px;
            font-weight: 700;
            letter-spacing: 2px;
            transition: all 0.3s;
        }

        .newsletter-form button:hover {
            background: linear-gradient(135deg, #FDF5E6 0%, #A86444 100%);
            transform: scale(1.02);
        }

        /* ==================== FOOTER ==================== */
        .footer {
            background-color: #2c2c2c;
            color: #fff;
            padding: 50px 20px 20px;
        }

        .footer-content {
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-bottom: 40px;
        }

        .footer-column h3 {
            font-size: 14px;
            letter-spacing: 3px;
            margin-bottom: 20px;
            font-weight: 700;
            color:#FDF5E6;
        }

        .footer-column ul {
            list-style: none;
        }

        .footer-column ul li {
            margin-bottom: 12px;
        }

        .footer-column ul li a {
            color: #ccc;
            text-decoration: none;
            font-size: 14px;
            transition: all 0.3s;
            display: inline-block;
        }

        .footer-column ul li a:hover {
            color: #FDF5E6;
            padding-left: 5px;
        }

        .footer-column p {
            color:#FDF5E6;
            font-size: 14px;
            line-height: 1.8;
            margin-bottom: 10px;
        }

        .footer-bottom {
            border-top: 1px solid #444;
            padding-top: 25px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 20px;
            max-width: 1400px;
            margin: 0 auto;
            font-size: 12px;
            color: #FDF5E6;
        }

        .footer-links {
            display: flex;
            gap: 20px;
            flex-wrap: wrap;
        }

        .footer-links a {
            color: #999;
            text-decoration: none;
            text-transform: uppercase;
            letter-spacing: 1px;
            font-size: 11px;
            transition: color 0.3s;
        }

        .footer-links a:hover {
            color: #FDF5E6;
        }

        .social-icons {
            display: flex;
            gap: 15px;
        }

        .social-icons a {
            color: #ccc;
            font-size: 20px;
            transition: all 0.3s;
        }

        .social-icons a:hover {
            color: #FDF5E6;
            transform: translateY(-3px);
        }

        /* ==================== WHATSAPP FLOAT ==================== */
        .whatsapp-float {
          position: fixed !important;
          bottom: 30px !important;
           right: 30px !important;
          width: 60px !important;
         height: 60px !important;
         background-color: #25d366 !important;
          color: #FFF !important;
        border-radius: 50px !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        font-size: 30px !important;
        box-shadow: 2px 2px 15px rgba(0,0,0,0.2) !important;
        z-index: 999999 !important; /* Forces it above your pink background */
        text-decoration: none !important;
     }
        .whatsapp-float i {
          font-size: 35px; /* Adjust this to make the logo bigger or smaller */
          }

        .whatsapp-float:hover {
            background-color: #128c7e;
            transform: scale(1.1);
        }

        @keyframes pulse {
            0%, 100% {
                box-shadow: 0 4px 20px rgba(37, 211, 102, 0.5);
            }
            50% {
                box-shadow: 0 4px 30px rgba(37, 211, 102, 0.8);
            }
        }

        .chat-tooltip {
            position: absolute;
            right: 75px;
            top: 50%;
            transform: translateY(-50%);
            background-color: white;
            color: #333;
            padding: 8px 15px;
            border-radius: 8px;
            font-size: 13px;
            white-space: nowrap;
            box-shadow: 0 2px 10px rgba(0,0,0,0.2);
            opacity: 0;
            pointer-events: none;
            transition: opacity 0.3s;
        }

        .whatsapp-float:hover .chat-tooltip {
            opacity: 1;
        }

        /* ==================== MOBILE RESPONSIVE ==================== */
        @media (max-width: 1024px) {
            .products-container {
                grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            }
        }

        @media (max-width: 768px) {
            .nav-container {
                flex-direction: column;
                align-items: stretch;
            }

            .logo {
                font-size: 1.5rem;
                text-align: center;
            }

            .search-container {
                max-width: 100%;
               
            }

            .nav-links {
                justify-content: center;
                gap: 20px;
                width: 100%;
            }
            .hero-content {
                flex-direction: column-reverse; /* Puts image above text on mobile */
                padding: 20px;
        }

            .category-bar {
                gap: 15px;
            }

            .products-container {
                grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
                gap: 15px;
            }

            .product-image {
                height: 250px;
            }

            .newsletter-form {
                flex-direction: column;
                border-radius: 6px;
            }

            .newsletter-form input {
                border-right: 1px solid #ddd;
                border-bottom: none;
            }

            .newsletter-form button {
                width: 100%;
            }

            .footer-content {
                grid-template-columns: 1fr;
                gap: 30px;
            }

            .footer-bottom {
                flex-direction: column;
                text-align: center;
            }

            .footer-links {
                justify-content: center;
                gap: 10px;
            }

            .whatsapp-float {
                width: 55px;
                height: 55px;
                font-size: 26px;
                bottom: 20px;
                right: 20px;
            }

            .chat-tooltip {
                display: none;
            }
        }

        @media (max-width: 480px) {
            .logo {
                font-size: 1.3rem;
            }

            .nav-links {
                flex-direction: row;
                gap: 20px;
            }

            .nav-links a {
                font-size: 14px;
            }

            .hero {
                height: 180px;
            }

            .hero-content h1 {
                font-size: 1.5rem;
            }

            .hero-content p {
                font-size: 0.9rem;
            }

            .category-bar {
                gap: 10px;
                padding: 15px 10px;
            }

            .category-bar a {
                font-size: 14px;
                padding: 6px 15px;
            }

            .products-container {
                grid-template-columns: 1fr;
                padding: 10px 0;
            }

            .product-card {
                margin: 0 10px;
            }

            .product-image {
                height: 280px;
            }

            .newsletter-section {
                padding: 40px 15px;
            }

            .newsletter-section h2 {
                font-size: 14px;
                letter-spacing: 2px;
            }

            .footer {
                padding: 30px 15px 15px;
            }

            .social-icons {
                justify-content: center;
            }
        }

    

        .dev-signature a {
    color:  #ff4d4d; /* Use your brand gold color */
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s;
}

.dev-signature a:hover {
    color: #fff;
    text-decoration: underline;
}

.heart {
    color: #ff4d4d;
    display: inline-block;
    animation: heartbeat 1.5s infinite;
}

@keyframes heartbeat {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(8px); /* Professional blur effect */
    display: none; /* Hidden by default */
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.popup-content {
    background: #fff;
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    max-width: 400px;
    transform: scale(0.7);
    transition: 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.popup-overlay.active { display: flex; }
.popup-overlay.active .popup-content { transform: scale(1); }

.check-icon {
    width: 70px;
    height: 70px;
    background: #BFA37E; /* Brand Gold */
    color: white;
    font-size: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin: 0 auto 20px;
}

.popup-content h3 { font-family: 'Playfair Display', serif; font-size: 1.8rem; color: #333; }
.popup-content p { color: #777; margin: 15px 0 25px; line-height: 1.5; }

.popup-btn {
    background: #333;
    color: white;
    border: none;
    padding: 12px 40px;
    border-radius: 50px;
    cursor: pointer;
    font-weight: 600;
    transition: 0.3s;
}

.popup-btn:hover { background: #BFA37E; transform: translateY(-3px); }

.no-products-message {
    grid-column: 1 / -1; /* Makes the message span the whole width of the grid */
    text-align: center;
    padding: 60px 20px;
    background: #fdfaf6;
    border-radius: 15px;
    border: 1px dashed #BFA37E;
    margin-top: 20px;
}

.no-products-message i {
    font-size: 3rem;
    color: #BFA37E;
    margin-bottom: 20px;
}

.no-products-message h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.no-products-message p {
    color: #777;
    margin-bottom: 25px;
}

.reset-btn {
    background: #333;
    color: white;
    border: none;
    padding: 10px 25px;
    border-radius: 5px;
    cursor: pointer;
    transition: 0.3s;
}

.reset-btn:hover {
    background: #BFA37E;
}