/* ============================================================
   MorePro Okosóra – Hungarian Amazon Landing Page
   Design: minimalist | border: sharp | shadow: flat
   Header: centered-minimal | CTA: gradient
   Palette: #261E6B (indigo), #4A90E2 (sky), #F08080 (salmon), #6A1E9C (violet)
   ============================================================ */

:root {
    --indigo:       #261E6B;
    --sky:          #4A90E2;
    --salmon:       #F08080;
    --violet:       #6A1E9C;
    --bg:           #ffffff;
    --surface:      #ffffff;
    --text:         #18162a;
    --text-muted:   #5c5a72;
    --border:       #e0dff0;
    --radius-card:  0;
    --radius-btn:   0;
    --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 — centered-minimal, white, 1px bottom line
   ============================================================ */
.site-header {
    background: var(--surface);
    border-bottom: 1px solid var(--border);
    padding: 1.1rem 1.25rem;
    position: sticky;
    top: 0;
    z-index: 100;
    /* flat: no shadow */
}

.header-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
}

.site-name {
    font-size: clamp(13px, 3.2vw, 15px);
    font-weight: 600;
    color: var(--indigo);
    text-align: center;
    letter-spacing: 0.01em;
}

/* ============================================================
   PRODUCT SECTION — minimalist: generous whitespace
   ============================================================ */
.product-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 1rem 1.5rem;
}

.product-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
}

@media (min-width: 768px) {
    .product-grid {
        grid-template-columns: 1fr 1fr;
        gap: 5rem;
        align-items: start;
    }
}

/* ============================================================
   GALLERY — sharp, flat (border only)
   ============================================================ */
.gallery-wrap {
    display: flex;
    flex-direction: column;
    border: 1px solid var(--border);
    padding: 1rem;
    background: #fafafa;
}

.gallery-wrap input[type="radio"] { display: none; }

.slides {
    position: relative;
    width: 100%;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    background: #f5f5ff;
    border-bottom: 1px solid var(--border);
}

.slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.3s 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 — minimalist: thin dashes */
.gallery-dots {
    display: flex;
    justify-content: center;
    gap: 5px;
    margin-top: 0.85rem;
}

.gallery-dots label {
    width: 22px;
    height: 2px;
    border-radius: 0;
    background: var(--border);
    cursor: pointer;
    transition: background 0.2s;
    display: block;
}

#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(--indigo); }

/* Thumbnails — sharp */
.gallery-thumbs {
    display: flex;
    gap: 0.4rem;
    margin-top: 0.7rem;
    flex-wrap: wrap;
}

.gallery-thumbs label {
    cursor: pointer;
    border: 2px solid transparent;
    overflow: hidden;
    flex: 0 0 52px;
    transition: border-color 0.2s;
}

.gallery-thumbs label img {
    width: 52px;
    height: 52px;
    object-fit: cover;
}

.gallery-thumbs label:hover { border-color: var(--indigo); }

#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(--indigo); }

/* ============================================================
   PRODUCT INFO — minimalist: title hero, feature blocks separated by 1px lines
   ============================================================ */
.product-info {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.product-title {
    font-size: clamp(22px, 5vw, 38px);
    font-weight: 700;
    line-height: 1.2;
    color: var(--indigo);
    letter-spacing: -0.02em;
    padding-bottom: 1.5rem;
    border-bottom: 2px solid var(--indigo);
}

.product-description {
    display: flex;
    flex-direction: column;
    gap: 0;
}

/* Feature blocks — minimalist: tag pill (sharp) + text, divider only */
.feature-block {
    padding: 1rem 0;
    border-bottom: 1px solid var(--border);
}

.feature-block:last-of-type { border-bottom: none; }

.fb-tag {
    display: inline-block;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.09em;
    padding: 0.18rem 0.55rem;
    background: var(--indigo);
    color: #ffffff;
    margin-bottom: 0.4rem;
}

.feature-block p {
    font-size: clamp(14px, 3.8vw, 15px);
    line-height: 1.7;
    color: var(--text);
}

.seo-note {
    font-size: 13px;
    color: var(--text-muted);
    padding: 0.65rem 0;
    border-top: 1px solid var(--border);
    margin-top: 0.5rem;
}

/* ============================================================
   CTA — gradient button, sharp
   ============================================================ */
.cta-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 3rem 1rem;
    display: flex;
    justify-content: center;
}

.cta-btn {
    display: inline-block;
    width: 100%;
    max-width: 560px;
    text-align: center;
    padding: 1.1rem 2rem;
    min-height: 56px;
    font-size: clamp(15px, 4vw, 18px);
    font-weight: 700;
    color: #ffffff;
    background: linear-gradient(135deg, var(--indigo) 0%, var(--sky) 100%);
    border-radius: var(--radius-btn);
    text-decoration: none;
    letter-spacing: 0.02em;
    border: none;
    transition: filter 0.22s, box-shadow 0.22s, transform 0.18s;
}

.cta-btn:hover {
    filter: brightness(1.1);
    box-shadow: 0 6px 24px rgba(74,144,226,0.28);
    transform: translateY(-1px);
}

/* ============================================================
   REVIEWS — Amazon style, minimalist
   ============================================================ */
.reviews-section {
    max-width: 860px;
    margin: 0 auto;
    padding: 0 1rem 4rem;
}

.reviews-title {
    font-size: clamp(18px, 5vw, 24px);
    font-weight: 700;
    color: var(--indigo);
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid var(--border);
    letter-spacing: -0.01em;
}

.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.4rem;
}

.review-avatar { flex-shrink: 0; }

.review-avatar img {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    object-fit: cover;
    border: 1px solid var(--border);
}

.review-meta {
    display: flex;
    flex-direction: column;
    gap: 0.1rem;
}

.reviewer-name {
    font-weight: 700;
    font-size: clamp(14px, 3.5vw, 15px);
    color: var(--indigo);
}

.stars {
    color: var(--salmon);
    font-size: 1rem;
    letter-spacing: 1px;
    filter: brightness(0.85);
}

.review-headline {
    font-weight: 600;
    font-size: clamp(14px, 3.5vw, 15px);
    color: var(--text);
    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.55rem;
    font-size: clamp(14px, 4vw, 15px);
    line-height: 1.75;
}

/* ============================================================
   FOOTER — indigo, sky hover
   ============================================================ */
.site-footer {
    background: var(--indigo);
    color: rgba(255,255,255,0.65);
    padding: 1.75rem 1rem;
    margin-top: 2rem;
    border-top: 2px solid var(--sky);
}

.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.58);
    text-decoration: none;
    font-size: 13px;
    transition: color 0.2s;
}

.footer-links a:hover { color: var(--salmon); }