
         * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            background: linear-gradient(135deg, #0c0c0c 0%, #1a1a1a 25%, #2a2a2a 50%, #1a1a1a 75%, #0c0c0c 100%);
            color: #f0f0f0;
            line-height: 1.6;
            overflow-x: hidden;
            position: relative;
            font-family: 'Montserrat', sans-serif;
        }

        /* Subtle background texture */
        body::before {
            content: "";
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image: 
                radial-gradient(circle at 15% 50%, rgba(120, 120, 120, 0.03) 0%, transparent 25%),
                radial-gradient(circle at 85% 30%, rgba(120, 120, 120, 0.03) 0%, transparent 25%),
                radial-gradient(circle at 50% 80%, rgba(120, 120, 120, 0.03) 0%, transparent 25%);
            background-size: 50% 50%, 60% 60%, 70% 70%;
            z-index: -1;
        }

        /* Header */
        header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 1rem 5%;
            background-color: rgba(15, 15, 15, 0.85);
            box-shadow: 0 2px 15px rgba(0, 0, 0, 0.3);
            position: sticky;
            top: 0;
            z-index: 1000;
            backdrop-filter: blur(10px);
        }

        .logo h1 {
            font-size: 2.8rem;
            font-weight: 900;
            font-family: 'Playfair Display', serif;
            background: linear-gradient(45deg, #FFD700, #FF8C00, #FF1493, #00CED1);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            text-shadow: 0 0 20px rgba(255, 215, 0, 0.3);
            letter-spacing: 1px;
        }

        .logo span {
            font-family: 'Dancing Script', cursive;
            font-size: 3.2rem;
            background: linear-gradient(45deg, #FF8C00, #FF1493);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            text-shadow: 0 0 15px rgba(255, 20, 147, 0.4);
        }

        nav {
            transition: all 0.3s ease;
        }

        nav ul {
            display: flex;
            list-style: none;
        }

        nav ul li {
            margin-left: 2rem;
        }

        nav ul li a {
            text-decoration: none;
            color: #e0e0e0;
            font-weight: 600;
            font-family: 'Montserrat', sans-serif;
            transition: all 0.3s;
            position: relative;
            font-size: 1.1rem;
            letter-spacing: 0.5px;
        }

        nav ul li a::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background: linear-gradient(90deg, #FFD700, #FF8C00);
            transition: width 0.3s;
        }

        nav ul li a:hover {
            color: #FFD700;
        }

        nav ul li a:hover::after {
            width: 100%;
        }

        .menu-toggle {
            display: none;
            flex-direction: column;
            cursor: pointer;
            z-index: 1001;
        }

        .menu-toggle span {
            width: 25px;
            height: 3px;
            background: #e0e0e0;
            margin: 3px 0;
            transition: 0.3s;
        }

        .menu-toggle.active span:nth-child(1) {
            transform: rotate(-45deg) translate(-5px, 6px);
        }

        .menu-toggle.active span:nth-child(2) {
            opacity: 0;
        }

        .menu-toggle.active span:nth-child(3) {
            transform: rotate(45deg) translate(-5px, -6px);
        }

        /* Hero Section */
        .hero {
            position: relative;
            height: 80vh;
            overflow: hidden;
        }

        .hero-slides {
            display: flex;
            height: 100%;
            transition: transform 0.5s ease;
        }

        .hero-slide {
            min-width: 100%;
            height: 100%;
            background-size: cover;
            background-position: center;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            color: white;
            position: relative;
        }

        .hero-slide::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.6);
        }

        .slide-content {
            position: relative;
            z-index: 1;
            max-width: 700px;
            padding: 0 2rem;
        }

        .slide-content h2 {
            font-size: 4rem;
            margin-bottom: 1.5rem;
            text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
            font-family: 'Playfair Display', serif;
            font-weight: 700;
            color: #FFD700;
            letter-spacing: 1px;
        }

        .slide-content p {
            font-size: 1.4rem;
            margin-bottom: 2.5rem;
            text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.7);
            font-family: 'Montserrat', sans-serif;
            font-weight: 400;
            color: #f8f8f8;
            line-height: 1.8;
        }

        .shop-now-btn {
            display: inline-block;
            padding: 1rem 2.5rem;
            background: linear-gradient(45deg, #FF8C00, #FFD700);
            color: #1a1a1a;
            text-decoration: none;
            border-radius: 30px;
            font-weight: 700;
            font-family: 'Montserrat', sans-serif;
            transition: all 0.3s;
            box-shadow: 0 4px 15px rgba(255, 140, 0, 0.4);
            font-size: 1.1rem;
            letter-spacing: 1px;
        }

        .shop-now-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 6px 20px rgba(255, 140, 0, 0.6);
        }

        .hero-nav {
            position: absolute;
            bottom: 2rem;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
        }

        .hero-nav-btn {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background-color: rgba(255, 255, 255, 0.5);
            margin: 0 5px;
            cursor: pointer;
            transition: background-color 0.3s;
        }

        .hero-nav-btn.active {
            background-color: #FFD700;
        }

        /* Products Section */
        .showcase-section {
            padding: 5rem 5%;
            text-align: center;
            position: relative;
            overflow: hidden;
            background: rgba(20, 20, 20, 0.7);
            margin: 2rem 0;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
        }

        .section-title {
            font-size: 3.2rem;
            margin-bottom: 3rem;
            color: #FFD700;
            position: relative;
            display: inline-block;
            font-family: 'Playfair Display', serif;
            font-weight: 700;
            letter-spacing: 1px;
        }

        .section-title::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 3px;
            background: linear-gradient(90deg, #FFD700, #FF8C00);
        }

        .carousel-container {
            perspective: 1000px;
            margin: 0 auto;
            width: 300px;
            height: 300px;
        }

        .carousel {
            width: 100%;
            height: 100%;
            position: relative;
            transform-style: preserve-3d;
            animation: rotate 20s infinite linear;
        }

        @keyframes rotate {
            from {
                transform: rotateY(0deg);
            }
            to {
                transform: rotateY(360deg);
            }
        }

        .product {
            position: absolute;
            width: 200px;
            height: 250px;
            left: 50px;
            top: 25px;
            background: rgba(30, 30, 30, 0.9);
            border-radius: 10px;
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5);
            transition: all 0.5s;
            cursor: pointer;
            transform-origin: center;
            overflow: hidden;
            border: 1px solid rgba(255, 215, 0, 0.2);
        }

        .product:hover {
            transform: scale(1.05) rotateY(5deg);
            box-shadow: 0 12px 30px rgba(255, 215, 0, 0.3);
        }

        .product:nth-child(1) { transform: rotateY(0deg) translateZ(250px); }
        .product:nth-child(2) { transform: rotateY(72deg) translateZ(250px); }
        .product:nth-child(3) { transform: rotateY(144deg) translateZ(250px); }
        .product:nth-child(4) { transform: rotateY(216deg) translateZ(250px); }
        .product:nth-child(5) { transform: rotateY(288deg) translateZ(250px); }

        .product-img {
            width: 100%;
            height: 70%;
            object-fit: cover;
            border-radius: 10px 10px 0 0;
            transition: transform 0.5s;
        }

        .product:hover .product-img {
            transform: scale(1.1);
        }

        .product-info {
            padding: 1rem;
            text-align: center;
        }

        .product-title {
            font-size: 1.3rem;
            margin-bottom: 0.5rem;
            color: #FFD700;
            font-family: 'Montserrat', sans-serif;
            font-weight: 600;
            letter-spacing: 0.5px;
        }

        .carousel-controls {
            margin-top: 2rem;
            display: flex;
            justify-content: center;
            gap: 1rem;
        }

        .control-btn {
            background: linear-gradient(45deg, #FF8C00, #FFD700);
            color: #1a1a1a;
            border: none;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            cursor: pointer;
            transition: all 0.3s;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
            font-size: 1.2rem;
            font-weight: bold;
        }

        .control-btn:hover {
            transform: scale(1.1);
            box-shadow: 0 6px 15px rgba(255, 140, 0, 0.5);
        }

        .floating-elements {
            position: absolute;
            width: 100%;
            height: 100%;
            top: 0;
            left: 0;
            pointer-events: none;
        }

        .floating-element {
            position: absolute;
            width: 20px;
            height: 20px;
            background: #FFD700;
            border-radius: 50%;
            opacity: 0.2;
            animation: float 10s infinite linear;
        }

        .floating-element:nth-child(1) {
            top: 10%;
            left: 10%;
            animation-delay: 0s;
        }

        .floating-element:nth-child(2) {
            top: 60%;
            left: 80%;
            animation-delay: 3s;
        }

        .floating-element:nth-child(3) {
            top: 30%;
            left: 70%;
            animation-delay: 6s;
        }

        @keyframes float {
            0%, 100% {
                transform: translateY(0) translateX(0);
            }
            25% {
                transform: translateY(-20px) translateX(10px);
            }
            50% {
                transform: translateY(0) translateX(20px);
            }
            75% {
                transform: translateY(20px) translateX(10px);
            }
        }

        /* About Section */
        .about-section {
            padding: 5rem 5%;
            background: rgba(20, 20, 20, 0.7);
            margin: 2rem 0;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
        }

        .about-content {
            display: flex;
            align-items: center;
            gap: 3rem;
            max-width: 1200px;
            margin: 0 auto;
        }

        .about-image {
            flex: 1;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
        }

        .about-image img {
            width: 100%;
            transition: transform 0.5s;
        }

        .about-image:hover img {
            transform: scale(1.05);
        }

        .about-text {
            flex: 1;
        }

        .about-text p {
            margin-bottom: 1.5rem;
            font-size: 1.2rem;
            line-height: 1.8;
            color: #e8e8e8;
            font-family: 'Montserrat', sans-serif;
            font-weight: 400;
        }

        /* Contact Section */
        .contact-section {
            padding: 5rem 5%;
            background: rgba(20, 20, 20, 0.7);
            margin: 2rem 0;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
        }

        .contact-form {
            max-width: 600px;
            margin: 0 auto;
        }

        .form-group {
            margin-bottom: 1.5rem;
        }

        .form-group label {
            display: block;
            margin-bottom: 0.5rem;
            font-weight: 600;
            color: #FFD700;
            font-family: 'Montserrat', sans-serif;
            font-size: 1.1rem;
        }

        .form-group input,
        .form-group textarea {
            width: 100%;
            padding: 1rem;
            border: 1px solid #444;
            border-radius: 8px;
            font-size: 1rem;
            background: rgba(40, 40, 40, 0.8);
            color: #f0f0f0;
            transition: all 0.3s;
            font-family: 'Montserrat', sans-serif;
        }

        .form-group input:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: #FFD700;
            box-shadow: 0 0 0 2px rgba(255, 215, 0, 0.2);
        }

        .form-group textarea {
            height: 150px;
            resize: vertical;
        }

        .submit-btn {
            background: linear-gradient(45deg, #FF8C00, #FFD700);
            color: #1a1a1a;
            border: none;
            padding: 1rem 2.5rem;
            border-radius: 30px;
            font-size: 1.1rem;
            cursor: pointer;
            transition: all 0.3s;
            box-shadow: 0 4px 15px rgba(255, 140, 0, 0.4);
            font-family: 'Montserrat', sans-serif;
            font-weight: 700;
            letter-spacing: 1px;
        }

        .submit-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 6px 20px rgba(255, 140, 0, 0.6);
        }

        /* WhatsApp Button */
        .whatsapp-float {
            position: fixed;
            bottom: 2rem;
            right: 2rem;
            width: 70px;
            height: 70px;
            background: linear-gradient(45deg, #25D366, #128C7E);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.8rem;
            box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
            z-index: 100;
            transition: all 0.3s;
        }

        .whatsapp-float:hover {
            transform: scale(1.1);
            box-shadow: 0 6px 25px rgba(37, 211, 102, 0.6);
        }

        /* Footer */
        footer {
            background-color: rgba(15, 15, 15, 0.9);
            color: #e0e0e0;
            text-align: center;
            padding: 2rem;
            margin-top: 3rem;
            border-top: 1px solid rgba(255, 215, 0, 0.2);
        }

        .social-icons {
            margin-bottom: 1rem;
        }

        .social-icons a {
            color: #e0e0e0;
            margin: 0 0.5rem;
            font-size: 1.8rem;
            transition: all 0.3s;
        }

        .social-icons a:hover {
            color: #FFD700;
            transform: translateY(-3px);
        }

        .footer-text {
            font-family: 'Montserrat', sans-serif;
            font-size: 1rem;
            color: #b0b0b0;
        }

        /* Product Modal */
        .product-modal {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.85);
            z-index: 2000;
            align-items: center;
            justify-content: center;
            padding: 1rem;
        }

        .product-modal-content {
            background: rgba(30, 30, 30, 0.95);
            width: 90%;
            max-width: 800px;
            border-radius: 15px;
            overflow: hidden;
            position: relative;
            max-height: 90vh;
            overflow-y: auto;
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5);
            border: 1px solid rgba(255, 215, 0, 0.3);
        }

        .close-product {
            position: absolute;
            top: 1rem;
            right: 1rem;
            background: rgba(0, 0, 0, 0.5);
            border: none;
            font-size: 2rem;
            color: #FFD700;
            cursor: pointer;
            z-index: 10;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s;
            font-family: 'Montserrat', sans-serif;
            font-weight: bold;
        }

        .close-product:hover {
            background: rgba(255, 215, 0, 0.8);
            transform: scale(1.1);
            color: #1a1a1a;
        }

        .product-modal-body {
            display: flex;
            flex-direction: column;
        }

        .product-modal-image {
            width: 100%;
            height: 300px;
        }

        .product-modal-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .product-modal-info {
            padding: 2rem;
        }

        .product-modal-title {
            font-size: 2.2rem;
            margin-bottom: 1rem;
            color: #FFD700;
            font-family: 'Playfair Display', serif;
            font-weight: 700;
        }

        .product-modal-description {
            line-height: 1.6;
            font-size: 1.1rem;
            color: #e8e8e8;
            font-family: 'Montserrat', sans-serif;
        }

        /* Form Success Message */
        .form-success {
            display: none;
            background-color: rgba(76, 175, 80, 0.2);
            color: #4CAF50;
            padding: 1rem;
            border-radius: 5px;
            margin-bottom: 1rem;
            text-align: center;
            border: 1px solid rgba(76, 175, 80, 0.3);
            font-family: 'Montserrat', sans-serif;
            font-weight: 600;
        }

        .form-error {
            display: none;
            background-color: rgba(244, 67, 54, 0.2);
            color: #f44336;
            padding: 1rem;
            border-radius: 5px;
            margin-bottom: 1rem;
            text-align: center;
            border: 1px solid rgba(244, 67, 54, 0.3);
            font-family: 'Montserrat', sans-serif;
            font-weight: 600;
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .menu-toggle {
                display: flex;
            }

            nav {
                position: fixed;
                top: 0;
                left: 0;
                width: 100%;
                height: 100vh;
                background: rgba(15, 15, 15, 0.95);
                flex-direction: column;
                justify-content: center;
                align-items: center;
                transform: translateX(-100%);
                transition: transform 0.3s ease;
                z-index: 999;
                backdrop-filter: blur(10px);
            }

            nav.active {
                transform: translateX(0);
            }

            nav ul {
                flex-direction: column;
                align-items: center;
            }

            nav ul li {
                margin: 1.5rem 0;
            }

            nav ul li a {
                font-size: 1.3rem;
            }

            .about-content {
                flex-direction: column;
            }

            .slide-content h2 {
                font-size: 2.5rem;
            }

            .slide-content p {
                font-size: 1.2rem;
            }

            .carousel-container {
                width: 250px;
                height: 250px;
            }

            .product {
                width: 180px;
                height: 220px;
                left: 35px;
            }

            .product:nth-child(1) { transform: rotateY(0deg) translateZ(200px); }
            .product:nth-child(2) { transform: rotateY(72deg) translateZ(200px); }
            .product:nth-child(3) { transform: rotateY(144deg) translateZ(200px); }
            .product:nth-child(4) { transform: rotateY(216deg) translateZ(200px); }
            .product:nth-child(5) { transform: rotateY(288deg) translateZ(200px); }

            .logo h1 {
                font-size: 2.2rem;
            }

            .logo span {
                font-size: 2.5rem;
            }

            .section-title {
                font-size: 2.5rem;
            }
        }

        @media (min-width: 769px) {
            .product-modal-body {
                flex-direction: row;
            }

            .product-modal-image {
                width: 50%;
                height: auto;
            }

            .product-modal-info {
                width: 50%;
            }
        }

        .product-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    z-index: 2000;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.product-modal-content {
    background: rgba(30, 30, 30, 0.95);
    width: 90%;
    max-width: 800px;
    border-radius: 15px;
    overflow: hidden;
    position: relative;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 215, 0, 0.3);
}

