
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Georgia', serif;
            color: #4a4a4a;
            line-height: 1.6;
            overflow-x: hidden;
        }

        /* Futuristic Header */
        header {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            padding: 20px 0;
        }
        @media (max-width: 768px) {
            header {
                padding: 0;
            }
        }

        .header-glass {
            max-width: 95%;
            margin: 20px auto;
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(30px);
            -webkit-backdrop-filter: blur(30px);
            border: 1px solid rgba(255, 255, 255, 0.3);
            border-radius: 50px;
            box-shadow: 0 8px 32px rgba(160, 80, 96, 0.1),
                        inset 0 1px 0 rgba(255, 255, 255, 0.5);
            padding: 15px 40px;
        }

        nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo-container {
            display: flex;
            align-items: center;
            gap: 15px;
        }


        .logo-text {
            font-size: 26px;
            font-weight: 700;
            background: linear-gradient(135deg, #a05060 0%, #c06878 50%, #a05060 100%);
            background-size: 200% 200%;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            animation: gradientShift 4s ease infinite;
            letter-spacing: 1px;
        }

        @keyframes gradientShift {
            0%, 100% { background-position: 0% 50%; }
            50% { background-position: 100% 50%; }
        }

        .nav-menu {
            display: flex;
            list-style: none;
            align-items: center;
            background: rgba(255, 255, 255, 0.4);
            border-radius: 40px;
            backdrop-filter: blur(10px);
        }

        .nav-menu li{
            padding: 10px 20px;
        }
            .nav-menu li a {
            display: block;
            padding: 10px 20px;
            color: #ab7878;
            text-decoration: none;
            font-size: 15px;
            font-weight: 600;
            border-radius: 30px;
            transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            position: relative;
            font-family: 'Arial', sans-serif;
        }

        .nav-menu li a::before {
            background: linear-gradient(135deg, #ebc8e0 0%, #e5e1e4 100%);
            color: #585457;
            padding: 14px 35px;
            border-radius: 30px;
            text-decoration: none;
            font-weight: 600;
            font-size: 15px;
            display: flex;
            align-items: center;
            gap: 10px;
            box-shadow: 0 8px 25px rgba(160, 80, 96, 0.4);
            transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            position: relative;
            overflow: hidden;
            font-family: 'Arial', sans-serif;
        }

        .nav-menu li a span {
            position: relative;
            z-index: 1;
        }

        .nav-menu li a:hover::before {
            opacity: 1;
        }

        .nav-menu li a:hover span {
            color: #ab7878;
        }

        .nav-menu li a:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 20px rgba(160, 80, 96, 0.3);
        }
        
.nav-menu li a.active {
    background: linear-gradient(135deg, #ebc8e0 0%, #e5e1e4 100%);
    color: #ab7878 !important;
    border-radius: 30px;
    box-shadow: 0 8px 25px rgba(160, 80, 96, 0.4);
}

        .cta-btn {
            background: linear-gradient(135deg, #ebc8e0 0%, #e5e1e4 100%);
            color: #585457;
            padding: 14px 35px;
            border-radius: 30px;
            text-decoration: none;
            font-weight: 600;
            font-size: 15px;
            display: flex;
            align-items: center;
            gap: 10px;
            box-shadow: 0 8px 25px rgba(160, 80, 96, 0.4);
            transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            position: relative;
            overflow: hidden;
            font-family: 'Arial', sans-serif;
        }

        .cta-btn::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
            transition: left 0.6s;
        }

        .cta-btn:hover::before {
            left: 100%;
        }

        .cta-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 12px 35px rgba(160, 80, 96, 0.5);
        }

        .cta-btn-text {
            position: relative;
            z-index: 1;
        }

        .particles {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            overflow: hidden;
            pointer-events: none;
            border-radius: 50px;
        }

        .particle {
            position: absolute;
            width: 4px;
            height: 4px;
            background: radial-gradient(circle, rgba(160, 80, 96, 0.6), transparent);
            border-radius: 50%;
            animation: float 8s infinite;
        }

        .particle:nth-child(1) { left: 10%; animation-delay: 0s; animation-duration: 6s; }
        .particle:nth-child(2) { left: 30%; animation-delay: 2s; animation-duration: 8s; }
        .particle:nth-child(3) { left: 50%; animation-delay: 1s; animation-duration: 7s; }
        .particle:nth-child(4) { left: 70%; animation-delay: 3s; animation-duration: 9s; }
        .particle:nth-child(5) { left: 90%; animation-delay: 1.5s; animation-duration: 6.5s; }

        @keyframes float {
            0% {
                transform: translateY(100px) scale(0);
                opacity: 0;
            }
            50% {
                opacity: 1;
            }
            100% {
                transform: translateY(-100px) scale(1);
                opacity: 0;
            }
        }

        /* Main Banner */
        .banner {
            background:#fff;
            padding: 0 40px 0 40px;
            position: relative;
            overflow: hidden;
        }

        .banner::before {
            content: '';
            position: absolute;
            width: 400px;
            height: 400px;
            background: radial-gradient(circle, rgba(160, 80, 96, 0.08) 0%, transparent 70%);
            border-radius: 50%;
            top: -100px;
            right: -100px;
        }

        .banner-content {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
            margin-top: 200px;
        }

        .banner-text h1 {
            font-size: 56px;
            color: #9e6e8d;
            margin-bottom: 20px;
            line-height: 1.2;
        }

        .banner-text p {
            font-size: 18px;
            color: #9e6e8d;
            margin-bottom: 30px;
            line-height: 1.8;
        }

        .cta-button {
            background:#9e6e8d;
            color: white;
            padding: 16px 40px;
            border: none;
            border-radius: 30px;
            font-size: 16px;
            cursor: pointer;
            transition: transform 0.3s, box-shadow 0.3s;
            display: inline-block;
            text-decoration: none;
        }

        .cta-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 25px rgba(160, 80, 96, 0.3);
        }

        .banner-image {
            text-align: center;
            position: relative;
        }

        .product-showcase {
            width: 100%;
            max-width: 500px;
            height: 470px;
            border-radius: 20px;
            box-shadow: 0 20px 60px rgba(160, 80, 96, 0.15);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 24px;
            color: #9e6e8d;
            position: relative;
            overflow: hidden;
        }
        .desktop500-mobile325{
            width: 500px;
        }
        @media (max-width: 768px) {
            .desktop500-mobile325{
                width: 350px !important;
        }
        .product-showcase{
            height: 325px;
            }
        }

        .section-title {
            text-align: center;
            font-size: 42px;
            color: #9e6e8d;
            margin-bottom: 60px;
        }

        /* Testimonials Section */
        .testimonials {
            padding: 100px 40px;
            background: #fff;
        }

        .testimonial-grid {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 40px;
        }

        .testimonial-card {
            background: white;
            padding: 40px;
            border-radius: 20px;
            box-shadow: 0 10px 30px rgba(160, 80, 96, 0.1);
            position: relative;
        }

        .testimonial-card::before {
            content: '"';
            position: absolute;
            top: 20px;
            left: 30px;
            font-size: 80px;
            color: rgba(160, 80, 96, 0.1);
            font-family: Georgia, serif;
        }

        .testimonial-text {
            font-size: 16px;
            color: #6a5a5a;
            margin-bottom: 25px;
            font-style: italic;
            position: relative;
            z-index: 1;
        }

        .testimonial-author {
            display: flex;
            align-items: center;
            gap: 15px;
        }

        .author-avatar {
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, #a05060 0%, #c06878 100%);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 24px;
            font-weight: bold;
        }

        .author-info h4 {
            color: #a05060;
            font-size: 18px;
            margin-bottom: 5px;
        }

        .stars {
            color: #ffc107;
            font-size: 14px;
        }

        /* Reviews Section */
        .reviews {
            background: white;
        }

        .review-stats {
            max-width: 1200px;
            margin: 0 auto;
            text-align: center;
            margin-bottom: 60px;
        }

        .rating-display {
            font-size: 72px;
            color: #a05060;
            font-weight: bold;
            margin-bottom: 10px;
        }

        .rating-stars {
            font-size: 32px;
            color: #ffc107;
            margin-bottom: 15px;
        }

        .review-count {
            color: #6a5a5a;
            font-size: 18px;
        }

        .review-bars {
            max-width: 600px;
            margin: 40px auto;
        }

        .review-bar {
            display: flex;
            align-items: center;
            gap: 15px;
            margin-bottom: 15px;
        }

        .bar-label {
            width: 80px;
            color: #6a5a5a;
        }

        .bar-container {
            flex: 1;
            height: 12px;
            background: #f0f0f0;
            border-radius: 10px;
            overflow: hidden;
        }

        .bar-fill {
            height: 100%;
            background: linear-gradient(135deg, #a05060 0%, #c06878 100%);
            border-radius: 10px;
            transition: width 0.5s ease;
        }

        .bar-count {
            width: 50px;
            text-align: right;
            color: #6a5a5a;
        }

        /* Footer */
        footer {
                background: linear-gradient(135deg, #8b5a7d 0%, #a67694 100%);
            color: white;
            padding: 60px 40px 30px;
        }

        .footer-content {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-bottom: 40px;
        }

        .footer-section h3 {
            font-size: 20px;
            margin-bottom: 20px;
            color: #fff5f0;
        }

        .footer-section ul {
            list-style: none;
        }

        .footer-section ul li {
            margin-bottom: 12px;
        }

        .footer-section a {
            color: rgba(255, 255, 255, 0.8);
            text-decoration: none;
            transition: color 0.3s;
        }

        .footer-section a:hover {
            color: white;
        }

        .social-icons {
            display: flex;
            gap: 15px;
            margin-top: 20px;
        }

        .social-icon {
            width: 40px;
            height: 40px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: background 0.3s;
        }

        .social-icon:hover {
            background: rgba(255, 255, 255, 0.2);
        }

        .footer-bottom {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid rgba(255, 255, 255, 0.2);
            color: rgba(255, 255, 255, 0.8);
        }

        @media (max-width: 768px) {
            .header-glass {
                margin: 10px;
                padding: 15px 20px;
                border-radius: 30px;
            }

            nav {
                flex-direction: column;
                gap: 20px;
            }

            .nav-menu {
                display: none;
            }
            .nav-menu li a {
                padding: 10px 20px;
                font-size: 14px;
            }
            .banner-content {
                grid-template-columns: 1fr;
                margin-top: 175px;
            }
            
            .banner-text h1 {
                font-size: 36px;
            }
            
            .section-title {
                font-size: 32px;
            }
        }


        /* Product Page CSS */

        .shop-btn {
            background: linear-gradient(135deg, #d4a5c5 0%, #c89bb3 100%);
            color: white;
            padding: 12px 30px;
            border-radius: 25px;
            border: none;
            cursor: pointer;
            font-size: 15px;
            transition: transform 0.3s;
        }

        .shop-btn:hover {
            transform: translateY(-2px);
        }

        .container {
            max-width: 1400px;
            padding: 200px 0 60px 60px;
            margin: auto;
        }
        @media (max-width: 768px) {
        .container {
                max-width: 100%;
                padding: 140px 20px 0 20px;
            }
        }
        .product-section {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 80px;
            align-items: start;
        }

        .image-section {
            position: sticky;
            top: 40px;
        }

        .main-image {
            width: 100%;
            height: 600px;
            background: white;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 10px 40px rgba(139, 90, 125, 0.15);
            margin-bottom: 30px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .main-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

         @media (max-width: 768px) {
         .main-image {
            width: 100%;
            height: 350px;
        }
        }
        .placeholder-main {
            font-size: 18px;
            color: #8b5a7d;
            text-align: center;
            padding: 40px;
        }

        .thumbnail-slider {
            position: relative;
        }

        .thumbnail-container {
            display: flex;
            gap: 15px;
            transition: transform 0.4s ease;
        }

        .thumbnail {
            min-width: calc(20% - 12px);
            height: 80px;
            background: white;
            border-radius: 12px;
            cursor: pointer;
            transition: all 0.3s;
            border: 3px solid transparent;
            overflow: hidden;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .thumbnail:hover {
            box-shadow: 0 8px 20px rgba(139, 90, 125, 0.2);
        }

        .thumbnail.active {
            box-shadow: 0 8px 20px rgba(139, 90, 125, 0.3);
        }

        .thumbnail img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .placeholder-thumb {
            font-size: 12px;
            color: #8b5a7d;
            text-align: center;
            padding: 10px;
        }

        .slider-btn {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background: rgba(139, 90, 125, 0.9);
            color: white;
            border: none;
            width: 35px;
            height: 35px;
            border-radius: 50%;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 10;
            transition: all 0.3s;
        }

        .slider-btn.prev {
            left: -15px;
        }

        .slider-btn.next {
            right: -15px;
        }

        .product-details {
            background: white;
            padding: 50px;
            border-radius: 20px;
            box-shadow: 0 10px 40px rgba(139, 90, 125, 0.1);
        }

        .product-title {
            font-size: 42px;
            color: #8b5a7d;
            margin-bottom: 15px;
            font-weight: normal;
        }

        .product-subtitle {
            font-size: 18px;
            color: #888;
            margin-bottom: 30px;
            font-style: italic;
        }

        .price {
            font-size: 32px;
            color: #8b5a7d;
            font-weight: bold;
            margin-bottom: 30px;
        }

        .rating {
            display: flex;
            gap: 5px;
            margin-bottom: 30px;
            font-size: 20px;
            color: #d4a5c5;
        }

        .description {
            line-height: 1.8;
            color: #666;
            margin-bottom: 30px;
            font-size: 16px;
        }

        .features {
            margin-bottom: 30px;
        }

        .features h3 {
            color: #8b5a7d;
            margin-bottom: 15px;
            font-size: 20px;
        }

        .feature-list {
            list-style: none;
            padding: 0;
        }

        .feature-list li {
            padding: 10px 0;
            color: #666;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .feature-list li:before {
            content: "✦";
            color: #d4a5c5;
            font-size: 14px;
        }

        .actions {
            display: flex;
            flex-direction: column;
            gap: 20px;
            margin-top: 40px;
        }

        .add-to-cart {
            flex: 1;
            background: linear-gradient(135deg, #8b5a7d 0%, #a67694 100%);
            color: white;
            padding: 18px 40px;
            border: none;
            border-radius: 30px;
            font-size: 16px;
            cursor: pointer;
            transition: all 0.3s;
            font-weight: 600;
        }

        .add-to-cart:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(139, 90, 125, 0.3);
        }

        .wishlist-btn {
            background: white;
            border: 2px solid #d4a5c5;
            color: #8b5a7d;
            padding: 18px 30px;
            border-radius: 30px;
            font-size: 16px;
            cursor: pointer;
            transition: all 0.3s;
        }

        .wishlist-btn:hover {
            background: #fff;
            transform: translateY(-2px);
        }

        @media (max-width: 1024px) {
            .product-section {
                grid-template-columns: 1fr;
                gap: 40px;
            }

            .image-section {
                position: relative;
                top: 0;
            }
        }