/* WooCommerce Single Product Styles */

/* CSS Variables for Single Product */
:root {
    --luxury-gold: #D4AF37;
    --luxury-gold-light: #E6C754;
    --luxury-gold-dark: #B8941F;
    --luxury-dark: #0a0a0a;
    --luxury-medium: #1a1a1a;
    --luxury-light: #fafafa;
    --luxury-cream: #f5f2ed;
    --text-primary: #1a1a1a;
    --text-secondary: #4a4a4a;
}

/* Force visibility for debugging */
body.single-product,
body.luxury-product-page {
    opacity: 1 !important;
    visibility: visible !important;
}

/* Container */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Product Hero */
.product-hero {
    background: var(--luxury-light);
    padding: 20px 0;
    border-bottom: 1px solid #eee;
}

.breadcrumb-nav {
    font-size: 14px;
}

.breadcrumb-nav a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb-nav a:hover {
    color: var(--luxury-gold);
}

.breadcrumb-nav .breadcrumb-separator {
    margin: 0 10px;
    color: #ccc;
}

/* Single Product Main */
.single-product-main {
    padding: 60px 0;
    background: #fff;
}

.product-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-bottom: 80px;
    align-items: start;
}

/* Product Gallery */
.product-gallery-wrapper {
    position: sticky;
    top: 80px;
    align-self: start;
}

.gallery-badges {
    position: absolute;
    top: 20px;
    left: 20px;
    z-index: 10;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.badge-sale,
.badge-featured {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    background: var(--luxury-gold);
    color: #fff;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.badge-featured {
    background: var(--luxury-dark);
}

/* Gallery Main Image */
.gallery-main {
    position: relative;
    overflow: hidden;
    background: var(--luxury-light);
    border-radius: 4px;
    margin-bottom: 20px;
    max-height: 600px;
}

.main-image-wrapper {
    position: relative;
    cursor: zoom-in;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 600px;
    overflow: hidden;
}

.main-product-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

.zoom-hint {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: rgba(0, 0, 0, 0.8);
    color: #fff;
    padding: 10px 20px;
    border-radius: 25px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.main-image-wrapper:hover .zoom-hint {
    opacity: 1;
}

/* Gallery Thumbnails */
.gallery-thumbs {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    max-width: 100%;
}

.thumb-item {
    cursor: pointer;
    overflow: hidden;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    background: var(--luxury-light);
    border-radius: 4px;
    height: 120px;
    position: relative;
}

.thumb-item.active,
.thumb-item:hover {
    border-color: var(--luxury-gold);
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.2);
}

.thumb-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.thumb-item:hover img {
    transform: scale(1.1);
}

/* Trust Badges */
.gallery-trust-badges {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    margin-top: 30px;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 15px;
    background: var(--luxury-light);
    border-radius: 4px;
    font-size: 13px;
    color: var(--text-secondary);
}

.trust-badge svg {
    width: 20px;
    height: 20px;
    color: var(--luxury-gold);
    flex-shrink: 0;
}

/* Product Information */
.product-info-wrapper {
    padding-top: 0;
}

.product-header {
    margin-bottom: 25px;
    padding-bottom: 25px;
    border-bottom: 1px solid #eee;
}

.product-title {
    font-family: 'Playfair Display', serif;
    font-size: 36px;
    font-weight: 700;
    color: var(--luxury-dark);
    margin-bottom: 12px;
    line-height: 1.2;
}

.product-rating-summary {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}

.star-rating {
    color: var(--luxury-gold);
}

.rating-count {
    font-size: 14px;
    color: var(--text-secondary);
}

.product-meta {
    display: flex;
    gap: 20px;
    font-size: 14px;
    color: var(--text-secondary);
}

.product-meta .sku {
    font-weight: 600;
}

/* Price Section */
.product-price-section {
    background: var(--luxury-light);
    padding: 30px;
    border-radius: 4px;
    margin-bottom: 30px;
}

.price-wrapper {
    display: flex;
    align-items: baseline;
    gap: 15px;
    margin-bottom: 15px;
}

.price-wrapper .price {
    font-size: 36px;
    font-weight: 600;
    color: var(--luxury-dark);
}

.price-wrapper del {
    font-size: 24px;
    color: #999;
}

.price-wrapper ins {
    text-decoration: none;
    color: var(--luxury-gold);
}

.savings-badge {
    display: flex;
    gap: 10px;
    align-items: center;
}

.savings-amount {
    font-size: 18px;
    font-weight: 600;
    color: var(--luxury-gold);
}

.savings-percentage {
    background: var(--luxury-gold);
    color: #fff;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
}

/* Product Excerpt */
.product-excerpt {
    font-size: 18px;
    line-height: 1.6;
    color: var(--text-secondary);
    margin-bottom: 30px;
}

/* Product Features */
.product-features {
    background: #fff;
    border: 1px solid #eee;
    padding: 30px;
    border-radius: 4px;
    margin-bottom: 30px;
}

.product-features h3 {
    font-size: 20px;
    font-weight: 600;
    color: var(--luxury-dark);
    margin-bottom: 20px;
}

.features-list {
    list-style: none;
}

.features-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    border-bottom: 1px solid #f5f5f5;
}

