        :root {
            --navy: #000075;
            --burgundy: #960018;
            --dark: #121212;
            --ivory: #FEFEFA;
            --gold: #C4A267;
        }
        
        * {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }
        
        body {
            font-family: 'Cormorant Garamond', serif;
            background-color: var(--ivory);
            color: var(--dark);
            background-image: linear-gradient(rgba(254, 254, 250, 0.92), rgba(254, 254, 250, 0.94)), 
                              url('https://images.unsplash.com/photo-1510812431401-41e2f9c2c0b4?q=80&w=2000');
            background-size: cover;
            background-position: center;
            background-attachment: fixed;
        }
        a {
        text-decoration: none;
        }
        
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 40px 20px;
        }
        
        .product-container {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 40px;
            margin-bottom: 60px;
        }
        
        .product-gallery {
            position: relative;
        }
        
        .main-image {
            width: 100%;
            height: 500px;
            object-fit: cover;
            border-radius: 8px;
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
            border: 1px solid rgba(150, 0, 24, 0.1);
        }
        
        .sale-badge {
            position: absolute;
            top: 15px;
            right: 15px;
            background-color: var(--burgundy);
            color: white;
            padding: 8px 12px;
            border-radius: 4px;
            font-weight: 600;
            font-size: 0.9rem;
            z-index: 2;
        }
        
        .thumbnail-container {
            display: flex;
            gap: 15px;
            margin-top: 20px;
        }
        
        .thumbnail {
            width: 80px;
            height: 80px;
            object-fit: cover;
            border-radius: 4px;
            cursor: pointer;
            border: 1px solid rgba(0, 0, 117, 0.1);
            transition: all 0.3s ease;
        }
        
        .thumbnail:hover {
            border-color: var(--burgundy);
            transform: translateY(-3px);
        }
        
        .product-details {
            padding: 20px;
        }
        
        .product-title {
            color: var(--navy);
            font-size: 2.2rem;
            font-weight: 600;
            margin-bottom: 10px;
            letter-spacing: 0.5px;
        }
        
        .product-subtitle {
            color: var(--burgundy);
            font-style: italic;
            font-size: 1.2rem;
            margin-bottom: 20px;
        }
        
        .price-container {
            display: flex;
            align-items: center;
            gap: 15px;
            margin-bottom: 20px;
        }
        
        .product-price {
            font-size: 1.8rem;
            color: var(--burgundy);
            font-weight: 600;
        }
        
        .regular-price {
            font-size: 1.4rem;
            color: var(--dark);
            text-decoration: line-through;
            opacity: 0.7;
        }
        
        .product-description {
            line-height: 1.8;
            margin-bottom: 30px;
            font-size: 1.1rem;
        }
        
        .product-meta {
            margin-bottom: 30px;
        }
        
        .meta-item {
            display: flex;
            margin-bottom: 10px;
            font-size: 1rem;
        }
        
        .meta-label {
            font-weight: 500;
            min-width: 120px;
            color: var(--navy);
        }
        
        .meta-value {
            color: var(--dark);
        }
        
        .divider {
            height: 1px;
            background-color: rgba(150, 0, 24, 0.1);
            margin: 30px 0;
        }
        
        .quantity-selector {
            display: flex;
            align-items: center;
            margin-bottom: 30px;
        }
        
        .quantity-btn {
            width: 40px;
            height: 40px;
            background-color: rgba(150, 0, 24, 0.1);
            border: none;
            font-size: 1.2rem;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        
        .quantity-btn:hover {
            background-color: rgba(150, 0, 24, 0.2);
        }
        
        .quantity-input {
            width: 60px;
            height: 40px;
            text-align: center;
            border: 1px solid rgba(0, 0, 117, 0.1);
            font-family: 'Cormorant Garamond', serif;
            font-size: 1rem;
        }
        
        .btn-group {
            display: flex;
            flex-wrap: wrap;
            gap: 15px;
        }
        
        .btn {
            padding: 14px 30px;
            background-color: var(--navy);
            color: white;
            border: none;
            border-radius: 8px;
            font-size: 1.1rem;
            cursor: pointer;
            transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
            letter-spacing: 0.5px;
            font-weight: 500;
            font-family: 'Cormorant Garamond', serif;
            flex: 1;
            min-width: 150px;
        }

        .whatsapp-btn{
            background-color: #25d366
        }
        
        .btn:hover {
            background-color: #00005a;
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(0, 0, 117, 0.2);
        }
        
        .btn-outline {
            background-color: transparent;
            border: 1px solid var(--navy);
            color: var(--navy);
            padding: 12px 20px;
            font-size: 1rem;
        }
        
        .btn-outline:hover {
            background-color: rgba(0, 0, 117, 0.05);
        }
        
        .product-tabs {
            margin-top: 60px;
        }
        
        .tab-header {
            display: flex;
            border-bottom: 1px solid rgba(150, 0, 24, 0.1);
            margin-bottom: 30px;
        }
        
        .tab-btn {
            padding: 12px 25px;
            background: none;
            border: none;
            font-family: 'Cormorant Garamond', serif;
            font-size: 1.1rem;
            font-weight: 500;
            color: var(--navy);
            cursor: pointer;
            position: relative;
        }
        
        .tab-btn.active {
            color: var(--burgundy);
        }
        
        .tab-btn.active::after {
            content: '';
            position: absolute;
            bottom: -1px;
            left: 0;
            width: 100%;
            height: 2px;
            background-color: var(--burgundy);
        }
        
        .tab-content {
            display: none;
            line-height: 1.8;
            font-size: 1.05rem;
            padding-left: 30px;
        }
        
        .tab-content.active {
            display: block;
            animation: fadeIn 0.5s ease;
            padding-left: 30px;
        }
        
        .related-products {
            margin-top: 80px;
        }
        
        .section-title {
            color: var(--navy);
            font-size: 1.8rem;
            font-weight: 600;
            margin-bottom: 30px;
            text-align: center;
            letter-spacing: 0.5px;
            position: relative;
        }
        
        .section-title::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 2px;
            background-color: var(--burgundy);
        }
        
        .product-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 30px;
        }
        
        .product-card {
            background-color: var(--ivory);
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
            transition: all 0.3s ease;
            border: 1px solid rgba(150, 0, 24, 0.1);
        }
        
        .product-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
        }
        
        .product-card-img {
            width: 100%;
            height: 250px;
            object-fit: cover;
        }
        
        .product-card-body {
            padding: 20px;
        }
        
        .product-card-title {
            color: var(--navy);
            font-size: 1.2rem;
            font-weight: 500;
            margin-bottom: 10px;
        }
        
        .product-card-price {
            color: var(--burgundy);
            font-weight: 500;
        }
        
        /* Review Form Styles */
        .review-form {
            background-color: rgba(254, 254, 250, 0.8);
            padding: 30px;
            border-radius: 8px;
            box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
            border: 1px solid rgba(150, 0, 24, 0.1);
            margin-top: 30px;
        }
        
        .form-group {
            margin-bottom: 20px;
        }
        
        .form-group label {
            display: block;
            margin-bottom: 8px;
            font-weight: 500;
            color: var(--navy);
        }
        
        .form-group input[type="text"],
        .form-group select,
        .form-group textarea {
            width: 100%;
            padding: 12px;
            border: 1px solid rgba(0, 0, 117, 0.2);
            border-radius: 4px;
            font-family: 'Cormorant Garamond', serif;
            font-size: 1rem;
            transition: all 0.3s ease;
        }
        
        .form-group input[type="text"]:focus,
        .form-group select:focus,
        .form-group textarea:focus {
            border-color: var(--burgundy);
            outline: none;
            box-shadow: 0 0 0 2px rgba(150, 0, 24, 0.1);
        }
        
        .form-group textarea {
            min-height: 120px;
            resize: vertical;
        }
        
        .btn-primary {
            background-color: var(--burgundy);
            color: white;
            padding: 12px 25px;
            border: none;
            border-radius: 4px;
            cursor: pointer;
            font-family: 'Cormorant Garamond', serif;
            font-size: 1.1rem;
            transition: all 0.3s ease;
        }
        
        .btn-primary:hover {
            background-color: #7a0014;
        }
        
        .alert {
            padding: 15px;
            margin-bottom: 20px;
            border-radius: 4px;
        }
        
        .alert-success {
            background-color: rgba(40, 167, 69, 0.2);
            color: #28a745;
            border: 1px solid rgba(40, 167, 69, 0.3);
        }
        
        @keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }
        
        @media (max-width: 992px) {
            .product-container {
                grid-template-columns: 1fr;
            }
            
            .main-image {
                height: 400px;
            }
        }
        
        @media (max-width: 768px) {
            .container {
                padding: 20px 15px;
            }
            
            .product-title {
                font-size: 1.8rem;
            }
            
            .tab-header {
                flex-wrap: wrap;
            }
            
            .tab-btn {
                padding: 10px 15px;
                font-size: 1rem;
            }
            
            .btn-group {
                flex-direction: row;
            }
            
            .btn {
                width: auto;
                margin-bottom: 0;
            }
            
            .review-form {
                padding: 20px;
            }
        }
        
        @media (max-width: 480px) {
            .btn {
                padding: 12px 20px;
                font-size: 1rem;
            }
            
            .meta-item {
                flex-direction: column;
            }
            
            .meta-label {
                margin-bottom: 5px;
            }
            
            .review-form {
                padding: 15px;
            }
        }
