/*--------------------------------------------------------------
# Product Details Section
--------------------------------------------------------------*/
.product-details .product-gallery .main-showcase {
    position: relative;
    margin-bottom: 1.5rem;
    border-radius: 16px;
    overflow: hidden;
    background: linear-gradient(145deg, var(--surface-color), color-mix(in srgb, var(--surface-color), #f8f9fa 50%));
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
}

.product-details .product-gallery .main-showcase .image-zoom-container {
    position: relative;
    aspect-ratio: 1;
    overflow: hidden;
}

.product-details .product-gallery .main-showcase .image-zoom-container .main-product-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.4s ease;
    cursor: crosshair;
}

.product-details .product-gallery .main-showcase .image-zoom-container .main-product-image:hover {
    transform: scale(1.05);
}

.product-details .product-gallery .main-showcase .image-navigation {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    padding: 0 1rem;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.product-details .product-gallery .main-showcase .image-navigation .nav-arrow {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.95);
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    color: var(--heading-color);
    transition: all 0.3s ease;
}

.product-details .product-gallery .main-showcase .image-navigation .nav-arrow:hover {
    background: var(--accent-color);
    color: var(--contrast-color);
    transform: scale(1.1);
}

.product-details .product-gallery .main-showcase .image-navigation .nav-arrow i {
    font-size: 1.25rem;
}

.product-details .product-gallery .main-showcase:hover .image-navigation {
    opacity: 1;
}

.product-details .product-gallery .thumbnail-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 0.75rem;
}

@media (max-width: 768px) {
    .product-details .product-gallery .thumbnail-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.product-details .product-gallery .thumbnail-grid .thumbnail-wrapper {
    aspect-ratio: 1;
    border-radius: 12px;
    overflow: hidden;
    border: 2px solid transparent;
    cursor: pointer;
    transition: all 0.3s ease;
    background: var(--surface-color);
}

.product-details .product-gallery .thumbnail-grid .thumbnail-wrapper:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.product-details .product-gallery .thumbnail-grid .thumbnail-wrapper.active {
    border-color: var(--accent-color);
    box-shadow: 0 0 0 2px color-mix(in srgb, var(--accent-color), transparent 70%);
}

.product-details .product-gallery .thumbnail-grid .thumbnail-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-details .product-details {
    padding: 0 1rem;
}

@media (min-width: 992px) {
    .product-details .product-details {
        padding: 0 1.5rem;
    }
}

.product-details .product-details .product-badge-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.product-details .product-details .product-badge-container .badge-category {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color), #000 20%));
    color: var(--contrast-color);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: 20px;
}

.product-details .product-details .product-badge-container .rating-group {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.product-details .product-details .product-badge-container .rating-group .stars {
    display: flex;
}

.product-details .product-details .product-badge-container .rating-group .stars i {
    color: #ffd700;
    font-size: 1rem;
    margin-right: 1px;
}

.product-details .product-details .product-badge-container .rating-group .review-text {
    font-size: 0.875rem;
    color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.product-details .product-details .product-name {
    font-size: 1.3rem;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 1.5rem;
    color: var(--heading-color);
}

@media (min-width: 768px) {
    .product-details .product-details .product-name {
        font-size: 1.7rem;
    }
}

.product-details .product-details .pricing-section {
    margin-bottom: 1.5rem;
}

.product-details .product-details .pricing-section .price-display {
    display: flex;
    align-items: baseline;
    gap: 1rem;
    margin-bottom: 0.5rem;
}

.product-details .product-details .pricing-section .price-display .sale-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent-color);
}

.product-details .product-details .pricing-section .price-display .regular-price {
    font-size: 1.25rem;
    text-decoration: line-through;
    color: color-mix(in srgb, var(--default-color), transparent 50%);
}