.close-product {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: rgba(0, 0, 0, 0.5);
    border: none;
    font-size: 2rem;
    color: #FFD700;
    cursor: pointer;
    z-index: 10;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    font-family: 'Montserrat', sans-serif;
    font-weight: bold;
}

.close-product:hover {
    background: rgba(255, 215, 0, 0.8);
    transform: scale(1.1);
    color: #1a1a1a;
}

.product-modal-body {
    display: flex;
    flex-direction: column;
}

.product-modal-image {
    width: 100%;
    height: 300px;
}

.product-modal-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-modal-info {
    padding: 2rem;
    text-align: center;
}

.product-modal-title {
    font-size: 2.2rem;
    margin-bottom: 1rem;
    color: #FFD700;
    font-family: 'Playfair Display', serif;
    font-weight: 700;
}

.product-modal-description {
    line-height: 1.6;
    font-size: 1.1rem;
    color: #e8e8e8;
    font-family: 'Montserrat', sans-serif;
    margin-bottom: 2rem;
}

/* Responsive modal */
@media (min-width: 769px) {
    .product-modal-body {
        flex-direction: colu;
    }
    
    .product-modal-image {
        width: 50%;
        height: auto;
        min-height: 400px;
    }
    
    .product-modal-info {
        width: 50%;
        display: flex;
        flex-direction: column;
        justify-content: center;
        text-align: left;
    }
}.product-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    z-index: 2000;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.product-modal-content {
    background: rgba(30, 30, 30, 0.95);
    width: 90%;
    max-width: 800px;
    border-radius: 15px;
    overflow: hidden;
    position: relative;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 215, 0, 0.3);
}

