/* Product Detail Page Styles - Gaurav Gupta Fashion */

/* ===== LUXURY PRODUCT INFO SECTION ===== */
.luxury-product-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.product-header {
    border-bottom: 1px solid #f0f0f0;
    padding-bottom: 2rem;
}

.product-title {
    font-family: 'Mulish', sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: #000;
    line-height: 1.4;
    letter-spacing: -0.5px;
}

.price-section {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.current-price {
    font-size: 1.3rem;
    font-weight: 600;
    color: #000;
}

.price-section small {
    font-size: 0.85rem;
    color: #666;
}

.product-short-desc {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #333;
    margin-bottom: 1.5rem;
}

/* ===== SIZE SELECTION ===== */
.size-selection {
    padding: 1.5rem 0;
    border-bottom: 1px solid #f0f0f0;
}

.size-selection .form-label {
    font-family: 'Mulish', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    color: #000;
    margin-bottom: 1rem;
    display: block;
}

.size-selection .d-flex {
    display: flex;
    gap: 0.75rem;
    align-items: center;
    flex-wrap: wrap;
}

.size-btn {
    width: 45px !important;
    height: 45px !important;
    padding: 0 !important;
    font-weight: 500;
    font-size: 0.9rem;
    font-family: 'Mulish', sans-serif;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.size-btn:hover {
    border-color: #000;
    color: #000;
}

.size-btn.active {
    background-color: #000 !important;
    border-color: #000 !important;
    color: #fff !important;
}

.size-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

[data-bs-toggle="modal"][data-bs-target="#sizeChartModal"] {
    font-family: 'Mulish', sans-serif;
    font-size: 0.85rem;
    font-weight: 500;
    color: #000;
    text-decoration: none;
    border-bottom: 1px solid currentColor;
    transition: opacity 0.3s;
}

[data-bs-toggle="modal"][data-bs-target="#sizeChartModal"]:hover {
    opacity: 0.7;
}

/* ===== COLOR SELECTION ===== */
.color-selection {
    padding: 1.5rem 0;
    border-bottom: 1px solid #f0f0f0;
}

.color-selection .form-label {
    font-family: 'Mulish', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    color: #000;
    margin-bottom: 1rem;
    display: block;
}

.color-circle {
    width: 40px !important;
    height: 40px !important;
    border-radius: 50% !important;
    border: 2px solid #ddd !important;
    cursor: pointer;
    transition: all 0.3s ease !important;
    padding: 0 !important;
    background-position: center !important;
    background-size: cover !important;
}

.color-circle:hover {
    border-color: #000 !important;
    box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.1);
}

.color-circle.active {
    border-color: #000 !important;
    box-shadow: 0 0 0 2px #fff, 0 0 0 4px #000;
}

/* ===== ADD TO CART SECTION ===== */
.luxury-cart-section {
    padding: 1.5rem 0;
}

.btn-add-to-cart {
    width: 100%;
    padding: 1rem 2rem;
    background-color: #000;
    color: #fff;
    border: none;
    font-family: 'Mulish', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-add-to-cart:hover:not(:disabled) {
    background-color: #333;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.btn-add-to-cart:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

/* ===== DELIVERY INFO ===== */
.delivery-info {
    padding: 1rem;
    background-color: #f9f9f9;
    border-radius: 4px;
    font-size: 0.9rem;
    color: #333;
}

.delivery-info strong {
    color: #000;
    font-weight: 600;
}

/* ===== PRODUCT SPECIFICATIONS ===== */
.product-specs {
    padding: 1.5rem 0;
    border-top: 1px solid #f0f0f0;
}

.specs-header {
    margin-bottom: 1.5rem;
}

.specs-header strong {
    font-family: 'Mulish', sans-serif;
    font-size: 1rem;
    color: #000;
}

.specs-tabs {
    display: flex;
    gap: 2rem;
    margin-top: 1rem;
    flex-wrap: wrap;
}

.spec-link {
    font-family: 'Mulish', sans-serif;
    font-size: 0.9rem;
    color: #666;
    text-decoration: none;
    transition: color 0.3s;
    position: relative;
}

.spec-link:hover {
    color: #000;
}

/* ===== DETAILED SPECIFICATIONS ===== */
.detailed-specs {
    margin-top: 1.5rem;
}

.spec-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    padding: 0.75rem 0;
    border-bottom: 1px solid #f0f0f0;
    gap: 1rem;
    font-size: 0.9rem;
}

.spec-row strong {
    color: #000;
    font-weight: 600;
    font-family: 'Mulish', sans-serif;
}

.spec-row span {
    color: #666;
}

/* Product Detail Container */
.product-detail {
    padding: 2rem 0 4rem;
}

/* Breadcrumb Navigation */
.breadcrumb-nav {
    background-color: transparent;
    font-size: 0.85rem;
}

.breadcrumb-nav a {
    color: var(--gg-secondary);
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb-nav a:hover {
    color: var(--gg-primary);
}

.breadcrumb-separator {
    color: var(--gg-gray);
    margin: 0 0.5rem;
}

.breadcrumb-current {
    color: var(--gg-primary);
}

/* Product Gallery */
.product-gallery {
    position: relative;
}

.product-main-image {
    position: relative;
    aspect-ratio: 3/4;
    overflow: hidden;
    background-color: var(--gg-light);
    margin-bottom: 1rem;
}

.product-main-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    cursor: zoom-in;
}

/* Thumbnail Gallery */
.product-thumbnails {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.5rem;
}

.thumbnail-item {
    aspect-ratio: 3/4;
    overflow: hidden;
    cursor: pointer;
    border: 2px solid transparent;
    transition: border-color 0.3s ease;
}

.thumbnail-item.active {
    border-color: var(--gg-primary);
}

.thumbnail-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.thumbnail-item:hover img {
    transform: scale(1.05);
}

/* Product Information */
.product-info {
    padding-left: 2rem;
}

.product-title {
    font-family: var(--font-secondary);
    font-size: 2rem;
    font-weight: 300;
    color: var(--gg-primary);
    margin-bottom: 1rem;
    line-height: 1.3;
}

.product-price {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.current-price {
    color: var(--gg-primary);
    font-weight: 500;
}

.original-price {
    color: var(--gg-gray);
    text-decoration: line-through;
    font-size: 1.2rem;
    margin-left: 1rem;
}

.price-note {
    font-size: 0.85rem;
    color: var(--gg-gray);
    margin-top: 0.5rem;
}

/* Product Description */
.product-description {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--gg-secondary);
    margin-bottom: 2rem;
}

/* Product Options */
.product-options {
    margin-bottom: 2rem;
}

.option-group {
    margin-bottom: 1.5rem;
}

.option-label {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--gg-primary);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.75rem;
    display: block;
}

/* Size Selection */
.size-options {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.size-option {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--gg-light-gray);
    background-color: var(--gg-white);
    color: var(--gg-primary);
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.size-option:hover {
    border-color: var(--gg-primary);
    background-color: var(--gg-primary);
    color: var(--gg-white);
    text-decoration: none;
}

.size-option.active {
    background-color: var(--gg-primary);
    color: var(--gg-white);
    border-color: var(--gg-primary);
}

.size-option.disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

.size-guide-link {
    font-size: 0.85rem;
    color: var(--gg-secondary);
    text-decoration: underline;
    margin-top: 0.5rem;
    display: inline-block;
}

/* Color Selection */
.color-options {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.color-option {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    border: 2px solid var(--gg-light-gray);
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.color-option:hover {
    transform: scale(1.1);
    border-color: var(--gg-primary);
}

.color-option.active {
    border-color: var(--gg-primary);
    transform: scale(1.1);
}

.color-option.active::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: var(--gg-white);
    font-size: 0.8rem;
    font-weight: bold;
}

.color-name {
    font-size: 0.85rem;
    color: var(--gg-secondary);
    margin-top: 0.5rem;
}

/* Quantity Selector */
.quantity-group {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.quantity-selector {
    display: flex;
    border: 1px solid var(--gg-light-gray);
    background-color: var(--gg-white);
}

.quantity-btn {
    width: 40px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--gg-white);
    color: var(--gg-primary);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1.2rem;
}

.quantity-btn:hover {
    background-color: var(--gg-light);
}

.quantity-input {
    width: 60px;
    height: 45px;
    border: none;
    border-left: 1px solid var(--gg-light-gray);
    border-right: 1px solid var(--gg-light-gray);
    text-align: center;
    font-size: 1rem;
    background-color: var(--gg-white);
}

/* Add to Cart Section */
.add-to-cart-section {
    margin-bottom: 2rem;
}

.add-to-cart-btn {
    width: 100%;
    background-color: var(--gg-primary);
    color: var(--gg-white);
    border: none;
    padding: 1rem 2rem;
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    border-radius: 0;
    margin-bottom: 1rem;
}

.add-to-cart-btn:hover {
    background-color: var(--gg-secondary);
    color: var(--gg-white);
}

.add-to-cart-btn:disabled {
    background-color: var(--gg-gray);
    cursor: not-allowed;
}

/* Delivery Information */
.delivery-info {
    font-size: 0.9rem;
    color: var(--gg-secondary);
    line-height: 1.6;
    margin-bottom: 2rem;
}

.delivery-info strong {
    color: var(--gg-primary);
}

/* Product Specifications */
.product-specifications {
    margin-top: 2rem;
}

.spec-tabs {
    display: flex;
    border-bottom: 1px solid var(--gg-light-gray);
    margin-bottom: 2rem;
}

.spec-tab {
    background: none;
    border: none;
    padding: 1rem 2rem 1rem 0;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--gg-secondary);
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    position: relative;
    transition: color 0.3s ease;
}

.spec-tab.active {
    color: var(--gg-primary);
}

.spec-tab.active::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    right: 2rem;
    height: 2px;
    background-color: var(--gg-primary);
}

.spec-content {
    display: none;
}

.spec-content.active {
    display: block;
}

.spec-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.spec-list li {
    display: flex;
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--gg-light);
    font-size: 0.9rem;
}

