﻿/* ============================================================
   carbuni-brichetati-hexagonali.css
   Pagina produs Ogatan — HERO (Pas 3/4).
   Tokenuri aliniate cu site-ul: accent #C10206, bg #0a0a0a.
   Fonturi: Black Ops One (titlu) / Inter (corp) / Teko (preț) —
   deja încărcate global în _Layout.
   ============================================================ */
.ogatan-wrap {
    --og-red: #C10206;
    --og-red-2: #ff3b3f;
    --og-bg: #0a0a0a;
    --og-panel: #141414;
    --og-line: rgba(255,255,255,.10);
    --og-text: #FFFBF2;
    --og-muted: #b6b6b6;
    background: var(--og-bg);
    color: var(--og-text);
    font-family: 'Inter', system-ui, sans-serif;
    padding: 24px 16px 60px;
}

.ogatan-hero {
    max-width: 1180px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.05fr 1fr;
    gap: 40px;
    align-items: start;
}

/* ---------- GALERIE ---------- */
.og-gallery {
    position: sticky;
    top: 130px;
}

.og-main {
    position: relative;
    background: radial-gradient(circle at 50% 35%, #2a2a2a 0%, #0e0e0e 70%);
    border: 1px solid var(--og-line);
    border-radius: 18px;
    overflow: hidden;
    aspect-ratio: 1 / 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .og-main img {
        width: 100%;
        height: 100%;
        object-fit: contain;
        display: block;
    }

.og-flag {
    position: absolute;
    top: 14px;
    left: 14px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(0,0,0,.6);
    border: 1px solid var(--og-line);
    backdrop-filter: blur(6px);
    color: #fff;
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .04em;
    text-transform: uppercase;
    padding: 6px 12px;
    border-radius: 999px;
}

.og-flag-discount {
    position: absolute;
    top: 14px;
    right: 14px;
    background: var(--og-red);
    color: #fff;
    font-family: 'Teko', sans-serif;
    font-size: 1.4rem;
    font-weight: 600;
    line-height: 1;
    padding: 6px 12px 3px;
    border-radius: 10px;
    letter-spacing: .02em;
}

.og-thumbs {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 8px;
    margin-top: 12px;
}

.og-thumb {
    aspect-ratio: 1 / 1;
    background: var(--og-panel);
    border: 1px solid var(--og-line);
    border-radius: 10px;
    overflow: hidden;
    cursor: pointer;
    padding: 0;
    transition: border-color .15s ease, transform .15s ease;
}

    .og-thumb img {
        width: 100%;
        height: 100%;
        object-fit: contain;
        display: block;
    }

    .og-thumb.is-active {
        border-color: var(--og-red);
    }

    .og-thumb:hover {
        transform: translateY(-2px);
    }

/* ---------- INFO ---------- */
.og-info {
    padding-top: 6px;
}

.og-eyebrow {
    display: inline-block;
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--og-red-2);
    margin-bottom: 10px;
}

.og-title {
    font-family: 'Black Ops One', sans-serif;
    font-size: clamp(1.6rem, 3.4vw, 2.4rem);
    line-height: 1.12;
    margin: 0 0 12px;
    color: #fff;
}

.og-sub {
    font-size: .98rem;
    line-height: 1.55;
    color: var(--og-muted);
    margin: 0 0 18px;
    max-width: 46ch;
}

.og-rating {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 22px;
    font-size: .9rem;
    color: var(--og-muted);
}

.og-stars {
    color: #f5a623;
    letter-spacing: 1px;
    font-size: 1rem;
}

.og-variant .v-ship {
    display: none;
    font-size: .62rem;
    font-weight: 700;
    color: #28c76f;
    margin-top: 4px;
    line-height: 1.1;
}

.og-variant[data-freeship="1"] .v-ship {
    display: block;
}

/* nota palet (cutii 10+20kg) — apare doar când paletul e selectat */
.og-palet-note {
    display: none;
    font-size: .82rem;
    color: var(--og-muted);
    margin: 0 0 18px;
    padding: 8px 12px;
    background: rgba(255,255,255,.04);
    border: 1px solid var(--og-line);
    border-radius: 8px;
}

    .og-palet-note.is-on {
        display: block;
    }

/* variante */
.og-variants-label {
    font-size: .8rem;
    text-transform: uppercase;
    letter-spacing: .08em;
    color: var(--og-muted);
    margin-bottom: 8px;
}

.og-variants {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin-bottom: 24px;
}

.og-variant {
    background: var(--og-panel);
    border: 1.5px solid var(--og-line);
    border-radius: 12px;
    padding: 14px 8px;
    text-align: center;
    cursor: pointer;
    transition: border-color .15s ease, background .15s ease;
}

    .og-variant:hover {
        border-color: rgba(255,255,255,.35);
    }

    .og-variant.is-active {
        border-color: var(--og-red);
        background: rgba(193,2,6,.08);
    }

    .og-variant .v-size {
        display: block;
        font-family: 'Teko', sans-serif;
        font-size: 1.5rem;
        line-height: 1;
        color: #fff;
    }

    .og-variant .v-price {
        display: block;
        font-size: .82rem;
        color: var(--og-muted);
        margin-top: 4px;
    }

    .og-variant.is-active .v-price {
        color: var(--og-red-2);
        font-weight: 700;
    }

/* pret */
.og-pricing {
    display: flex;
    align-items: baseline;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 4px;
}

.og-price-new {
    font-family: 'Teko', sans-serif;
    font-size: 2.8rem;
    line-height: 1;
    color: #fff;
    font-weight: 600;
}

.og-price-old {
    font-size: 1.1rem;
    color: #8a8a8a;
    text-decoration: line-through;
    text-decoration-color: var(--og-red);
}

.og-price-unit {
    font-size: .9rem;
    color: var(--og-muted);
}

.og-price-kg {
    font-size: .85rem;
    color: var(--og-red-2);
    font-weight: 600;
    margin: 2px 0 20px;
}

/* qty + cta */
.og-buy {
    display: flex;
    gap: 12px;
    align-items: stretch;
    margin-bottom: 16px;
}

.og-qty {
    display: inline-flex;
    align-items: center;
    border: 1.5px solid var(--og-line);
    border-radius: 12px;
    overflow: hidden;
    background: var(--og-panel);
}

    .og-qty button {
        width: 44px;
        height: 100%;
        background: none;
        border: none;
        color: #fff;
        font-size: 1.3rem;
        cursor: pointer;
    }

    .og-qty span {
        min-width: 36px;
        text-align: center;
        font-weight: 700;
        font-size: 1rem;
    }

.og-cta {
    flex: 1;
    background: var(--og-red);
    color: #fff;
    border: none;
    border-radius: 12px;
    font-family: 'Inter', sans-serif;
    font-size: 1.05rem;
    font-weight: 800;
    letter-spacing: .02em;
    text-transform: uppercase;
    cursor: pointer;
    padding: 16px 18px;
    transition: background .15s ease, transform .1s ease;
}

    .og-cta:hover {
        background: #a00205;
    }

    .og-cta:active {
        transform: scale(.99);
    }

.og-stock {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: .85rem;
    color: #28c76f;
    font-weight: 600;
}

    .og-stock .dot {
        width: 8px;
        height: 8px;
        border-radius: 50%;
        background: #28c76f;
        box-shadow: 0 0 0 4px rgba(40,199,111,.18);
    }

/* ---------- MOBILE ---------- */
@media (max-width: 860px) {
    .ogatan-hero {
        grid-template-columns: 1fr;
        gap: 22px;
    }

    .og-gallery {
        position: static;
    }

    .og-thumbs {
        grid-template-columns: repeat(6, 1fr);
    }

    .og-price-new {
        font-size: 2.4rem;
    }
}

@media (max-width: 420px) {
    .og-thumbs {
        grid-template-columns: repeat(5, 1fr);
    }

    .og-variants {
        gap: 6px;
    }
}

/* ---------- SĂGEȚI GALERIE ---------- */
.og-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 3;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 1px solid var(--og-line);
    background: rgba(0,0,0,.55);
    backdrop-filter: blur(4px);
    color: #fff;
    font-size: 1.6rem;
    line-height: 1;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background .15s ease, transform .15s ease;
}