.close-product {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: rgba(0, 0, 0, 0.5);
    border: none;
    font-size: 2rem;
    color: #FFD700;
    cursor: pointer;
    z-index: 10;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    font-family: 'Montserrat', sans-serif;
    font-weight: bold;
}

.close-product:hover {
    background: rgba(255, 215, 0, 0.8);
    transform: scale(1.1);
    color: #1a1a1a;
}

.product-modal-body {
    display: flex;
    flex-direction: column;
}

.product-modal-image {
    width: 100%;
    height: 300px;
}

.product-modal-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-modal-info {
    padding: 2rem;
    text-align: center;
}

.product-modal-title {
    font-size: 2.2rem;
    margin-bottom: 1rem;
    color: #FFD700;
    font-family: 'Playfair Display', serif;
    font-weight: 700;
}

.product-modal-description {
    line-height: 1.6;
    font-size: 1.1rem;
    color: #e8e8e8;
    font-family: 'Montserrat', sans-serif;
    margin-bottom: 2rem;
}

/* Responsive modal */
@media (min-width: 769px) {
    .product-modal-body {
        flex-direction: column;
    }
    
    .product-modal-image {
        width: 100%;
        height: auto;
        height: 250px;
    }
    
    .product-modal-info {
        width: 100%;
        display: flex;
        flex-direction: column;
        justify-content: center;
        text-align: center;
    }
    
    .product-modal-content {
        width: 95% !important;
        margin: 1rem !important;
    }
}
   


