/* 
   FRESH REVIEWS SECTION (Namespaced) 
   Prefix: .fr-
*/

.fr-section {
    padding: 5rem 0;
    background-color: #f9f8f6;
    /* Off-white premium */
    overflow: hidden;
    position: relative;
}

.fr-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
    text-align: center;
}

.fr-title {
    font-family: "Source Serif 4", Georgia, serif;
    font-size: 2.5rem;
    color: #c5a16b;
    /* Gold */
    margin-bottom: 0.5rem;
}

.fr-subtitle {
    font-family: system-ui, -apple-system, sans-serif;
    color: #5a5856;
    font-size: 1.1rem;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* CAROUSEL WRAPPER */
.fr-carousel-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
}

.fr-track-container {
    overflow: hidden;
    width: 100%;
}

.fr-track {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
    will-change: transform;
}

/* CARD DESIGN */
.fr-card {
    flex: 0 0 100%;
    /* Mobile default */
    max-width: 100%;
    padding: 1rem;
    box-sizing: border-box;
}

.fr-card-inner {
    background: #ffffff;
    border-radius: 16px;
    padding: 2.5rem 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    /* Soft elevation */
    border: 1px solid rgba(197, 161, 107, 0.2);
    /* Subtle gold border */
    text-align: left;
    height: 100%;
    min-height: 320px;
    display: flex;
    flex-direction: column;
    position: relative;
}

/* Watermark Quote */
.fr-card-inner::after {
    content: "“";
    position: absolute;
    top: 1rem;
    right: 1.5rem;
    font-size: 6rem;
    line-height: 1;
    color: rgba(197, 161, 107, 0.1);
    font-family: serif;
    pointer-events: none;
}

.fr-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    border-bottom: 1px solid #f0ede8;
    padding-bottom: 1rem;
}

.fr-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #e0c79a;
}

.fr-avatar-placeholder {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #f0ede8;
    color: #9a774f;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: serif;
    font-size: 1.5rem;
    font-weight: bold;
    border: 2px solid #e0c79a;
}

.fr-meta {
    display: flex;
    flex-direction: column;
}

.fr-name {
    font-weight: 700;
    color: #2d2d2b;
    font-size: 1.1rem;
    font-family: serif;
}

.fr-stars {
    color: #fbbf24;
    letter-spacing: 2px;
    font-size: 0.9rem;
}

.fr-text {
    font-size: 1rem;
    line-height: 1.7;
    color: #4a4846;
    font-style: italic;
    flex-grow: 1;
}

/* NAVIGATION */
.fr-nav-btn {
    background: #ffffff;
    border: 1px solid #ddd9d4;
    color: #c5a16b;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.fr-nav-btn:hover {
    background: #c5a16b;
    color: #ffffff;
    border-color: #c5a16b;
}

.fr-input-link {
    display: inline-block;
    margin-top: 2rem;
    color: #9a774f;
    text-decoration: none;
    font-weight: 500;
    border-bottom: 1px solid transparent;
    transition: border 0.3s;
}

.fr-input-link:hover {
    border-bottom-color: #9a774f;
}

/* RESPONSIVE */
@media (min-width: 900px) {
    .fr-card {
        flex: 0 0 33.333%;
        max-width: 33.333%;
    }
}