.og-freeship-note {
    display: none;
    align-items: center;
    gap: 6px;
    font-size: .85rem;
    font-weight: 700;
    color: #28c76f;
    margin: 0 0 6px;
}

    .og-freeship-note.is-on {
        display: inline-flex;
    }

.og-arrow:hover {
    background: var(--og-red);
}

.og-arrow:active {
    transform: translateY(-50%) scale(.92);
}

.og-arrow-prev {
    left: 12px;
}

.og-arrow-next {
    right: 12px;
}

@media (max-width: 420px) {
    .og-arrow {
        width: 36px;
        height: 36px;
        font-size: 1.3rem;
    }
}

/* ============================================================
   PAS 10 — Diferențiator + Beneficii (stats+carduri+use-case) + Specs
   ============================================================ */
.og-section-title {
    font-family: 'Black Ops One', sans-serif;
    font-size: clamp(1.3rem, 2.6vw, 1.8rem);
    color: #fff;
    margin: 0 0 18px;
    text-align: center;
}

/* ---- DIFERENȚIATOR ---- */
.og-diff {
    max-width: 1180px;
    margin: 48px auto 0;
    padding: 0 4px;
}

.og-diff-inner {
    background: linear-gradient(135deg, rgba(193,2,6,.10), rgba(255,255,255,.02));
    border: 1px solid var(--og-line);
    border-left: 3px solid var(--og-red);
    border-radius: 14px;
    padding: 28px 26px;
}

.og-diff .og-section-title {
    text-align: left;
    margin-bottom: 12px;
}

.og-diff-text {
    font-size: 1.08rem;
    line-height: 1.65;
    color: var(--og-text);
    margin: 0;
    max-width: 70ch;
}

/* ---- BENEFICII ---- */
.og-benefits {
    max-width: 1180px;
    margin: 56px auto 0;
    padding: 0 4px;
}

/* hero stats */
.og-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    margin-bottom: 28px;
}