.spec-list li:last-child {
    border-bottom: none;
}

.spec-label {
    width: 40%;
    color: var(--gg-primary);
    font-weight: 500;
}

.spec-value {
    width: 60%;
    color: var(--gg-secondary);
}

/* Related Products */
.related-products {
    margin-top: 4rem;
    padding-top: 3rem;
    border-top: 1px solid var(--gg-light-gray);
}

.related-title {
    font-family: var(--font-secondary);
    font-size: 2rem;
    font-weight: 300;
    text-align: center;
    color: var(--gg-primary);
    margin-bottom: 2rem;
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* Responsive Design */
@media (max-width: 768px) {
    .product-info {
        padding-left: 0;
        margin-top: 2rem;
    }
    
    .product-title {
        font-size: 1.5rem;
    }
    
    .product-price {
        font-size: 1.3rem;
    }
    
    .product-thumbnails {
        grid-template-columns: repeat(5, 1fr);
    }
    
    .size-options {
        justify-content: center;
    }
    
    .color-options {
        justify-content: center;
    }
    
    .spec-tabs {
        flex-direction: column;
    }
    
    .spec-tab {
        padding: 1rem 0;
        border-bottom: 1px solid var(--gg-light-gray);
        text-align: center;
    }
    
    .spec-tab.active::after {
        right: 0;
    }
}

@media (max-width: 576px) {
    .product-detail {
        padding: 1rem 0 2rem;
    }
    
    .product-title {
        font-size: 1.3rem;
    }
    
    .product-thumbnails {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .quantity-group {
        justify-content: center;
    }
    
    .spec-list li {
        flex-direction: column;
        gap: 0.25rem;
    }
    
    .spec-label,
    .spec-value {
        width: 100%;
    }
}

/* ==========================================================================
   Enhanced Product Detail Page Styles
   ========================================================================== */

/* Product Detail Page Container */
.product-detail-container {
    padding: 2rem 0 4rem;
    background: var(--gg-white);
}

/* Enhanced Gallery Modal */
.gallery-modal .modal-dialog {
    max-width: 90vw;
    height: 90vh;
}

.gallery-modal .modal-body {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gallery-modal img,
.gallery-modal video {
    max-width: 100%;
    max-height: 80vh;
    object-fit: contain;
}

/* Share Modal */
.share-modal .social-share {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 1rem;
}

.share-modal .social-share a {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gg-white);
    text-decoration: none;
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.share-modal .social-share a:hover {
    transform: scale(1.1);
}

.share-modal .facebook { background: #3b5998; }
.share-modal .twitter { background: #1da1f2; }
.share-modal .pinterest { background: #bd081c; }
.share-modal .whatsapp { background: #25d366; }

/* Product Detail Tabs Enhancement */
.product-detail-tabs .nav-tabs {
    border-bottom: 2px solid var(--gg-light-gray);
    margin-bottom: 2rem;
}

.product-detail-tabs .nav-link {
    border: none;
    color: var(--gg-secondary);
    font-weight: 500;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 1rem 2rem 1rem 0;
    background: transparent;
}

.product-detail-tabs .nav-link:hover {
    color: var(--gg-primary);
    border-color: transparent;
}

.product-detail-tabs .nav-link.active {
    color: var(--gg-primary);
    border-bottom: 2px solid var(--gg-primary);
    background: transparent;
    position: relative;
    border-left: none;
    border-right: none;
    border-top: none;
}

.product-detail-tabs .tab-content {
    min-height: 200px;
}

/* Reviews Section Enhancement */
.reviews-section .review-item {
    padding: 1.5rem 0;
    border-bottom: 1px solid var(--gg-light-gray);
}

.reviews-section .review-item:last-child {
    border-bottom: none;
}

.reviews-section .star-rating i {
    color: var(--gg-accent);
    margin-right: 0.2rem;
}

.reviews-section .review-title {
    font-family: var(--font-secondary);
    font-size: 1.1rem;
    font-weight: 400;
    color: var(--gg-primary);
    margin-bottom: 0.5rem;
}

.reviews-section .review-text {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--gg-secondary);
    margin-bottom: 1rem;
}

.reviews-section .reviewer-info {
    font-size: 0.85rem;
    color: var(--gg-gray);
}

/* Review Modal */
.review-modal .rating-input {
    display: flex;
    flex-direction: row-reverse;
    justify-content: center;
    gap: 0.25rem;
    margin-bottom: 1rem;
}

.review-modal .rating-input input {
    display: none;
}

.review-modal .star-label {
    font-size: 2rem;
    color: var(--gg-light-gray);
    cursor: pointer;
    transition: color 0.3s ease;
}

.review-modal .rating-input input:checked ~ .star-label,
.review-modal .star-label:hover,
.review-modal .star-label:hover ~ .star-label {
    color: var(--gg-accent);
}

/* Related Products Enhancement */
.related-products-section {
    margin-top: 4rem;
    padding-top: 3rem;
    border-top: 2px solid var(--gg-light-gray);
}

.related-products-header {
    margin-bottom: 2rem;
}

.related-products-header h4 {
    font-family: var(--font-secondary);
    font-size: 2rem;
    font-weight: 300;
    color: var(--gg-primary);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.related-nav .btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--gg-light-gray);
    color: var(--gg-secondary);
    background: var(--gg-white);
    transition: all 0.3s ease;
}

.related-nav .btn:hover {
    border-color: var(--gg-primary);
    color: var(--gg-primary);
    background: var(--gg-light);
}

/* Additional Luxury Styles for Updated Product Page */

/* Luxury Breadcrumb Styles */
.gaurav-breadcrumb {
    background: transparent;
    padding: 0;
    margin: 0;
}

.gaurav-breadcrumb .breadcrumb-item a {
    color: var(--gg-secondary);
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.gaurav-breadcrumb .breadcrumb-item a:hover {
    color: var(--gg-primary);
}

.gaurav-breadcrumb .breadcrumb-item.active {
    color: var(--gg-primary);
    font-weight: 500;
}

/* Luxury Gallery Enhancements */
.luxury-gallery .luxury-main-gallery {
    aspect-ratio: 4/3;
    border-radius: 8px;
    overflow: hidden;
    background: var(--gg-light);
}

.luxury-gallery .gallery-item img,
.luxury-gallery .gallery-item video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.luxury-gallery .thumbnail-gallery {
    margin-top: 1rem;
}

.luxury-gallery .thumbnail-gallery .thumbnail-item {
    cursor: pointer;
    border-radius: 4px;
    overflow: hidden;
    aspect-ratio: 1/1;
    position: relative;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.luxury-gallery .thumbnail-gallery .thumbnail-item:hover,
.luxury-gallery .thumbnail-gallery .thumbnail-item.active {
    border-color: var(--gg-primary);
}

.luxury-gallery .thumbnail-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.luxury-gallery .video-indicator {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 1.5rem;
    text-shadow: 0 0 10px rgba(0,0,0,0.5);
}

.luxury-gallery .view-all-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.7);
    color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: bold;
}

.luxury-gallery .single-image-wrapper {
    border-radius: 8px;
    overflow: hidden;
    aspect-ratio: 4/3;
}

.luxury-gallery .luxury-single-image,
.luxury-gallery .luxury-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Zoom Lens Button */
.btn-zoom-lens {
    width: 45px;
    height: 45px;
    border-radius: 50% !important;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.9) !important;
    border: none !important;
    color: #000 !important;
    transition: all 0.3s ease !important;
    z-index: 10;
}

.btn-zoom-lens:hover {
    background: #fff !important;
    transform: scale(1.1);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15) !important;
}

.btn-zoom-lens i {
    font-size: 1.2rem;
}

/* Luxury Product Info Enhancements */
.luxury-product-info .brand-link {
    color: var(--gg-secondary);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
    transition: color 0.3s ease;
}

.luxury-product-info .brand-link:hover {
    color: var(--gg-primary);
}

.luxury-product-info .product-title {
    font-family: var(--font-secondary);
    font-size: 2rem;
    font-weight: 300;
    color: var(--gg-primary);
    line-height: 1.2;
    margin-bottom: 1rem;
}

.luxury-product-info .category-tag {
    color: var(--gg-secondary);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.luxury-product-info .category-tag:hover {
    color: var(--gg-primary);
}

.luxury-product-info .stars i {
    color: var(--gg-accent);
    font-size: 1rem;
}

.luxury-product-info .rating-text {
    color: var(--gg-secondary);
    font-size: 0.9rem;
    margin-left: 0.5rem;
}

/* Product Details Enhancements */
.product-details .detail-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--gg-light-gray);
}

.product-details .detail-row:last-child {
    border-bottom: none;
}

.product-details .detail-label {
    color: var(--gg-secondary);
    font-size: 0.9rem;
    font-weight: 500;
}

.product-details .detail-value {
    font-weight: 600;
    color: var(--gg-primary);
}

.product-details .availability-badge {
    display: flex;
    align-items: center;
    font-weight: 500;
}

.product-details .availability-badge.in-stock {
    color: var(--gg-success);
}

.product-details .availability-badge.out-of-stock {
    color: var(--gg-danger);
}

.product-details .stock-count {
    font-size: 0.8rem;
    margin-left: 0.25rem;
}

/* Luxury Pricing Enhancements */
.luxury-pricing .price-row {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.luxury-pricing .original-price {
    color: var(--gg-gray);
    text-decoration: line-through;
    font-size: 1.1rem;
}

.luxury-pricing .discount-badge {
    background: var(--gg-accent);
    color: var(--gg-white);
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.luxury-pricing .current-price {
    font-size: 2rem;
    font-weight: 500;
    color: var(--gg-primary);
    margin-bottom: 0.5rem;
}

.luxury-pricing .price-info {
    color: var(--gg-secondary);
    font-size: 0.9rem;
    display: flex;
    align-items: center;
}

/* Luxury Cart Section Enhancements */
.luxury-cart-section .quantity-label {
    display: block;
    margin-bottom: 0.75rem;
    font-weight: 500;
    color: var(--gg-primary);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
}

.luxury-cart-section .luxury-quantity-selector {
    display: flex;
    align-items: center;
    border: 1px solid var(--gg-light-gray);
    border-radius: 0;
    overflow: hidden;
    width: fit-content;
    background: var(--gg-white);
}

.luxury-cart-section .quantity-btn {
    background: none;
    border: none;
    padding: 0.75rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gg-primary);
}

.luxury-cart-section .quantity-btn:hover {
    background: var(--gg-light);
}

.luxury-cart-section .quantity-input {
    border: none;
    text-align: center;
    width: 60px;
    padding: 0.75rem 0.5rem;
    font-weight: 600;
    background: none;
    color: var(--gg-primary);
}

.luxury-cart-section .quantity-input:focus {
    outline: none;
}

.luxury-cart-section .btn-add-to-cart {
    background: var(--gg-primary);
    color: var(--gg-white);
    border: none;
    padding: 1rem 2rem;
    width: 100%;
    font-size: 0.9rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 0;
    transition: all 0.3s ease;
    margin-bottom: 1rem;
}

.luxury-cart-section .btn-add-to-cart:hover {
    background: var(--gg-secondary);
    color: var(--gg-white);
}

.luxury-cart-section .secondary-actions {
    display: flex;
    gap: 1rem;
}

.luxury-cart-section .btn-wishlist,
.luxury-cart-section .btn-share {
    background: none;
    border: 1px solid var(--gg-light-gray);
    color: var(--gg-secondary);
    text-decoration: none;
    padding: 0.75rem 1.5rem;
    border-radius: 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    flex: 1;
    justify-content: center;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
}

.luxury-cart-section .btn-wishlist:hover,
.luxury-cart-section .btn-share:hover {
    border-color: var(--gg-primary);
    color: var(--gg-primary);
}

/* ========== Image Viewer Modal ========== */

#imageViewerModal .modal-dialog {
    margin: 0;
}

#imageViewerModal .modal-header {
    padding: 1rem 1.5rem;
    z-index: 30;
}

#imageViewerModal .btn-close {
    background-color: rgba(255, 255, 255, 0.1);
    padding: 1rem;
    border-radius: 50%;
    opacity: 0.8;
    transition: all 0.3s ease;
}