.features-list li:last-child {
    border-bottom: none;
}

.features-list svg {
    width: 20px;
    height: 20px;
    color: var(--luxury-gold);
    flex-shrink: 0;
}

/* Add to Cart Form */
.product-cart-form {
    margin-bottom: 30px;
}

.product-cart-form form.cart {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
}

.product-cart-form .quantity {
    display: inline-flex;
    align-items: center;
}

.product-cart-form .quantity input {
    width: 60px;
    height: 50px;
    text-align: center;
    border: 2px solid #ddd;
    font-size: 16px;
    font-weight: 600;
    border-radius: 4px;
}

.product-cart-form .single_add_to_cart_button,
.product-cart-form button[type="submit"] {
    background: linear-gradient(135deg, var(--luxury-gold) 0%, var(--luxury-gold-dark) 100%);
    color: #fff;
    padding: 18px 50px;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    border: none;
    cursor: pointer;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    display: inline-block;
}

.product-cart-form .single_add_to_cart_button::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;
}

.product-cart-form .single_add_to_cart_button:hover,
.product-cart-form button[type="submit"]:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.3);
}

.product-cart-form .single_add_to_cart_button:hover::before,
.product-cart-form button[type="submit"]:hover::before {
    left: 100%;
}

/* Buy Now Button */
.buy-now-button {
    background: var(--luxury-dark);
    color: #fff;
    padding: 18px 50px;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    border: none;
    cursor: pointer;
    transition: all 0.4s ease;
    display: inline-block;
    text-decoration: none;
    margin-left: 15px;
}

.buy-now-button:hover {
    background: #000;
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
    color: #fff;
}

/* Out of Stock Notice */
.out-of-stock-notice {
    background: #f8f8f8;
    border: 1px solid #ddd;
    padding: 20px;
    text-align: center;
    border-radius: 4px;
}

.out-of-stock-notice p {
    margin: 0;
    font-size: 16px;
    color: #666;
}

/* Urgency Messages */
.product-urgency {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 30px;
}

.urgency-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 15px 20px;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 4px;
    font-size: 14px;
    color: var(--luxury-dark);
}

.urgency-item svg {
    width: 20px;
    height: 20px;
    color: var(--luxury-gold);
    flex-shrink: 0;
}

/* Payment Options */
.payment-options {
    padding: 25px;
    background: var(--luxury-light);
    border-radius: 4px;
    text-align: center;
}

.payment-options h4 {
    font-size: 16px;
    font-weight: 600;
    color: var(--luxury-dark);
    margin-bottom: 15px;
}

.payment-icons {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.payment-icons img {
    height: 30px;
    width: auto;
}

.payment-text {
    font-size: 14px;
    color: var(--text-secondary);
}

/* Product Details Tabs */
.product-details-section {
    margin-top: 80px;
    border-top: 1px solid #eee;
    padding-top: 60px;
}

.luxury-tabs .tab-nav {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 40px;
    border-bottom: 2px solid #eee;
}

.tab-button {
    background: none;
    border: none;
    padding: 15px 30px;
    font-size: 16px;
    font-weight: 600;
    color: var(--text-secondary);
    cursor: pointer;
    position: relative;
    transition: all 0.3s ease;
}

.tab-button::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--luxury-gold);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.tab-button.active,
.tab-button:hover {
    color: var(--luxury-dark);
}

