* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Arial', sans-serif;
        }

        body {
            background-color: #fff;
            overflow-x: hidden;
        }

        /* ==================== HEADER & NAVBAR ==================== */
        .navbar {
            background: linear-gradient(135deg, #ffb6c1 0%, #ffc0cb 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 {
        background: rgba(255, 255, 255, 0.7); /* soft white card */
        padding: 12px 18px;
        border-radius: 14px;

        display: inline-flex;
        align-items: center;
        justify-content: center;

         box-shadow: 0 6px 20px rgba(0,0,0,0.08);
        }

         .logo-wrap img {
    height: 55px;
    width: auto;
    
          }


       


        .search-container {
            flex: 1;
            max-width: 550px;
            min-width: 250px;
            display: flex;
            background-color: #333;
            border-radius: 6px;
            overflow: hidden;
            box-shadow: 0 2px 8px rgba(0,0,0,0.2);
        }

        .select-search {
            background-color: #f5f5f5;
            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: #ff9933;
            color: white;
            padding: 12px 20px;
            cursor: pointer;
            transition: background-color 0.3s;
        }

        .search-icon:hover {
            background-color: #ff7700;
        }

        .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 ==================== */
        .hero {
            width: 100%;
            height: 400px;
            background-image: url('hero4.png');
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
            position: relative;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .hero-content {
            text-align: center;
            color: white;
            z-index: 2;
        }

        .hero-content h1 {
            font-size: 3.5rem;
            margin-bottom: 15px;
            text-shadow: 3px 3px 6px rgba(0,0,0,0.5);
        }

        .hero-content p {
            font-size: 1.3rem;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
        }

        .hero-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0,0,0,0.3);
        }

        .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, #ffb6c1 0%, #ffc0cb 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, #ffe6f0 0%, #ffc0cb 50%, #ffb6c1 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: #ff69b4;
            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: #ff69b4;
            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: #ff1493;
            transform: scale(1.05);
        }

        /* ==================== NEWSLETTER SECTION ==================== */
        .newsletter-section {
            background-color: #f8f8f8;
            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, #ff69b4 0%, #ff1493 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, #ff1493 0%, #c71585 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: #ffb6c1;
        }

        .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: #ffb6c1;
            padding-left: 5px;
        }

        .footer-column p {
            color: #ccc;
            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: #999;
        }

        .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: #ffb6c1;
        }

        .social-icons {
            display: flex;
            gap: 15px;
        }

        .social-icons a {
            color: #ccc;
            font-size: 20px;
            transition: all 0.3s;
        }

        .social-icons a:hover {
            color: #ffb6c1;
            transform: translateY(-3px);
        }

        /* ==================== WHATSAPP FLOAT ==================== */
        .whatsapp-float {
            position: fixed;
            bottom: 25px;
            right: 25px;
            background-color: #25d366;
            color: white;
            border-radius: 50%;
            width: 65px;
            height: 65px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 32px;
            box-shadow: 0 4px 20px rgba(37, 211, 102, 0.5);
            cursor: pointer;
            z-index: 1000;
            transition: all 0.3s;
            animation: pulse 2s infinite;
        }

        .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 {
                height: 250px;
            }

            .hero-content h1 {
                font-size: 2rem;
            }

            .hero-content p {
                font-size: 1rem;
            }

            .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: column;
                gap: 10px;
            }

            .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;
            }
        }

        @media (max-width: 360px) {
            .logo {
                font-size: 1.1rem;
            }

            .search-input {
                font-size: 12px;
            }

            .hero-content h1 {
                font-size: 1.2rem;
            }

            .product-image {
                height: 250px;
            }
        }