/* ========================================
   고객후기 - Premium Luxury
   ======================================== */

/* Page Hero - style.css page-hero--dark로 통합 */

/* Filter Section */
.reviews-filter-section {
    padding: 0;
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border-light);
    position: sticky;
    top: var(--header-h);
    z-index: 100;
}

.filter-tabs {
    display: flex;
    gap: 0;
    justify-content: center;
}

.filter-tab {
    padding: 18px 28px;
    background: transparent;
    border: none;
    border-bottom: 2px solid transparent;
    font-size: 13px;
    font-weight: 400;
    color: var(--text-muted);
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    letter-spacing: 0.03em;
    position: relative;
}

.filter-tab::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 50%;
    width: 0;
    height: 2px;
    background: #8b7355;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    transform: translateX(-50%);
}

.filter-tab:hover {
    color: var(--black);
}

.filter-tab:hover::after {
    width: 60%;
}

.filter-tab.active {
    color: #8b7355;
    border-bottom-color: transparent;
    font-weight: 500;
}

.filter-tab.active::after {
    width: 100%;
}

/* Reviews Grid */
.reviews-list-section {
    padding: 64px 0;
    background: var(--bg-light);
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 48px;
}

/* Review Card */
.review-card {
    background: var(--white);
    overflow: hidden;
    border-radius: 4px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.review-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.1);
}

.review-card-image {
    aspect-ratio: 4/3;
    background: var(--bg-light);
    overflow: hidden;
}

.review-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

.review-card-image .placeholder-image {
    height: 100%;
    border-radius: 0;
    transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

/* Review Card Body */
.review-card-body {
    padding: 28px 24px;
}

.review-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.review-card-name {
    font-size: 14px;
    font-weight: 600;
    color: var(--black);
    letter-spacing: 0.01em;
}

.review-card-date {
    font-size: 11px;
    color: var(--text-muted);
    letter-spacing: 0.02em;
}

/* Star Ratings */
.review-card-stars {
    display: flex;
    gap: 2px;
    margin-bottom: 14px;
}

.review-card-stars svg {
    flex-shrink: 0;
}

/* Review Text */
.review-card-text {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 16px;
    font-weight: 400;
    word-break: keep-all;
}

/* Cake Type Tag */
.review-card-cake {
    display: inline-block;
    font-family: var(--font-display, 'Cormorant Garamond', serif);
    font-size: 12px;
    color: #8b7355;
    font-style: italic;
    padding: 4px 12px;
    background: rgba(139, 115, 85, 0.06);
    border-radius: 2px;
    border-left: 2px solid #8b7355;
    letter-spacing: 0.02em;
}

/* No Reviews */
.no-reviews {
    grid-column: 1 / -1;
    text-align: center;
    padding: 80px 20px;
    color: var(--text-muted);
}

/* Pagination */
.reviews-pagination {
    display: flex;
    gap: 8px;
    justify-content: center;
}

.page-btn {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 4px;
    font-size: 13px;
    font-weight: 400;
    color: var(--text-muted);
    cursor: pointer;
    transition: all 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.page-btn:hover {
    border-color: #8b7355;
    color: #8b7355;
    box-shadow: 0 2px 8px rgba(139, 115, 85, 0.12);
}

.page-btn.active {
    background: #8b7355;
    border-color: #8b7355;
    color: var(--white);
    box-shadow: 0 2px 8px rgba(139, 115, 85, 0.25);
}

.page-btn.next {
    width: auto;
    padding: 0 20px;
    font-weight: 500;
    letter-spacing: 0.02em;
}

/* Review CTA */
.review-cta {
    padding: 80px 0;
    background: var(--white);
}

.cta-box {
    max-width: 640px;
    margin: 0 auto;
    text-align: center;
    padding: 60px 52px;
    background: #1a1a1a;
    border: none;
    border-radius: 4px;
    box-shadow: 0 12px 48px rgba(0, 0, 0, 0.15);
}

.cta-box h2 {
    font-family: var(--font-serif);
    font-size: 24px;
    font-weight: 400;
    color: #fff;
    margin-bottom: 14px;
    letter-spacing: 0.02em;
}

.cta-box p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.8;
    margin-bottom: 32px;
    font-weight: 400;
}

.cta-buttons {
    display: flex;
    gap: 12px;
    justify-content: center;
    margin-bottom: 20px;
}

.btn-review-submit {
    padding: 14px 40px;
    background: #8b7355;
    color: #fff;
    font-size: 13px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    letter-spacing: 0.06em;
    border-radius: 2px;
}

.btn-review-submit:hover {
    background: #a08968;
    box-shadow: 0 4px 16px rgba(139, 115, 85, 0.35);
}

.btn-review-help {
    padding: 14px 40px;
    background: transparent;
    color: rgba(255, 255, 255, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.2);
    font-size: 13px;
    font-weight: 400;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    letter-spacing: 0.04em;
    border-radius: 2px;
}

.btn-review-help:hover {
    border-color: rgba(255, 255, 255, 0.5);
    color: #fff;
}

.cta-note {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.35) !important;
    font-weight: 400;
    margin-bottom: 0 !important;
}

/* Responsive */
@media (max-width: 1024px) {
    .reviews-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .reviews-filter-section {
        top: 60px;
    }
    .filter-tab {
        padding: 14px 20px;
        font-size: 12px;
    }
    .reviews-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    .review-card-body { padding: 24px 20px; }
    .cta-box {
        padding: 40px 28px;
    }
    .cta-buttons {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .filter-tab {
        padding: 12px 16px;
        font-size: 12px;
    }
    .review-card-body {
        padding: 20px 16px;
    }
    .cta-box {
        padding: 32px 18px;
    }
    .page-btn { width: 36px; height: 36px; }
}