#imageViewerModal .btn-close:hover {
    background-color: rgba(255, 255, 255, 0.2);
    opacity: 1;
    transform: rotate(90deg);
}

#imageViewerModal .modal-content {
    border: none;
    border-radius: 0;
    background-color: #000 !important;
}

#imageViewerModal .modal-body {
    padding: 2rem !important;
}

.image-viewer-container {
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    cursor: grab;
    padding: 20px;
}

.image-viewer-container:active {
    cursor: grabbing;
}

.img-viewer-main {
    transition: transform 0.3s ease;
    cursor: zoom-in;
}

/* Zoom Controls */
.zoom-controls {
    display: flex;
    gap: 0.75rem;
    z-index: 20;
    background: rgba(0, 0, 0, 0.3);
    padding: 8px 15px;
    border-radius: 30px;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.zoom-controls .btn {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.9);
    color: #000;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    padding: 0;
}

.zoom-controls .btn:hover {
    background-color: #fff;
    transform: scale(1.1);
}

/* Navigation Buttons */
#imageViewerModal .modal-body button.btn-nav-prev,
#imageViewerModal .modal-body button.btn-nav-next {
    background-color: rgba(255, 255, 255, 0.15);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.3);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
    transform: translateY(-50%);
    top: 50%;
}

#imageViewerModal .modal-body button.btn-nav-prev:hover,
#imageViewerModal .modal-body button.btn-nav-next:hover {
    background-color: rgba(255, 255, 255, 0.3);
    color: #fff;
    transform: translateY(-50%) scale(1.1);
}

