/* ===== customer-reviews.blade.php ===== */
.customer-reviews-page-section {
    padding: 60px 0;
    background: #f8f9fa;
    min-height: 60vh;
}


.reviews-page-title {
    font-size: 42px;
    font-weight: 700;
    color: #212529;
    margin-bottom: 15px;
    letter-spacing: -0.5px;
}

.reviews-page-subtitle {
    font-size: 18px;
    color: #6c757d;
    margin: 0;
}

.reviews-grid {
    margin-top: 30px;
    row-gap: 20px;
    justify-content: center;
}

.review-card {
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    position: relative;
    margin: 0;
    background: #fff;
}

.review-image-wrapper {
    width: 100%;
    position: relative;
    overflow: hidden;
    aspect-ratio: 1 / 1;
}

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

.review-card:hover .review-image {
    transform: scale(1.02);
}

.review-lightbox {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    overflow: hidden;
    animation: fadeIn 0.3s ease;
}

.review-lightbox.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.review-lightbox-swiper {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    touch-action: pan-y;
    -webkit-overflow-scrolling: touch;
}

.review-lightbox-swiper .swiper-wrapper {
    touch-action: pan-y;
}

.review-lightbox-swiper .swiper-slide {
    display: flex;
    align-items: center;
    justify-content: center;
    touch-action: pan-y;
}

.review-lightbox-swiper .swiper-slide img {
    max-width: 90%;
    max-height: 90vh;
    object-fit: contain;
    display: block;
    margin: auto;
}

.review-lightbox-next,
.review-lightbox-prev {
    color: #fff;
    background: rgba(255, 255, 255, 0.1);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    transition: background 0.3s ease;
}

.review-lightbox-next:hover,
.review-lightbox-prev:hover {
    background: rgba(255, 255, 255, 0.2);
}

.review-lightbox-next::after,
.review-lightbox-prev::after {
    font-size: 20px;
    font-weight: bold;
}

.review-lightbox-close {
    position: absolute;
    top: 30px;
    right: 45px;
    color: #fff;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    z-index: 10000;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transition: background 0.3s ease;
}

.review-lightbox-close:hover {
    background: rgba(255, 255, 255, 0.2);
}

.review-lightbox-loader {
    display: none;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 50px;
    height: 50px;
    border: 4px solid rgba(255, 255, 255, 0.3);
    border-top: 4px solid #fff;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

.review-lightbox.loading .review-lightbox-loader {
    display: block;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes zoomIn {
    from { transform: scale(0.8); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

@keyframes spin {
    0% { transform: translate(-50%, -50%) rotate(0deg); }
    100% { transform: translate(-50%, -50%) rotate(360deg); }
}

@media (max-width: 991px) {
    .reviews-page-title {
        font-size: 32px;
    }
    
    .reviews-page-subtitle {
        font-size: 16px;
    }
    
    .customer-reviews-page-section {
        padding: 40px 0;
    }
}

@media (max-width: 768px) {
    .reviews-page-title {
        font-size: 28px;
    }
    
    .reviews-page-subtitle {
        font-size: 14px;
    }
    
    .review-card {
        border-radius: 10px;
        margin-bottom: 0;
    }
    
    .review-lightbox-close {
        top: 15px;
        right: 20px;
        font-size: 30px;
        width: 40px;
        height: 40px;
    }
}

@media (max-width: 576px) {
    
    .reviews-page-title {
        font-size: 24px;
    }
    
    .review-lightbox-swiper .swiper-slide img {
        max-width: 95%;
    }
    
    .review-lightbox-next,
    .review-lightbox-prev {
        width: 40px;
        height: 40px;
    }
}

.no-reviews-message {
    font-size: 18px;
    color: #6c757d;
    padding: 60px 20px;
    margin: 0;
}

/* ===== show.blade.php ===== */
.blog-tag-link {
            display: inline-block;
            padding: 6px 12px;
            background: #f8f9fa;
            color: #333;
            text-decoration: none;
            border-radius: 4px;
            font-size: 13px;
            font-weight: 500;
            transition: all 0.3s ease;
            border: 1px solid #e9ecef;
        }
        .blog-tag-link:hover {
            background: #007bff;
            color: white;
            border-color: #007bff;
            transform: translateY(-2px);
            box-shadow: 0 2px 8px rgba(0, 123, 255, 0.3);
        }
        .gap-2 {
            gap: 8px;
        }

/* ===== theme4.blade.php ===== */
.custom-product-button-group {
                height: 100% !important;
                left: 71px !important;
                top: 5px !important;
            }

            @media (min-width: 992px) {
                .custom-product-button-group {
                    left: 100px !important;
                }
            }