.tab-button.active::after {
    transform: scaleX(1);
}

.tab-pane {
    display: none;
}

.tab-pane.active {
    display: block;
}

.tab-inner {
    max-width: 800px;
    margin: 0 auto;
}

.tab-inner h2 {
    font-family: 'Playfair Display', serif;
    font-size: 32px;
    font-weight: 700;
    color: var(--luxury-dark);
    margin-bottom: 30px;
}

/* Shipping Content */
.shipping-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.shipping-section h3 {
    font-size: 20px;
    font-weight: 600;
    color: var(--luxury-dark);
    margin-bottom: 20px;
}

.shipping-section ul {
    list-style: none;
}

.shipping-section li {
    padding: 10px 0;
    padding-left: 25px;
    position: relative;
    color: var(--text-secondary);
}

.shipping-section li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--luxury-gold);
    font-weight: bold;
}

/* Related Products */
.related-products {
    padding: 80px 0;
    background: var(--luxury-light);
}

.related-products .section-header {
    text-align: center;
    margin-bottom: 50px;
}

.related-products h2 {
    font-family: 'Playfair Display', serif;
    font-size: 42px;
    font-weight: 700;
    color: var(--luxury-dark);
    margin-bottom: 15px;
}

.related-products p {
    font-size: 18px;
    color: var(--text-secondary);
}

.products-slider {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.product-slide .product-card {
    background: #fff;
    border-radius: 4px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.product-slide .product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.product-slide .product-image {
    position: relative;
    overflow: hidden;
    height: 250px;
}

.product-slide .product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-slide .sale-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--luxury-gold);
    color: #fff;
    padding: 6px 12px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.product-slide .product-info {
    padding: 20px;
}

.product-slide .product-name {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 10px;
}

.product-slide .product-name a {
    color: var(--luxury-dark);
    text-decoration: none;
    transition: color 0.3s ease;
}

.product-slide .product-name a:hover {
    color: var(--luxury-gold);
}

.product-slide .product-price {
    font-size: 18px;
    font-weight: 600;
    color: var(--luxury-dark);
}

/* Trust Section */
.product-trust {
    padding: 80px 0;
    background: #fff;
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.trust-item {
    text-align: center;
}

.trust-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    background: var(--luxury-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.trust-item:hover .trust-icon {
    background: var(--luxury-gold);
}

.trust-icon svg {
    width: 28px;
    height: 28px;
    color: var(--luxury-gold);
    transition: color 0.3s ease;
}

.trust-item:hover .trust-icon svg {
    color: #fff;
}

.trust-item h3 {
    font-size: 20px;
    font-weight: 600;
    color: var(--luxury-dark);
    margin-bottom: 10px;
}

.trust-item p {
    font-size: 14px;
    color: var(--text-secondary);
}

/* WooCommerce Overrides */
.woocommerce-product-attributes {
    width: 100%;
    border-collapse: collapse;
}

/* WooCommerce Add to Cart Form */
.woocommerce form.cart {
    margin-bottom: 2em;
}

.woocommerce .quantity .qty {
    width: 3.5em;
    text-align: center;
}

.woocommerce div.product form.cart .button {
    background: linear-gradient(135deg, var(--luxury-gold) 0%, var(--luxury-gold-dark) 100%);
    color: #fff;
    padding: 18px 50px;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    border: none;
    cursor: pointer;
    transition: all 0.4s ease;
    margin-left: 15px;
}

.woocommerce div.product form.cart .button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.3);
}

.woocommerce-product-attributes tr {
    border-bottom: 1px solid #eee;
}

.woocommerce-product-attributes th {
    text-align: left;
    padding: 15px;
    font-weight: 600;
    color: var(--luxury-dark);
    background: var(--luxury-light);
}

.woocommerce-product-attributes td {
    padding: 15px;
    color: var(--text-secondary);
}

/* Reviews */
#reviews {
    max-width: 100%;
}

#reviews .comment-form-rating label {
    display: block;
    margin-bottom: 10px;
    font-weight: 600;
    color: var(--luxury-dark);
}

