/* =========================================================
REVIEWS PAGE – FINAL 🔥
========================================================= */

.reviews-section{
    padding:40px 0;
}

.reviews-rating{
    font-size:16px;
    margin-bottom:25px;
    font-weight:500;
}

/* =========================================================
GRID
========================================================= */

.reviews-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit, minmax(280px,1fr));
    gap:20px;
}

/* =========================================================
CARD
========================================================= */

.review-card{
    background:#fff;
    border-radius:14px;
    padding:20px;

    border:1px solid #e5e7eb;
    box-shadow:0 10px 25px rgba(0,0,0,0.05);

    transition:.2s;
}

.review-card:hover{
    transform:translateY(-3px);
}

/* STARS */
.review-stars{
    color:#fbbf24;
    font-size:16px;
    margin-bottom:8px;
}

/* TEXT */
.review-text{
    font-size:15px;
    line-height:1.5;
    margin-bottom:10px;
}

/* FOOTER */
.review-footer{
    display:flex;
    justify-content:space-between;
    font-size:13px;
    color:#6b7280;
}


/* =========================================================
EMPTY STATE
========================================================= */

.reviews-empty{
    padding:20px;
    background:#f9fafb;
    border-radius:10px;
}


/* =========================================================
FORM
========================================================= */

.review-form{
    max-width:900px;
    margin:40px auto 0;

    background:#fff;
    padding:30px;
    border-radius:16px;

    box-shadow:0 15px 40px rgba(0,0,0,0.06);
}

.review-form-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:10px;
    margin-bottom:10px;
}

.review-form input{
    padding:10px;
    border:1px solid #d1d5db;
    border-radius:8px;
}

/* TEXTAREA */
.review-form textarea{
    width:100%;
    margin-top:10px;

    padding:12px;
    border-radius:10px;
    border:1px solid #d1d5db;

    min-height:100px;
    resize:vertical;
}

/* BUTTON */
.review-form button{
    margin-top:10px;
}


/* =========================================================
STARS SELECT (INTERACTIVE)
========================================================= */

.rating-stars{
    display:flex;
    gap:5px;
    font-size:22px;
    cursor:pointer;
}

.rating-stars span{
    color:#d1d5db;
    transition:.2s;
}

.rating-stars span.active,
.rating-stars span:hover{
    color:#fbbf24;
}


/* =========================================================
DIVIDER
========================================================= */

.reviews-divider{
    margin:40px 0;
}


/* =========================================================
RESPONSIVE
========================================================= */

@media (max-width:768px){

    .review-form-grid{
        grid-template-columns:1fr;
    }

    .review-footer{
        flex-direction:column;
        gap:5px;
    }
}

.review-form-grid{
    grid-template-columns:1fr 1fr;
}

.review-form-grid{
    gap:15px;
}

.review-form textarea{
    width:100%;
}

.review-form button{
    display:block;
    margin:15px auto 0;
}

.hidden-field {
    position: absolute;
    left: -9999px;
    opacity: 0;
    pointer-events: none;
}

.rating-stars{
    display:flex;
    justify-content:center;
    align-items:center;
    gap:10px;
    margin:12px 0 20px;
}

.rating-stars span{
    font-size:26px;
    cursor:pointer;
    transition:.2s;
}

.rating-stars span.active{
    color:#facc15;
    transform:scale(1.15);
}

.rating-label{
    text-align:center;
    font-size:14px;
    margin-bottom:5px;
    color:#64748b;
}

.rating-feedback{
    text-align:center;
    font-size:14px;
    margin-top:5px;
    color:#475569;
    min-height:20px;
    transition:.2s;
}

/* =========================================================
SKELETON
========================================================= */
.reviews-skeleton{
    display:flex;
    flex-direction:column;
    gap:16px;
}

.skeleton-card{
    height:120px;
    border-radius:14px;
    background:linear-gradient(90deg,#e5e7eb 25%,#f3f4f6 50%,#e5e7eb 75%);
    background-size:200% 100%;
    animation:skeleton-loading 1.4s infinite linear;
}

@keyframes skeleton-loading{
    0%{ background-position:200% 0; }
    100%{ background-position:-200% 0; }
}

/* =========================================================
ASCUNDERE FORM CAMP
========================================================= */

.hidden-field{
    display: none !important;
}

/* =========================================================
PAGE TITLE
========================================================= */
.page-title {
    font-size: 34px;
    font-weight: 700;
    color: #1e3a8a;
    margin-bottom: 24px;
    letter-spacing: -0.3px;
    position: relative;
    display: inline-block;
}

.page-title::after {
    content: "";
    display: block;
    width: 60px;
    height: 3px;
    background: #1e3a8a;
    opacity: 0.25;
    margin-top: 8px;
    border-radius: 2px;
}

.page-reviews {
    padding-top: 60px;
}



