/* ============================================================
   PUICIK.MD - REVIEWS-PAGE.CSS
   REVIEWS-PAGE.CSS - stiluri specifice paginii de recenzii
   (hero recenzii, rating badge, review cards, galerie foto, lightbox, shorts)
   Se incarca DUPA shared.css (suprascrie unele reguli generice).
   ============================================================ */

/* ===== REVIEWS PAGE STYLES ===== */
        .reviews-hero {
            position: relative;
            padding: 140px 0 60px;
            text-align: center;
            overflow: hidden;
        }

.reviews-hero::before {
            content: '';
            position: absolute;
            top: 0; left: 0; right: 0; bottom: 0;
            background: linear-gradient(135deg, rgba(255,139,122,0.05) 0%, rgba(255,107,107,0.03) 100%);
            pointer-events: none;
        }

.reviews-hero h1 {
            font-size: clamp(40px, 5vw, 62px);
            margin-bottom: 16px;
            background: linear-gradient(135deg, var(--coral) 0%, var(--coral-deep) 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

.reviews-hero .subtitle {
            color: var(--text-body);
            font-size: 18px;
            max-width: 700px;
            margin: 0 auto 40px;
        }

.rating-badge {
            display: inline-flex;
            align-items: center;
            gap: 16px;
            background: var(--white);
            padding: 24px 40px;
            border-radius: var(--radius-lg);
            box-shadow: var(--shadow-lg);
        }

.rating-badge .score {
            font-size: 56px;
            font-weight: 900;
            color: var(--coral-deep);
            line-height: 1;
        }

.rating-badge .details {
            text-align: left;
        }

.rating-badge .stars {
            font-size: 24px;
            color: #FFD700;
            margin-bottom: 4px;
        }

.rating-badge .count {
            color: var(--text-muted);
            font-size: 14px;
            font-weight: 700;
        }

.trust-badges {
            display: flex;
            justify-content: center;
            gap: 32px;
            margin-top: 40px;
            flex-wrap: wrap;
        }

.trust-badge {
            display: flex;
            align-items: center;
            gap: 10px;
            color: var(--text-body);
            font-weight: 700;
            font-size: 15px;
        }

.trust-badge svg {
            width: 24px;
            height: 24px;
            color: var(--coral);
        }

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

.shorts-container {
            display: flex;
            justify-content: center;
            gap: 24px;
            flex-wrap: wrap;
        }

.shorts-wrapper {
            width: 320px;
            aspect-ratio: 9/16;
            border-radius: var(--radius-lg);
            overflow: hidden;
            box-shadow: var(--shadow-lg);
            background: var(--white);
        }

.shorts-wrapper iframe {
            width: 100%;
            height: 100%;
            border: 0;
        }

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

.section-header {
            text-align: center;
            margin-bottom: 40px;
        }

.section-header h2 {
            font-size: 38px;
            margin-bottom: 12px;
        }

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

.review-card {
            background: var(--white);
            border-radius: var(--radius-lg);
            box-shadow: var(--shadow-sm);
            padding: 32px;
            transition: all 0.3s ease;
            border-left: 4px solid transparent;
        }

.review-card:hover {
            transform: translateY(-4px);
            box-shadow: var(--shadow-md);
            border-left-color: var(--coral);
        }

.review-header {
            display: flex;
            align-items: center;
            gap: 14px;
            margin-bottom: 16px;
        }

.review-avatar {
            width: 52px;
            height: 52px;
            border-radius: 50%;
            background: linear-gradient(135deg, var(--coral), var(--coral-deep));
            display: flex;
            align-items: center;
            justify-content: center;
            color: #fff;
            font-weight: 800;
            font-size: 22px;
        }

.review-author-name {
            font-weight: 800;
            font-size: 17px;
            margin-bottom: 2px;
        }

.review-date {
            color: var(--text-muted);
            font-size: 13px;
        }

.review-stars {
            color: #FFD700;
            font-size: 18px;
            margin-bottom: 14px;
        }

.review-text {
            color: var(--text-body);
            line-height: 1.7;
            margin-bottom: 16px;
        }

.review-verified {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            color: var(--coral-deep);
            font-size: 13px;
            font-weight: 700;
        }

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

.photo-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
            gap: 16px;
        }

.photo-grid picture {
            display: block;
        }

.photo-grid img {
            width: 100%;
            aspect-ratio: 1/1;
            object-fit: cover;
            border-radius: var(--radius-md);
            box-shadow: var(--shadow-sm);
            cursor: pointer;
            transition: all 0.3s ease;
        }

.photo-grid img:hover {
            transform: scale(1.03);
            box-shadow: var(--shadow-md);
        }

.photo-grid picture:nth-child(3n+1) {
            grid-row: span 2;
        }

.photo-grid picture:nth-child(3n+1) img {
            aspect-ratio: 1/2;
        }

.lightbox {
            display: none;
            position: fixed;
            top: 0; left: 0; right: 0; bottom: 0;
            background: rgba(0,0,0,0.9);
            z-index: 1000;
            align-items: center;
            justify-content: center;
            padding: 20px;
        }

.lightbox.active {
            display: flex;
        }

.lightbox img {
            max-width: 90%;
            max-height: 90vh;
            object-fit: contain;
            border-radius: var(--radius-md);
        }

.lightbox-close {
            position: absolute;
            top: 20px;
            right: 30px;
            color: white;
            font-size: 40px;
            cursor: pointer;
            background: none;
            border: none;
            font-weight: 300;
        }

.cta-section {
            padding: 60px 0;
            text-align: center;
        }

.cta-banner {
            background: linear-gradient(135deg, var(--coral) 0%, var(--coral-deep) 100%);
            border-radius: var(--radius-lg);
            padding: 60px 40px;
            color: white;
            box-shadow: var(--shadow-lg);
        }

.cta-banner h2 {
            font-size: 38px;
            margin-bottom: 16px;
        }

.cta-banner p {
            font-size: 18px;
            margin-bottom: 32px;
            opacity: 0.95;
        }

.cta-buttons {
            display: flex;
            gap: 16px;
            justify-content: center;
            flex-wrap: wrap;
        }

.cta-btn {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            padding: 16px 32px;
            border-radius: var(--radius-full);
            font-weight: 800;
            font-size: 16px;
            text-decoration: none;
            transition: all 0.3s ease;
        }

.cta-btn-whatsapp {
            background: var(--whatsapp);
            color: white;
            box-shadow: var(--shadow-whatsapp);
        }

.cta-btn-whatsapp:hover {
            background: var(--whatsapp-dark);
            transform: translateY(-2px);
        }

.cta-btn-messenger {
            background: var(--messenger);
            color: white;
            box-shadow: var(--shadow-messenger);
        }

.cta-btn-messenger:hover {
            background: var(--messenger-dark);
            transform: translateY(-2px);
        }

.cta-btn-products {
            background: white;
            color: var(--coral-deep);
        }

.cta-btn-products:hover {
            background: var(--cream);
            transform: translateY(-2px);
        }

.footer {
            padding: 36px 0 48px;
            text-align: center;
            color: var(--text-muted);
        }

.footer a {
            color: var(--coral);
            font-weight: 800;
        }

@media (max-width: 860px) {
            .reviews-grid {
                grid-template-columns: 1fr;
            }
            .photo-grid {
                grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
            }
            .photo-grid img:nth-child(3n+1) {
                grid-row: span 1;
                aspect-ratio: 1/1;
            }
        }

/* ===== CASHBACK BANNER (evidentiat) ===== */
.cashback-section {
    padding: 20px 0 0;
}
.cashback-banner {
    display: flex;
    align-items: center;
    gap: 20px;
    background: linear-gradient(135deg, #FFD966 0%, #FFB347 100%);
    border-radius: var(--radius-lg);
    padding: 24px 32px;
    box-shadow: 0 8px 32px rgba(255, 179, 71, 0.35);
    flex-wrap: wrap;
    border: 2px solid #FFA726;
}
.cashback-icon {
    font-size: 42px;
    flex-shrink: 0;
    line-height: 1;
}
.cashback-text {
    flex: 1;
    min-width: 240px;
    font-size: 17px;
    color: #5C3D00;
    line-height: 1.5;
}
.cashback-text strong {
    color: #7A2E00;
    font-size: 18px;
}
.cashback-btn {
    display: inline-flex;
    align-items: center;
    white-space: nowrap;
    padding: 14px 28px;
    background: #7A2E00;
    color: #fff;
    border-radius: var(--radius-full);
    font-weight: 800;
    text-decoration: none;
    transition: all 0.3s ease;
    flex-shrink: 0;
}
.cashback-btn:hover {
    background: #5C2200;
    transform: translateY(-2px);
}

/* ===== SOCIAL FOLLOW SECTION ===== */
.social-follow-section {
    padding: 20px 0 40px;
    text-align: center;
}
.social-follow-section .social-row {
    justify-content: center;
    margin-top: 0;
}

/* ===== CTA SOCIAL ROW (in banner final) ===== */
.cta-social-row {
    margin-top: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
    font-size: 14px;
}
.cta-social-row span {
    color: rgba(255,255,255,0.85);
    font-weight: 700;
}
.cta-social-row a {
    color: #fff;
    font-weight: 800;
    text-decoration: underline;
    text-underline-offset: 3px;
}
.cta-social-row a:hover {
    opacity: 0.85;
}

@media (max-width: 600px) {
    .cashback-banner {
        flex-direction: column;
        text-align: center;
    }
    .cashback-btn {
        width: 100%;
        justify-content: center;
    }
}