.og-stat {
    background: linear-gradient(180deg, rgba(255,255,255,.04), rgba(255,255,255,.01));
    border: 1px solid var(--og-line);
    border-radius: 14px;
    padding: 22px 12px;
    text-align: center;
}

.og-stat-num {
    display: block;
    font-family: 'Teko', sans-serif;
    font-weight: 600;
    font-size: 2.6rem;
    line-height: 1;
    color: var(--og-red-2);
}

.og-stat-lbl {
    display: block;
    font-size: .82rem;
    color: var(--og-muted);
    margin-top: 6px;
}

/* carduri */
.og-benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
}

.og-benefit {
    background: var(--og-panel);
    border: 1px solid var(--og-line);
    border-radius: 14px;
    padding: 22px 20px;
    transition: border-color .15s ease, transform .15s ease;
}

    .og-benefit:hover {
        border-color: rgba(255,255,255,.25);
        transform: translateY(-3px);
    }

.og-benefit-ico {
    font-size: 1.8rem;
    display: block;
    margin-bottom: 10px;
}

.og-benefit h3 {
    font-family: 'Teko', sans-serif;
    font-weight: 600;
    font-size: 1.5rem;
    line-height: 1;
    color: #fff;
    margin: 0 0 8px;
}

.og-benefit p {
    font-size: .92rem;
    line-height: 1.5;
    color: var(--og-muted);
    margin: 0;
}

/* use-cases */
.og-usecases {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    margin-top: 14px;
}

.og-usecase {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    background: rgba(255,255,255,.02);
    border: 1px solid var(--og-line);
    border-radius: 14px;
    padding: 20px;
}

.og-usecase-ico {
    font-size: 1.6rem;
    line-height: 1;
    flex-shrink: 0;
}

.og-usecase h4 {
    font-size: 1rem;
    font-weight: 800;
    color: #fff;
    margin: 0 0 6px;
}

.og-usecase p {
    font-size: .9rem;
    line-height: 1.5;
    color: var(--og-muted);
    margin: 0;
}

/* ---- SPECIFICAȚII ---- */
.og-specs {
    max-width: 760px;
    margin: 56px auto 0;
    padding: 0 4px;
}

.og-specs-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--og-panel);
    border: 1px solid var(--og-line);
    border-radius: 14px;
    overflow: hidden;
}

    .og-specs-table th,
    .og-specs-table td {
        text-align: left;
        padding: 14px 18px;
        font-size: .95rem;
        border-bottom: 1px solid var(--og-line);
    }

    .og-specs-table tr:last-child th,
    .og-specs-table tr:last-child td {
        border-bottom: none;
    }

    .og-specs-table th {
        color: var(--og-muted);
        font-weight: 600;
        width: 42%;
        background: rgba(255,255,255,.02);
    }

    .og-specs-table td {
        color: #fff;
        font-weight: 600;
    }

/* text descriptiv sub tabel */
.og-specs-desc {
    margin-top: 28px;
}

    .og-specs-desc h3 {
        font-family: 'Teko', sans-serif;
        font-weight: 600;
        font-size: 1.5rem;
        color: #fff;
        margin: 22px 0 8px;
    }

        .og-specs-desc h3:first-child {
            margin-top: 0;
        }

    .og-specs-desc p {
        font-size: .98rem;
        line-height: 1.65;
        color: var(--og-muted);
        margin: 0;
    }

/* ---- MOBILE ---- */
@media (max-width: 860px) {
    .og-benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .og-usecases {
        grid-template-columns: 1fr;
    }

    .og-stats {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 520px) {
    .og-benefits-grid {
        grid-template-columns: 1fr;
    }

    .og-diff-inner {
        padding: 22px 18px;
    }

    .og-stat-num {
        font-size: 2.2rem;
    }
}

/* ============================================================
   FAQ — Întrebări frecvente (accordion nativ details/summary)
   ============================================================ */
.og-faq {
    max-width: 760px;
    margin: 56px auto 0;
    padding: 0 4px;
}

.og-faq-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.og-faq-item {
    background: var(--og-panel);
    border: 1px solid var(--og-line);
    border-radius: 12px;
    overflow: hidden;
}

    .og-faq-item summary {
        list-style: none;
        cursor: pointer;
        padding: 16px 48px 16px 18px;
        position: relative;
        font-weight: 700;
        font-size: 1rem;
        color: #fff;
        user-select: none;
    }

        .og-faq-item summary::-webkit-details-marker {
            display: none;
        }

        /* semnul + / − în dreapta */
        .og-faq-item summary::after {
            content: "+";
            position: absolute;
            right: 18px;
            top: 50%;
            transform: translateY(-50%);
            font-size: 1.4rem;
            line-height: 1;
            color: var(--og-red-2);
            transition: transform .2s ease;
        }

    .og-faq-item[open] summary::after {
        content: "−";
    }

    .og-faq-item[open] summary {
        color: var(--og-red-2);
    }

.og-faq-a {
    padding: 0 18px 16px;
}

    .og-faq-a p {
        margin: 0;
        font-size: .95rem;
        line-height: 1.6;
        color: var(--og-muted);
    }