#imageViewerModal .modal-body button i {
    font-size: 1.5rem;
}

/* Image Counter */
#imageViewerModal .modal-body > .position-absolute.top-0 {
    background-color: rgba(0, 0, 0, 0.4);
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-weight: 500;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.9rem;
}

/* Thumbnail Strip */
#imageViewerModal .modal-footer {
    background-color: #1a1a1a !important;
    padding: 1rem;
    border-top: 1px solid #333;
}

.viewer-thumb {
    transition: all 0.3s ease;
    border-radius: 4px;
}

.viewer-thumb:hover {
    transform: scale(1.1);
    cursor: pointer;
}

/* ===== PRODUCT TABS AS BUTTONS ===== */
#productTabs {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    width: 100%;
}

#productTabs .btn {
    flex: 1;
    min-width: 120px;
    border-radius: 4px;
    font-family: 'Mulish', sans-serif;
    font-weight: 500;
    font-size: 0.9rem;
    padding: 0.6rem 1rem;
    border: 1px solid #ddd;
    background-color: #fff;
    color: #333;
    transition: all 0.3s ease;
}

#productTabs .btn:hover:not(.active) {
    background-color: #f9f9f9;
    border-color: #000;
}

#productTabs .btn.active {
    background-color: #000;
    color: #fff;
    border-color: #000;
}