#reviews .stars {
    display: inline-flex;
    gap: 5px;
}

#reviews .stars a {
    color: #ddd;
    text-decoration: none;
    font-size: 20px;
    transition: color 0.3s ease;
}

#reviews .stars a:hover,
#reviews .stars a.active {
    color: var(--luxury-gold);
}

/* Responsive Design */
@media (max-width: 992px) {
    .product-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .product-gallery-wrapper {
        position: static;
    }
    
    .main-image-wrapper {
        height: 500px;
    }
    
    .gallery-thumbs {
        grid-template-columns: repeat(6, 1fr);
    }
    
    .thumb-item {
        height: 100px;
    }
    
    .shipping-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .products-slider {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .trust-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .single-product-main {
        padding: 40px 0;
    }
    
    .container {
        padding: 0 15px;
    }
    
    /* Product Hero Mobile */
    .product-hero {
        padding: 15px 0;
    }
    
    .breadcrumb-nav {
        font-size: 12px;
        overflow-x: auto;
        white-space: nowrap;
        -webkit-overflow-scrolling: touch;
    }
    
    /* Gallery Mobile */
    .gallery-badges {
        top: 10px;
        left: 10px;
    }
    
    .badge-sale,
    .badge-featured {
        font-size: 10px;
        padding: 5px 10px;
    }
    
    .main-image-wrapper {
        height: 350px;
    }
    
    .gallery-thumbs {
        grid-template-columns: repeat(4, 1fr);
        gap: 10px;
        margin-top: 15px;
    }
    
    .thumb-item {
        height: 80px;
    }
    
    .gallery-trust-badges {
        grid-template-columns: 1fr;
        gap: 8px;
        padding: 15px;
        margin-top: 20px;
    }
    
    .trust-badge {
        font-size: 11px;
        padding: 8px;
        gap: 6px;
    }
    
    .trust-badge svg {
        width: 16px;
        height: 16px;
    }
    
    /* Product Info Mobile */
    .product-info {
        padding: 0;
    }
    
    .product-title {
        font-size: clamp(24px, 6vw, 32px);
        margin-bottom: 15px;
    }
    
    .product-rating {
        gap: 10px;
        margin-bottom: 15px;
    }
    
    .rating-stars {
        gap: 2px;
    }
    
    .rating-stars .star {
        width: 16px;
        height: 16px;
    }
    
    .rating-count {
        font-size: 12px;
    }
    
    .product-price-area {
        margin-bottom: 20px;
    }
    
    .price-main {
        font-size: clamp(28px, 6vw, 36px);
    }
    
    .price-original {
        font-size: 20px;
    }
    
    .price-badge {
        font-size: 11px;
        padding: 4px 8px;
    }
    
    .product-excerpt {
        font-size: 14px;
        margin-bottom: 20px;
    }
    
    /* Product Form Mobile */
    .product-cart-form {
        margin-bottom: 25px;
    }
    
    .quantity-wrapper {
        margin-bottom: 15px;
    }
    
    .quantity-label {
        font-size: 13px;
        margin-bottom: 8px;
    }
    
    .quantity-selector {
        gap: 10px;
    }
    
    .quantity-selector button {
        width: 36px;
        height: 36px;
        font-size: 16px;
    }
    
    .quantity-selector input {
        font-size: 14px;
    }
    
    .cart-buttons {
        flex-direction: column;
        gap: 10px;
    }
    
    .single_add_to_cart_button,
    .buy-now-button {
        width: 100%;
        padding: 15px 30px;
        font-size: 14px;
        letter-spacing: 1px;
        justify-content: center;
        min-height: 44px;
    }
    
    /* Product Meta Mobile */
    .product-meta {
        padding: 20px 0;
    }
    
    .meta-item {
        font-size: 13px;
        margin-bottom: 10px;
    }
    
    /* Features Mobile */
    .product-features {
        padding: 20px 0;
    }
    
    .feature-item {
        font-size: 14px;
        padding: 10px 0;
        gap: 10px;
    }
    
    .feature-item svg {
        width: 20px;
        height: 20px;
    }
    
    /* Tabs Mobile */
    .product-tabs {
        margin-top: 40px;
    }
    
    .tab-nav {
        gap: 10px;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        padding-bottom: 5px;
        margin-bottom: 20px;
    }
    
    .tab-button {
        padding: 12px 20px;
        font-size: 13px;
        white-space: nowrap;
        min-width: fit-content;
    }
    
    .tab-content {
        padding: 20px;
    }
    
    /* Shipping Section Mobile */
    .shipping-section {
        padding: 40px 0;
    }
    
    .shipping-info {
        margin-bottom: 25px;
    }
    
    .shipping-title {
        font-size: 24px;
        margin-bottom: 10px;
    }
    
    .shipping-subtitle {
        font-size: 14px;
    }
    
    .shipping-card {
        padding: 20px;
    }
    
    .shipping-icon {
        width: 48px;
        height: 48px;
        margin-bottom: 15px;
    }
    
    .shipping-card h3 {
        font-size: 18px;
        margin-bottom: 8px;
    }
    
    .shipping-card p {
        font-size: 13px;
    }
    
    /* Related Products Mobile */
    .related-products {
        padding: 40px 0;
    }
    
    .related-header {
        margin-bottom: 25px;
    }
    
    .related-title {
        font-size: 24px;
    }
    
    .products-slider {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .product-slide {
        padding: 15px;
    }
    
    .product-slide img {
        height: 180px;
    }
    
    .product-slide .product-name {
        font-size: 14px;
        margin-bottom: 8px;
    }
    
    .product-slide .product-price {
        font-size: 16px;
    }
    
    /* Trust Section Mobile */
    .product-trust {
        padding: 40px 0;
    }
    
    .trust-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .trust-icon {
        width: 50px;
        height: 50px;
        margin-bottom: 15px;
    }
    
    .trust-icon svg {
        width: 24px;
        height: 24px;
    }
    
    .trust-item h3 {
        font-size: 18px;
        margin-bottom: 8px;
    }
    
    .trust-item p {
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    /* Gallery Thumbs */
    .gallery-thumbs {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .thumb-item {
        height: 60px;
    }
    
    /* Product Title */
    .product-title {
        font-size: 22px;
    }
    
    /* Price */
    .price-main {
        font-size: 26px;
    }
    
    /* Tabs */
    .tab-button {
        padding: 10px 15px;
        font-size: 12px;
    }
    
    /* Related Products */
    .products-slider {
        grid-template-columns: 1fr;
    }
    
    .product-slide img {
        height: 200px;
    }
    
    /* Reviews Mobile */
    .reviews-header {
        margin-bottom: 30px;
    }
    
    .reviews-title {
        font-size: 22px;
        margin-bottom: 25px;
    }
    
    .reviews-summary {
        padding: 20px;
    }
    
    .rating-number {
        font-size: 40px;
    }
    
    .rating-stars .star {
        width: 20px;
        height: 20px;
    }
    
    .total-reviews {
        font-size: 14px;
    }
    
    .rating-bar {
        grid-template-columns: 50px 1fr 30px;
        gap: 10px;
    }
    
    .rating-label {
        font-size: 12px;
    }
    
    .bar-container {
        height: 6px;
    }
    
    .rating-count {
        font-size: 12px;
    }
    
    .review-item {
        padding: 20px;
        margin-bottom: 15px;
    }
    
    .reviewer-name {
        font-size: 16px;
    }
    
    .verified-badge {
        font-size: 11px;
    }
    
    .review-date {
        font-size: 12px;
    }
    
    .review-rating .star {
        width: 14px;
        height: 14px;
    }
    
    .review-text {
        font-size: 14px;
        line-height: 1.6;
    }
    
    .helpful-button {
        padding: 8px 15px;
        font-size: 12px;
    }
    
    /* Pagination */
    .reviews-pagination {
        gap: 10px;
    }
    
    .page-prev,
    .page-next {
        padding: 8px 12px;
        font-size: 12px;
        letter-spacing: 0.5px;
    }
    
    .page-number,
    .current-page {
        width: 32px;
        height: 32px;
        font-size: 12px;
    }
}

/* Luxury Reviews Section */
.luxury-reviews-section {
    padding: 40px 0;
}

.reviews-header {
    margin-bottom: 50px;
    text-align: center;
}

.reviews-title {
    font-family: 'Playfair Display', serif;
    font-size: 36px;
    font-weight: 700;
    color: var(--luxury-dark);
    margin-bottom: 40px;
}

.reviews-summary {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
    max-width: 800px;
    margin: 0 auto;
    padding: 40px;
    background: var(--luxury-light);
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.overall-rating {
    text-align: center;
    padding: 20px;
}

.rating-number {
    font-size: 64px;
    font-weight: 700;
    color: var(--luxury-gold);
    line-height: 1;
    margin-bottom: 10px;
}

.rating-stars {
    display: flex;
    justify-content: center;
    gap: 5px;
    margin-bottom: 15px;
}

.star {
    width: 24px;
    height: 24px;
    color: #ddd;
}

.star.filled {
    color: var(--luxury-gold);
}

.total-reviews {
    font-size: 16px;
    color: var(--text-secondary);
    font-weight: 500;
}

.rating-breakdown {
    display: flex;
    flex-direction: column;
    gap: 12px;
    justify-content: center;
}

.rating-bar {
    display: grid;
    grid-template-columns: 60px 1fr 40px;
    align-items: center;
    gap: 15px;
}

.rating-label {
    font-size: 14px;
    color: var(--text-secondary);
    text-align: right;
}

.bar-container {
    height: 8px;
    background: #e0e0e0;
    border-radius: 4px;
    overflow: hidden;
}

.bar-fill {
    height: 100%;
    background: var(--luxury-gold);
    transition: width 0.5s ease;
}

.rating-count {
    font-size: 14px;
    color: var(--text-secondary);
}

/* Reviews List */
.reviews-list {
    max-width: 900px;
    margin: 0 auto;
}

.review-item {
    padding: 35px;
    border: 1px solid #e8e8e8;
    border-radius: 8px;
    margin-bottom: 25px;
    background: #fff;
    transition: all 0.3s ease;
}

.review-item:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transform: translateY(-2px);
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 15px;
}

.reviewer-info {
    display: flex;
    align-items: center;
    gap: 15px;
}

.reviewer-name {
    font-size: 18px;
    font-weight: 600;
    color: var(--luxury-dark);
}

.verified-badge {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 13px;
    color: var(--luxury-gold);
    font-weight: 500;
}

.verified-badge svg {
    width: 16px;
    height: 16px;
}

.review-date {
    font-size: 14px;
    color: var(--text-secondary);
}

.review-rating {
    display: flex;
    gap: 3px;
    margin-bottom: 15px;
}

.review-rating .star {
    width: 18px;
    height: 18px;
}

.review-text {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-primary);
    margin-bottom: 20px;
}

.review-footer {
    display: flex;
    align-items: center;
    gap: 20px;
}

.helpful-button {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    font-size: 14px;
    color: var(--text-secondary);
    cursor: pointer;
    transition: all 0.3s ease;
}

.helpful-button:hover {
    border-color: var(--luxury-gold);
    color: var(--luxury-gold);
}

.helpful-button svg {
    width: 16px;
    height: 16px;
}

/* Reviews Pagination */
.reviews-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-top: 50px;
}

.page-prev,
.page-next {
    padding: 12px 24px;
    background: var(--luxury-dark);
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.page-prev:hover,
.page-next:hover {
    background: #000;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.page-numbers {
    display: flex;
    gap: 10px;
}

.page-number,
.current-page {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 500;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.page-number {
    color: var(--text-primary);
    border: 1px solid #e0e0e0;
}

.page-number:hover {
    border-color: var(--luxury-gold);
    color: var(--luxury-gold);
}

.current-page {
    background: var(--luxury-gold);
    color: #fff;
}

/* Responsive Reviews */
@media (max-width: 768px) {
    .reviews-summary {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 25px;
    }
    
    .reviews-title {
        font-size: 28px;
    }
    
    .rating-number {
        font-size: 48px;
    }
    
    .review-item {
        padding: 25px;
    }
    
    .review-header {
        flex-direction: column;
        gap: 10px;
    }
    
    .reviewer-info {
        flex-wrap: wrap;
    }
    
    .page-prev,
    .page-next {
        padding: 10px 16px;
        font-size: 13px;
    }
}