.product-details .product-details .pricing-section .savings-info {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.product-details .product-details .pricing-section .savings-info .save-amount {
    color: #28a745;
    font-weight: 600;
    font-size: 0.875rem;
}

.product-details .product-details .pricing-section .savings-info .discount-percent {
    background: linear-gradient(135deg, #dc3545, #a72024);
    color: var(--contrast-color);
    padding: 0.25rem 0.5rem;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 600;
}

.product-details .product-details .product-description {
    margin-bottom: 1.5rem;
}

.product-details .product-details .product-description p {
    color: color-mix(in srgb, var(--default-color), transparent 20%);
    line-height: 1.6;
    font-size: 1rem;
}

.product-details .product-details .availability-status {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    background: linear-gradient(135deg, color-mix(in srgb, #28a745, transparent 90%), color-mix(in srgb, #28a745, transparent 95%));
    border-radius: 12px;
    margin-bottom: 2rem;
    border: 1px solid color-mix(in srgb, #28a745, transparent 80%);
}

.product-details .product-details .availability-status .stock-indicator {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.product-details .product-details .availability-status .stock-indicator i {
    color: #28a745;
    font-size: 1.125rem;
}

.product-details .product-details .availability-status .stock-indicator .stock-text {
    font-weight: 600;
    color: var(--heading-color);
}

.product-details .product-details .availability-status .quantity-left {
    font-size: 0.875rem;
    color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.product-details .product-details .variant-section {
    margin-bottom: 2rem;
}

.product-details .product-details .variant-section .color-selection .variant-label {
    display: block;
    font-weight: 600;
    color: var(--heading-color);
    margin-bottom: 0.75rem;
}

.product-details .product-details .variant-section .color-selection .color-grid {
    display: flex;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
}

.product-details .product-details .variant-section .color-selection .color-grid .color-chip {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    position: relative;
    border: 1px solid;
    transition: all 0.3s ease;
}

.product-details .product-details .variant-section .color-selection .color-grid .color-chip:hover {
    transform: scale(1.15);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.product-details .product-details .variant-section .color-selection .color-grid .color-chip.active {
    border-color: var(--contrast-color);
    transform: scale(1.1);
    box-shadow: 0 0 0 3px var(--accent-color);
}

.product-details .product-details .variant-section .color-selection .color-grid .color-chip.active .selection-check {
    opacity: 1;
}

.product-details .product-details .variant-section .color-selection .color-grid .color-chip .selection-check {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: var(--contrast-color);
    font-size: 1rem;
    opacity: 0;
    transition: opacity 0.3s ease;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
}

.product-details .product-details .variant-section .color-selection .selected-variant {
    font-size: 0.875rem;
    color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.product-details .product-details .variant-section .color-selection .selected-variant span {
    font-weight: 600;
    color: var(--heading-color);
}

.product-details .product-details .purchase-section {
    margin-bottom: 2rem;
}

.product-details .product-details .purchase-section .quantity-control {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.product-details .product-details .purchase-section .quantity-control .control-label {
    font-weight: 600;
    color: var(--heading-color);
    margin: 0;
}

.product-details .product-details .purchase-section .quantity-control .quantity-selector {
    display: flex;
    align-items: center;
    background: var(--surface-color);
    border-radius: 12px;
    border: 2px solid color-mix(in srgb, var(--default-color), transparent 85%);
    overflow: hidden;
}

.product-details .product-details .purchase-section .quantity-control .quantity-selector .quantity-btn {
    width: 40px;
    height: 40px;
    background: none;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--heading-color);
    transition: all 0.3s ease;
    cursor: pointer;
}

.product-details .product-details .purchase-section .quantity-control .quantity-selector .quantity-btn:hover {
    background: color-mix(in srgb, var(--accent-color), transparent 90%);
    color: var(--accent-color);
}

.product-details .product-details .purchase-section .quantity-control .quantity-selector .quantity-btn i {
    font-size: 1rem;
}

.product-details .product-details .purchase-section .quantity-control .quantity-selector .quantity-input {
    width: 60px;
    height: 40px;
    text-align: center;
    border: none;
    background: none;
    color: var(--heading-color);
    font-weight: 600;
}

.product-details .product-details .purchase-section .quantity-control .quantity-selector .quantity-input:focus {
    outline: none;
}

.product-details .product-details .purchase-section .action-buttons {
    display: flex;
    gap: 0.75rem;
}

@media (max-width: 576px) {
    .product-details .product-details .purchase-section .action-buttons {
        flex-direction: column;
    }
}

.product-details .product-details .purchase-section .action-buttons .btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.875rem 1.5rem;
    border-radius: 12px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.product-details .product-details .purchase-section .action-buttons .btn.primary-action {
    flex: 2;
    background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color), #000 15%));
    color: var(--contrast-color);
}

.product-details .product-details .purchase-section .action-buttons .btn.primary-action:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px color-mix(in srgb, var(--accent-color), transparent 60%);
}

.product-details .product-details .purchase-section .action-buttons .btn.secondary-action {
    flex: 2;
    background: var(--surface-color);
    color: var(--accent-color);
    border-color: var(--accent-color);
}

.product-details .product-details .purchase-section .action-buttons .btn.secondary-action:hover {
    background: var(--accent-color);
    color: var(--contrast-color);
    transform: translateY(-2px);
}

.product-details .product-details .purchase-section .action-buttons .btn.icon-action {
    width: 50px;
    padding: 0.875rem;
    background: var(--surface-color);
    color: color-mix(in srgb, var(--default-color), transparent 30%);
    border-color: color-mix(in srgb, var(--default-color), transparent 80%);
}

.product-details .product-details .purchase-section .action-buttons .btn.icon-action:hover {
    background: #dc3545;
    color: var(--contrast-color);
    border-color: #dc3545;
    transform: translateY(-2px);
}

.product-details .product-details .purchase-section .action-buttons .btn.icon-action i {
    font-size: 1.125rem;
}

.product-details .product-details .benefits-list {
    padding: 1.5rem;
    background: var(--surface-color);
    border-radius: 16px;
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.product-details .product-details .benefits-list .benefit-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
}

.product-details .product-details .benefits-list .benefit-item:last-child {
    margin-bottom: 0;
}

.product-details .product-details .benefits-list .benefit-item i {
    color: var(--accent-color);
    font-size: 1.125rem;
    flex-shrink: 0;
}

.product-details .product-details .benefits-list .benefit-item span {
    font-size: 0.875rem;
    color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.product-details .info-tabs-container {
    margin-top: 3rem;
}

.product-details .info-tabs-container .tabs-navigation {
    display: flex;
    background: var(--surface-color);
    border-radius: 16px;
    padding: 0.5rem;
    margin-bottom: 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.product-details .info-tabs-container .tabs-navigation .nav-link {
    flex: 1;
    padding: 1rem 1.5rem;
    background: none;
    border: none;
    border-radius: 12px;
    font-weight: 600;
    color: color-mix(in srgb, var(--default-color), transparent 40%);
    transition: all 0.3s ease;
    cursor: pointer;
}

.product-details .info-tabs-container .tabs-navigation .nav-link:hover {
    color: var(--accent-color);
}

.product-details .info-tabs-container .tabs-navigation .nav-link.active {
    background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color), #000 15%));
    color: var(--contrast-color);
    box-shadow: 0 4px 15px color-mix(in srgb, var(--accent-color), transparent 60%);
}

.product-details .info-tabs-container .tab-content .tab-pane {
    padding: 2rem 0;
}

.product-details .info-tabs-container .overview-content .content-section h3 {
    color: var(--heading-color);
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.product-details .info-tabs-container .overview-content .content-section h4 {
    color: var(--heading-color);
    font-size: 1.25rem;
    margin: 2rem 0 1rem;
    font-weight: 600;
}

.product-details .info-tabs-container .overview-content .content-section p {
    color: color-mix(in srgb, var(--default-color), transparent 20%);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.product-details .info-tabs-container .overview-content .highlights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.product-details .info-tabs-container .overview-content .highlights-grid .highlight-card {
    padding: 1.5rem;
    background: var(--surface-color);
    border-radius: 16px;
    text-align: center;
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    transition: all 0.3s ease;
}

.product-details .info-tabs-container .overview-content .highlights-grid .highlight-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
}

.product-details .info-tabs-container .overview-content .highlights-grid .highlight-card i {
    font-size: 2.5rem;
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.product-details .info-tabs-container .overview-content .highlights-grid .highlight-card h5 {
    color: var(--heading-color);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.product-details .info-tabs-container .overview-content .highlights-grid .highlight-card p {
    color: color-mix(in srgb, var(--default-color), transparent 30%);
    font-size: 0.875rem;
    margin: 0;
}

.product-details .info-tabs-container .overview-content .package-contents {
    padding: 2rem;
    background: linear-gradient(135deg, var(--surface-color), color-mix(in srgb, var(--surface-color), #f8f9fa 50%));
    border-radius: 16px;
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.product-details .info-tabs-container .overview-content .package-contents h4 {
    color: var(--heading-color);
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.product-details .info-tabs-container .overview-content .package-contents .contents-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.product-details .info-tabs-container .overview-content .package-contents .contents-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 0;
    color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.product-details .info-tabs-container .overview-content .package-contents .contents-list li i {
    color: #28a745;
    font-size: 1rem;
}

.product-details .info-tabs-container .technical-content .tech-group {
    margin-bottom: 2rem;
}

.product-details .info-tabs-container .technical-content .tech-group h4 {
    color: var(--heading-color);
    font-weight: 700;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--accent-color);
}

.product-details .info-tabs-container .technical-content .tech-group .spec-table {
    background: var(--surface-color);
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.product-details .info-tabs-container .technical-content .tech-group .spec-table .spec-row {
    display: flex;
    padding: 0.875rem 1.25rem;
    border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 95%);
}

.product-details .info-tabs-container .technical-content .tech-group .spec-table .spec-row:last-child {
    border-bottom: none;
}

.product-details .info-tabs-container .technical-content .tech-group .spec-table .spec-row .spec-name {
    flex: 1;
    font-weight: 600;
    color: var(--heading-color);
}

.product-details .info-tabs-container .technical-content .tech-group .spec-table .spec-row .spec-value {
    flex: 1;
    color: color-mix(in srgb, var(--default-color), transparent 20%);
    text-align: right;
}

.product-details .info-tabs-container .reviews-content .reviews-header {
    display: flex;
    gap: 3rem;
    margin-bottom: 3rem;
    padding: 2rem;
    background: var(--surface-color);
    border-radius: 16px;
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

@media (max-width: 768px) {
    .product-details .info-tabs-container .reviews-content .reviews-header {
        flex-direction: column;
        gap: 2rem;
    }
}

.product-details .info-tabs-container .reviews-content .reviews-header .rating-overview {
    flex: 1;
}

.product-details .info-tabs-container .reviews-content .reviews-header .rating-overview .average-score {
    text-align: center;
}

.product-details .info-tabs-container .reviews-content .reviews-header .rating-overview .average-score .score-display {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--heading-color);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.product-details .info-tabs-container .reviews-content .reviews-header .rating-overview .average-score .score-stars {
    margin-bottom: 0.5rem;
}

.product-details .info-tabs-container .reviews-content .reviews-header .rating-overview .average-score .score-stars i {
    color: #ffd700;
    font-size: 1.5rem;
    margin: 0 1px;
}

.product-details .info-tabs-container .reviews-content .reviews-header .rating-overview .average-score .total-reviews {
    color: color-mix(in srgb, var(--default-color), transparent 40%);
    font-size: 0.875rem;
}

.product-details .info-tabs-container .reviews-content .reviews-header .rating-overview .rating-distribution {
    margin-top: 2rem;
}

.product-details .info-tabs-container .reviews-content .reviews-header .rating-overview .rating-distribution .rating-row {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 0.75rem;
}

.product-details .info-tabs-container .reviews-content .reviews-header .rating-overview .rating-distribution .rating-row .stars-label {
    width: 30px;
    font-size: 0.875rem;
    color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.product-details .info-tabs-container .reviews-content .reviews-header .rating-overview .rating-distribution .rating-row .progress-container {
    flex: 1;
    height: 8px;
    background: color-mix(in srgb, var(--default-color), transparent 92%);
    border-radius: 4px;
    overflow: hidden;
}

.product-details .info-tabs-container .reviews-content .reviews-header .rating-overview .rating-distribution .rating-row .progress-container .progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #ffd700, #ffed4e);
    border-radius: 4px;
    transition: width 0.3s ease;
}

.product-details .info-tabs-container .reviews-content .reviews-header .rating-overview .rating-distribution .rating-row .count-label {
    width: 30px;
    text-align: right;
    font-size: 0.875rem;
    color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.product-details .info-tabs-container .reviews-content .reviews-header .write-review-cta {
    flex: 1;
    text-align: center;
}

.product-details .info-tabs-container .reviews-content .reviews-header .write-review-cta h4 {
    color: var(--heading-color);
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.product-details .info-tabs-container .reviews-content .reviews-header .write-review-cta p {
    color: color-mix(in srgb, var(--default-color), transparent 30%);
    margin-bottom: 1.5rem;
}

.product-details .info-tabs-container .reviews-content .reviews-header .write-review-cta .review-btn {
    background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color), #000 15%));
    color: var(--contrast-color);
    border: none;
    padding: 0.875rem 2rem;
    border-radius: 12px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.product-details .info-tabs-container .reviews-content .reviews-header .write-review-cta .review-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px color-mix(in srgb, var(--accent-color), transparent 60%);
}

.product-details .info-tabs-container .reviews-content .customer-reviews-list .review-card {
    background: var(--surface-color);
    border-radius: 16px;
    padding: 2rem;
    margin-bottom: 1.5rem;
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    transition: all 0.3s ease;
}

.product-details .info-tabs-container .reviews-content .customer-reviews-list .review-card:hover {
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

.product-details .info-tabs-container .reviews-content .customer-reviews-list .review-card .reviewer-profile {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.product-details .info-tabs-container .reviews-content .customer-reviews-list .review-card .reviewer-profile .profile-pic {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid color-mix(in srgb, var(--accent-color), transparent 80%);
}

.product-details .info-tabs-container .reviews-content .customer-reviews-list .review-card .reviewer-profile .profile-details {
    flex: 1;
}

.product-details .info-tabs-container .reviews-content .customer-reviews-list .review-card .reviewer-profile .profile-details .customer-name {
    font-weight: 600;
    color: var(--heading-color);
    margin-bottom: 0.25rem;
}

.product-details .info-tabs-container .reviews-content .customer-reviews-list .review-card .reviewer-profile .profile-details .review-meta {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.product-details .info-tabs-container .reviews-content .customer-reviews-list .review-card .reviewer-profile .profile-details .review-meta .review-stars i {
    color: #ffd700;
    font-size: 0.875rem;
    margin-right: 1px;
}

.product-details .info-tabs-container .reviews-content .customer-reviews-list .review-card .reviewer-profile .profile-details .review-meta .review-date {
    font-size: 0.875rem;
    color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.product-details .info-tabs-container .reviews-content .customer-reviews-list .review-card .review-headline {
    color: var(--heading-color);
    font-weight: 600;
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.product-details .info-tabs-container .reviews-content .customer-reviews-list .review-card .review-text p {
    color: color-mix(in srgb, var(--default-color), transparent 20%);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.product-details .info-tabs-container .reviews-content .customer-reviews-list .review-card .review-actions {
    display: flex;
    gap: 1rem;
}

.product-details .info-tabs-container .reviews-content .customer-reviews-list .review-card .review-actions .action-btn {
    background: none;
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 80%);
    color: color-mix(in srgb, var(--default-color), transparent 30%);
    padding: 0.5rem 1rem;
    border-radius: 8px;
    font-size: 0.875rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.product-details .info-tabs-container .reviews-content .customer-reviews-list .review-card .review-actions .action-btn:hover {
    border-color: var(--accent-color);
    color: var(--accent-color);
}

.product-details .info-tabs-container .reviews-content .customer-reviews-list .load-more-section {
    text-align: center;
    margin-top: 2rem;
}

.product-details .info-tabs-container .reviews-content .customer-reviews-list .load-more-section .load-more-reviews {
    background: var(--surface-color);
    border: 2px solid var(--accent-color);
    color: var(--accent-color);
    padding: 0.875rem 2rem;
    border-radius: 12px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.product-details .info-tabs-container .reviews-content .customer-reviews-list .load-more-section .load-more-reviews:hover {
    background: var(--accent-color);
    color: var(--contrast-color);
}

.product-details .drift-zoom-pane {
    background: var(--surface-color);
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 80%);
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
}

.product-details .drift-zoom-pane.drift-opening {
    animation: driftFadeIn 200ms ease-out;
}

.product-details .drift-zoom-pane.drift-closing {
    animation: driftFadeOut 200ms ease-in;
}

@keyframes driftFadeIn {
    0% {
        transform: scale(0.9);
        opacity: 0;
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}

@keyframes driftFadeOut {
    0% {
        transform: scale(1);
        opacity: 1;
    }

    100% {
        transform: scale(0.9);
        opacity: 0;
    }
}