#productTabs .btn.active .badge {
    background-color: #666 !important;
}

/* Responsive adjustments */
@media (max-width: 576px) {
    .zoom-controls {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .zoom-controls .btn {
        padding: 0.4rem 0.6rem;
        font-size: 0.9rem;
    }
    
    #prevImageBtn,
    #nextImageBtn {
        padding: 0.5rem 0.75rem !important;
        font-size: 1.2rem;
    }
    
    .viewer-thumb {
        width: 50px !important;
        height: 50px !important;
    }
}

/* ===== PRODUCT VARIATIONS MANAGER CUSTOM STYLES ===== */

/* Variation Attributes Container */
.variation-attributes {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

/* Attribute Selector Group */
.attribute-selector {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.attribute-selector label {
    font-size: 0.95rem;
    font-weight: 600;
    color: #000;
    margin-bottom: 0.5rem;
}

.attribute-selector label span.text-danger {
    margin-left: 0.25rem;
}

/* Dropdown Selector */
.attribute-selector .form-select {
    border: 1px solid #ddd;
    border-radius: 4px;
    padding: 0.5rem 0.75rem;
    font-size: 0.9rem;
    transition: all 0.2s ease;
}

.attribute-selector .form-select:focus {
    border-color: #000;
    box-shadow: 0 0 0 0.2rem rgba(0, 0, 0, 0.05);
}

/* Size Button Selector */
.attribute-selector .size-selector {
    display: flex !important;
    flex-wrap: wrap;
    gap: 0.5rem !important;
}

.attribute-selector .size-btn {
    min-width: 45px;
    padding: 0.5rem 0.8rem;
    border: 1px solid #ddd;
    background-color: #fff;
    color: #000;
    border-radius: 4px;
    font-size: 0.85rem;
    font-weight: 500;
    transition: all 0.2s ease;
    cursor: pointer;
    text-align: center;
}

.attribute-selector .size-btn:hover {
    border-color: #000;
    background-color: #f9f9f9;
    transform: translateY(-2px);
}

.attribute-selector .size-btn.active {
    border-color: #000;
    background-color: #000;
    color: #fff;
}

.attribute-selector .size-btn:disabled,
.attribute-selector .size-btn.unavailable {
    opacity: 0.5;
    cursor: not-allowed;
}

/* Button Selector (Generic) */
.attribute-selector .d-flex.flex-wrap {
    gap: 0.75rem !important;
    display: flex !important;
    flex-wrap: wrap;
}

.attribute-selector .attribute-value-btn {
    border: 1px solid #ddd;
    background-color: #fff;
    color: #000;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    font-size: 0.85rem;
    font-weight: 500;
    transition: all 0.2s ease;
    cursor: pointer;
    min-width: 50px;
    text-align: center;
}

.attribute-selector .attribute-value-btn:hover:not(:disabled):not(.unavailable) {
    border-color: #000;
    background-color: #f9f9f9;
}

.attribute-selector .attribute-value-btn.active {
    border-color: #000;
    background-color: #000;
    color: #fff;
}

.attribute-selector .attribute-value-btn:disabled,
.attribute-selector .attribute-value-btn.unavailable {
    opacity: 0.5;
    cursor: not-allowed;
    text-decoration: line-through;
}

/* Color Selector */
.attribute-selector .color-selector {
    display: flex !important;
    flex-wrap: wrap;
    gap: 1.5rem !important;
}

.attribute-selector .color-selector-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.attribute-selector .color-selector-btn {
    width: 50px !important;
    height: 50px !important;
    padding: 3px !important;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid #ddd !important;
    transition: all 0.2s ease;
    background-color: transparent !important;
    cursor: pointer;
}

.attribute-selector .color-selector-btn:hover:not(:disabled):not(.unavailable) {
    border-color: #000 !important;
    transform: scale(1.05);
}

.attribute-selector .color-selector-btn.active {
    border-color: #000 !important;
    box-shadow: 0 0 0 2px #fff, 0 0 0 4px #000 !important;
}

.attribute-selector .color-swatch {
    width: 100% !important;
    height: 100% !important;
    display: block;
    border-radius: 50%;
}

.attribute-selector .color-selector-item .small {
    text-align: center;
    font-size: 0.75rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    width: 70px;
    color: #666;
}

/* Image Selector */
.attribute-selector .image-selector-item {
    position: relative;
    text-align: center;
}

.attribute-selector .image-selector-btn {
    padding: 2px !important;
    border: 2px solid #ddd;
    border-radius: 4px;
    overflow: hidden;
    width: 70px !important;
    height: 70px !important;
    background-color: transparent !important;
    cursor: pointer;
    transition: all 0.2s ease;
}

.attribute-selector .image-selector-btn:hover:not(:disabled):not(.unavailable) {
    border-color: #000;
    transform: scale(1.05);
}

.attribute-selector .image-selector-btn.active {
    border-color: #000;
    box-shadow: 0 0 0 2px #fff, 0 0 0 4px #000;
}

.attribute-selector .image-swatch {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover;
}

/* Add to Cart Button */
.add-to-cart-form .btn-dark {
    background-color: #000;
    border-color: #000;
    border-radius: 4px;
    transition: all 0.3s ease;
    font-weight: 600;
}

.add-to-cart-form .btn-dark:hover:not(:disabled) {
    background-color: #333;
    border-color: #333;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.add-to-cart-form .btn-dark:disabled {
    background-color: #ccc;
    border-color: #ccc;
    cursor: not-allowed;
    opacity: 0.6;
}

/* Stock Status */
#stock-status {
    padding: 0.75rem 1rem;
    border-radius: 4px;
    font-size: 0.9rem;
    margin-top: 1rem;
    display: none;
}

#stock-status.in-stock {
    display: block;
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

#stock-status.out-of-stock {
    display: block;
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* Product Specs Grid */
.product-specs {
    padding-top: 1.5rem;
    border-top: 1px solid #eee;
}

.product-specs h5 {
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 600;
}

.spec-item {
    font-size: 0.9rem;
}

.spec-item strong {
    font-weight: 600;
    color: #000;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: block;
    margin-bottom: 0.25rem;
}

.spec-item span {
    color: #666;
    font-size: 0.9rem;
}

/* Disclaimer Section */
.disclaimer-section {
    font-size: 0.85rem;
    color: #666;
    line-height: 1.6;
}

.disclaimer-section strong {
    font-weight: 600;
    color: #000;
}

.disclaimer-section p {
    margin-bottom: 0;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .attribute-selector .attribute-value-btn {
        font-size: 0.8rem;
        padding: 0.4rem 0.8rem;
        min-width: 45px;
    }
    
    .attribute-selector .size-btn {
        font-size: 0.8rem;
        padding: 0.4rem 0.8rem;
        min-width: 45px;
    }
    
    .attribute-selector .color-selector-btn {
        width: 45px !important;
        height: 45px !important;
    }
    
    .attribute-selector .image-selector-btn {
        width: 60px !important;
        height: 60px !important;
    }
    
    .product-specs {
        grid-template-columns: 1fr !important;
    }
    
    .variation-attributes {
        gap: 1rem;
    }
}
```