/* ============================================================
   Bravo Tea Vérnyomás – Hungarian Amazon Landing Page
   Design: bold-editorial | border: pill | shadow: dramatic
   Header: accent-bar | CTA: solid
   Palette: #9C1C66 (berry), #F1A9B8 (rose), #630E76 (plum), #B3D0D9 (ice blue)
   ============================================================ */

:root {
    --berry:        #9C1C66;
    --rose:         #F1A9B8;
    --plum:         #630E76;
    --ice:          #B3D0D9;
    --bg:           #fdf7fb;
    --surface:      #ffffff;
    --text:         #1a0f1e;
    --text-muted:   #6b5b72;
    --border:       #e8d8ed;
    --radius-card:  26px;
    --radius-btn:   50px;
    --shadow:       0 20px 60px rgba(99,14,118,0.14);
    --shadow-hover: 0 28px 72px rgba(99,14,118,0.24);
    --font:         'Inter', sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
    font-family: var(--font);
    font-size: clamp(14px, 4vw, 16px);
    background: var(--bg);
    color: var(--text);
    line-height: 1.7;
    overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }

/* ============================================================
   HEADER — accent-bar: berry → plum gradient, white name centered
   ============================================================ */
.site-header {
    background: linear-gradient(90deg, var(--plum) 0%, var(--berry) 100%);
    padding: 1rem 1.25rem;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 4px 20px rgba(99,14,118,0.32);
}

.header-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
}

.site-name {
    color: #ffffff;
    font-size: clamp(13px, 3.2vw, 16px);
    font-weight: 600;
    text-align: center;
    letter-spacing: 0.01em;
}

/* ============================================================
   PRODUCT SECTION
   ============================================================ */
.product-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 3rem 1rem 1.5rem;
}

.product-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
}

@media (min-width: 768px) {
    .product-grid {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
        align-items: start;
    }
}

/* ============================================================
   GALLERY — pill, dramatic shadow
   ============================================================ */
.gallery-wrap {
    background: var(--surface);
    border-radius: var(--radius-card);
    box-shadow: var(--shadow);
    padding: 1.5rem;
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.gallery-wrap:hover {
    box-shadow: var(--shadow-hover);
    transform: translateY(-3px);
}

.gallery-wrap input[type="radio"] { display: none; }

.slides {
    position: relative;
    width: 100%;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    border-radius: 18px;
    background: linear-gradient(135deg, #fdf0f7 0%, #f5eafb 100%);
}

.slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.35s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

#s1:checked ~ .slides #slide1,
#s2:checked ~ .slides #slide2,
#s3:checked ~ .slides #slide3,
#s4:checked ~ .slides #slide4 { opacity: 1; }

/* Dots */
.gallery-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 1rem;
}

.gallery-dots label {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--border);
    cursor: pointer;
    transition: background 0.2s, transform 0.2s;
    display: block;
}

.gallery-dots label:hover { transform: scale(1.3); }

#s1:checked ~ .gallery-dots label[for="s1"],
#s2:checked ~ .gallery-dots label[for="s2"],
#s3:checked ~ .gallery-dots label[for="s3"],
#s4:checked ~ .gallery-dots label[for="s4"] { background: var(--berry); }

/* Thumbnails */
.gallery-thumbs {
    display: flex;
    gap: 0.5rem;
    margin-top: 0.85rem;
    justify-content: center;
    flex-wrap: wrap;
}

.gallery-thumbs label {
    cursor: pointer;
    border: 2px solid transparent;
    border-radius: 12px;
    overflow: hidden;
    flex: 0 0 58px;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.gallery-thumbs label img {
    width: 58px;
    height: 58px;
    object-fit: cover;
}

.gallery-thumbs label:hover { border-color: var(--berry); }

#s1:checked ~ .gallery-thumbs label[for="s1"],
#s2:checked ~ .gallery-thumbs label[for="s2"],
#s3:checked ~ .gallery-thumbs label[for="s3"],
#s4:checked ~ .gallery-thumbs label[for="s4"] {
    border-color: var(--berry);
    box-shadow: 0 0 0 2px rgba(156,28,102,0.2);
}

/* ============================================================
   PRODUCT INFO — bold-editorial
   ============================================================ */
.product-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

/* BOLD-EDITORIAL: very large headline */
.product-title {
    font-size: clamp(28px, 5vw, 46px);
    font-weight: 700;
    line-height: 1.12;
    color: var(--plum);
    letter-spacing: -0.025em;
}

.product-description {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

/* Accent block — mini info table, pill container */
.accent-block {
    background: linear-gradient(135deg, rgba(241,169,184,0.15) 0%, rgba(179,208,217,0.12) 100%);
    border-radius: var(--radius-card);
    border: 1px solid var(--border);
    overflow: hidden;
}

.accent-row {
    display: grid;
    grid-template-columns: 110px 1fr;
    border-bottom: 1px solid var(--border);
}

.accent-row:last-child { border-bottom: none; }

.accent-key {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--berry);
    padding: 0.55rem 0.75rem;
    border-right: 1px solid var(--border);
    display: flex;
    align-items: center;
}

.accent-val {
    font-size: clamp(13px, 3.5vw, 14px);
    color: var(--text);
    padding: 0.55rem 0.75rem;
    display: flex;
    align-items: center;
    font-weight: 500;
}

.product-intro {
    font-size: clamp(14px, 4vw, 15px);
    color: var(--text-muted);
    line-height: 1.72;
}

/* Feature strip — bold editorial: numbered items with separator */
.feature-strip {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.fs-item {
    padding: 0.9rem 0;
    border-bottom: 1px solid var(--border);
}

.fs-item:last-child { border-bottom: none; }

.fs-item strong {
    display: block;
    font-size: clamp(14px, 3.5vw, 15px);
    font-weight: 700;
    color: var(--plum);
    margin-bottom: 0.3rem;
}

.fs-item p {
    font-size: clamp(14px, 3.8vw, 15px);
    line-height: 1.68;
    color: var(--text);
}

.seo-note {
    font-size: clamp(13px, 3.5vw, 13px);
    color: var(--text-muted);
    padding: 0.7rem 0.9rem;
    background: rgba(179,208,217,0.15);
    border-left: 3px solid var(--ice);
    border-radius: 0 14px 14px 0;
}

/* ============================================================
   CTA — solid pill, berry
   ============================================================ */
.cta-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2.5rem 1rem;
    display: flex;
    justify-content: center;
}

.cta-btn {
    display: inline-block;
    width: 100%;
    max-width: 560px;
    text-align: center;
    padding: 1.1rem 2.5rem;
    min-height: 58px;
    font-size: clamp(16px, 4vw, 19px);
    font-weight: 700;
    color: #ffffff;
    background: var(--berry);
    border-radius: var(--radius-btn);
    text-decoration: none;
    letter-spacing: 0.02em;
    box-shadow: 0 8px 28px rgba(156,28,102,0.32);
    transition: background 0.22s, box-shadow 0.22s, transform 0.18s;
    border: none;
}

.cta-btn:hover {
    background: var(--plum);
    box-shadow: 0 14px 40px rgba(99,14,118,0.38);
    transform: translateY(-2px);
}

/* ============================================================
   REVIEWS — Amazon style
   ============================================================ */
.reviews-section {
    max-width: 860px;
    margin: 0 auto;
    padding: 0 1rem 3.5rem;
}

.reviews-title {
    font-size: clamp(20px, 5vw, 28px);
    font-weight: 700;
    color: var(--plum);
    margin-bottom: 1.5rem;
    padding-bottom: 0.6rem;
    border-bottom: 2px solid var(--border);
    letter-spacing: -0.02em;
}

.review {
    padding: 1.5rem 0;
    border-bottom: 1px solid var(--border);
}

.review:last-child { border-bottom: none; }

.review-header {
    display: flex;
    align-items: flex-start;
    gap: 0.85rem;
    margin-bottom: 0.45rem;
}

.review-avatar { flex-shrink: 0; }

.review-avatar img {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--rose);
    box-shadow: 0 2px 8px rgba(156,28,102,0.1);
}

.review-meta {
    display: flex;
    flex-direction: column;
    gap: 0.1rem;
}

.reviewer-name {
    font-weight: 700;
    font-size: clamp(14px, 3.5vw, 15px);
    color: var(--text);
}

.stars {
    color: var(--rose);
    font-size: 1rem;
    letter-spacing: 1px;
    filter: brightness(0.82);
}

.review-headline {
    font-weight: 600;
    font-size: clamp(14px, 3.5vw, 15px);
    color: var(--plum);
    line-height: 1.4;
}

.review-date {
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 0.2rem;
}

.review-attr {
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 0.65rem;
}

.review-body {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    font-size: clamp(14px, 4vw, 15px);
    line-height: 1.75;
}

/* ============================================================
   FOOTER — plum, rose hover
   ============================================================ */
.site-footer {
    background: var(--plum);
    color: rgba(255,255,255,0.65);
    padding: 1.75rem 1rem;
    margin-top: 2rem;
}

.footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    text-align: center;
}

@media (min-width: 768px) {
    .footer-inner {
        flex-direction: row;
        justify-content: space-between;
        text-align: left;
    }
}

.footer-brand {
    font-weight: 700;
    font-size: clamp(12px, 3vw, 14px);
    color: #ffffff;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.4rem 1.25rem;
}

.footer-links a {
    color: rgba(255,255,255,0.60);
    text-decoration: none;
    font-size: 13px;
    transition: color 0.2s;
}

.footer-links a:hover { color: var(--rose); }