/* =====================================================================
   index_v2.css — Ana sayfa yeniden tasarim (katalog-once + sicak editoryal)
   index.css'ten SONRA yuklenir; sadece ana sayfayi etkiler.
   Geri donus: index.html'den bu dosyanin <link> satirini sil.
   ===================================================================== */

:root {
    --hv2-cream:   #faf7f0;
    --hv2-cream-2: #f2ede1;
    --hv2-line:    #e4ddcc;
    --hv2-ink:     #14110c;
    --hv2-muted:   #6f6857;
}

/* ---------- HERO ---------- */
.hero-v2 {
    position: relative;
    background:
        radial-gradient(760px 420px at 78% 8%, rgba(242,122,26,0.13) 0%, transparent 62%),
        radial-gradient(620px 380px at 6% 96%, rgba(214,28,28,0.07) 0%, transparent 66%),
        linear-gradient(168deg, var(--hv2-cream) 0%, var(--hv2-cream-2) 100%);
    border-bottom: 1px solid var(--hv2-line);
    overflow: hidden;
    isolation: isolate;
}
.hero-v2::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(20,17,12,0.055) 1px, transparent 1px);
    background-size: 24px 24px;
    mask-image: radial-gradient(ellipse 70% 60% at 50% 0%, #000 20%, transparent 72%);
    -webkit-mask-image: radial-gradient(ellipse 70% 60% at 50% 0%, #000 20%, transparent 72%);
    pointer-events: none;
    z-index: 0;
}
.hv2-inner {
    position: relative;
    z-index: 2;
    max-width: 980px;
    margin: 0 auto;
    padding: 36px 24px 28px;
    text-align: center;
}
.hv2-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    background: rgba(255,255,255,0.75);
    border: 1px solid rgba(242,122,26,0.38);
    color: #b7550c;
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 2.2px;
    padding: 7px 15px;
    border-radius: 999px;
    text-transform: uppercase;
    margin-bottom: 14px;
}
.hv2-eyebrow .dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--orange);
    animation: pulseDot 1.6s ease-out infinite;
}
.hv2-title {
    font-family: 'Bricolage Grotesque', serif;
    font-weight: 800;
    font-size: clamp(1.9rem, 4.4vw, 3.15rem);
    line-height: 1.08;
    letter-spacing: -0.03em;
    color: var(--hv2-ink);
    margin: 0 0 10px;
}
.hv2-title em {
    font-style: normal;
    color: var(--orange);
    position: relative;
    white-space: nowrap;
}
.hv2-title em::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0.06em;
    height: 0.22em;
    background: rgba(242,122,26,0.18);
    border-radius: 3px;
    z-index: -1;
}
.hv2-sub {
    font-size: 1.03rem;
    line-height: 1.55;
    color: var(--hv2-muted);
    max-width: 620px;
    margin: 0 auto 20px;
}

/* ---------- HERO ARAMA ---------- */
.hv2-searchwrap {
    position: relative;
    max-width: 680px;
    margin: 0 auto;
}
.hv2-search {
    display: flex;
    align-items: center;
    gap: 8px;
    background: #fff;
    border: 1.5px solid var(--hv2-line);
    border-radius: 16px;
    padding: 7px 7px 7px 18px;
    box-shadow: 0 14px 34px -22px rgba(20,17,12,0.45);
    transition: border-color var(--hover-ease), box-shadow var(--hover-ease);
}
.hv2-search:focus-within {
    border-color: var(--orange);
    box-shadow: 0 0 0 4px rgba(242,122,26,0.13), 0 18px 38px -22px rgba(20,17,12,0.5);
}
.hv2-search > .ico {
    color: var(--orange);
    font-size: 1.15rem;
    flex: none;
}
.hv2-search input {
    flex: 1 1 auto;
    min-width: 0;
    border: 0;
    outline: 0;
    background: transparent;
    font-family: 'Manrope', system-ui, sans-serif;
    font-size: 1.02rem;
    font-weight: 500;
    color: var(--hv2-ink);
    padding: 12px 4px;
}
.hv2-search input::placeholder {
    color: #a49c88;
    font-weight: 500;
}
.hv2-search button {
    flex: none;
    border: 0;
    border-radius: 11px;
    background: var(--orange);
    color: #fff;
    font-weight: 800;
    font-size: 0.92rem;
    padding: 12px 22px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    transition: background var(--hover-ease), transform var(--hover-ease);
}
.hv2-search button:hover {
    background: #d96a10;
    transform: translateY(-1px);
}

/* Oneri kutusu */
.hv2-suggest {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    right: 0;
    background: #fff;
    border: 1px solid var(--hv2-line);
    border-radius: 14px;
    box-shadow: 0 26px 54px -26px rgba(20,17,12,0.5);
    padding: 6px;
    text-align: left;
    max-height: 380px;
    overflow-y: auto;
    z-index: 60;
    display: none;
}
.hv2-suggest.open { display: block; }
.hv2-suggest .grp {
    font-size: 0.66rem;
    font-weight: 800;
    letter-spacing: 1.6px;
    text-transform: uppercase;
    color: #a49c88;
    padding: 9px 12px 5px;
}
.hv2-suggest a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 9px 12px;
    border-radius: 9px;
    color: var(--hv2-ink);
    text-decoration: none;
    font-size: 0.92rem;
    font-weight: 600;
    line-height: 1.3;
}
.hv2-suggest a i {
    color: var(--orange);
    font-size: 0.95rem;
    flex: none;
}
.hv2-suggest a .sub {
    color: var(--hv2-muted);
    font-weight: 600;
    font-size: 0.78rem;
}
.hv2-suggest a:hover,
.hv2-suggest a.active { background: var(--hv2-cream-2); }
.hv2-suggest .empty {
    padding: 16px 12px;
    color: var(--hv2-muted);
    font-size: 0.88rem;
}

/* Populer aramalar */
.hv2-chips {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
    margin: 13px auto 0;
}
.hv2-chips .lbl {
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--hv2-muted);
    align-self: center;
    margin-right: 2px;
}
.hv2-chips a {
    font-size: 0.82rem;
    font-weight: 700;
    color: #5b5445;
    background: rgba(255,255,255,0.8);
    border: 1px solid var(--hv2-line);
    padding: 6px 13px;
    border-radius: 999px;
    text-decoration: none;
    transition: all var(--hover-ease);
}
.hv2-chips a:hover {
    border-color: var(--orange);
    color: var(--orange);
    background: #fff;
    transform: translateY(-1px);
}

/* CTA + guven satiri */
.hv2-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    margin-top: 18px;
}
.hv2-btn {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    font-weight: 800;
    font-size: 0.94rem;
    padding: 13px 24px;
    border-radius: 12px;
    text-decoration: none;
    transition: all var(--hover-ease);
}
.hv2-btn.primary {
    background: var(--orange);
    color: #fff;
    box-shadow: 0 12px 26px -14px rgba(242,122,26,0.8);
}
.hv2-btn.primary:hover {
    background: #d96a10;
    transform: translateY(var(--hover-lift));
    color: #fff;
}
.hv2-btn.ghost {
    background: rgba(255,255,255,0.85);
    border: 1.5px solid var(--hv2-line);
    color: var(--hv2-ink);
}
.hv2-btn.ghost:hover {
    border-color: var(--orange);
    color: var(--orange);
    transform: translateY(var(--hover-lift));
}

.hv2-trust {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px 26px;
    margin-top: 18px;
    padding-top: 14px;
    border-top: 1px solid var(--hv2-line);
}
.hv2-trust span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.86rem;
    font-weight: 700;
    color: var(--hv2-muted);
}
.hv2-trust i {
    color: var(--orange);
    font-size: 1rem;
}

/* ---------- HIZLI ERISIM SERIDI ---------- */
.quick-band {
    max-width: var(--container-max);
    margin: 18px auto 0;
    padding: 0 8px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
}
.qb-card {
    display: flex;
    align-items: center;
    gap: 14px;
    background: #fff;
    border: 1px solid var(--hv2-line);
    border-radius: 15px;
    padding: 13px 16px;
    text-decoration: none;
    color: var(--hv2-ink);
    transition: all var(--hover-ease);
}
.qb-card:hover {
    transform: translateY(var(--hover-lift));
    box-shadow: var(--hover-shadow);
    border-color: rgba(242,122,26,0.45);
    color: var(--hv2-ink);
}
.qb-card .ico {
    flex: none;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: grid;
    place-items: center;
    background: rgba(242,122,26,0.12);
    color: var(--orange);
    font-size: 1.25rem;
}
.qb-card .txt {
    min-width: 0;
    display: flex;
    flex-direction: column;
}
.qb-card .t {
    display: block;
    font-family: 'Bricolage Grotesque', serif;
    font-weight: 700;
    font-size: 1.02rem;
    line-height: 1.2;
    margin-bottom: 2px;
}
.qb-card .d {
    display: block;
    font-size: 0.8rem;
    color: var(--hv2-muted);
    font-weight: 600;
    line-height: 1.35;
}
.qb-card .d strong {
    color: #16a34a;
    font-weight: 800;
}
.qb-card .arw {
    margin-left: auto;
    color: #c3bba6;
    flex: none;
    transition: transform var(--hover-ease), color var(--hover-ease);
}
.qb-card:hover .arw {
    color: var(--orange);
    transform: translateX(3px);
}
.qb-card.wa .ico {
    background: rgba(37,211,102,0.14);
    color: #16a34a;
}
.qb-card.wa:hover { border-color: rgba(37,211,102,0.5); }

/* ---------- KATEGORI KARELERI ---------- */
.cat-tiles {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(148px, 1fr));
    gap: 12px;
}
.cat-tile {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    background: #fff;
    border: 1px solid var(--hv2-line);
    border-radius: 15px;
    padding: 17px 16px;
    text-decoration: none;
    color: var(--hv2-ink);
    overflow: hidden;
    transition: all var(--hover-ease);
}
.cat-tile::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: var(--orange);
    transform: scaleY(0);
    transform-origin: bottom;
    transition: transform var(--hover-ease);
}
.cat-tile:hover {
    transform: translateY(var(--hover-lift));
    box-shadow: var(--hover-shadow);
    border-color: rgba(242,122,26,0.4);
    color: var(--hv2-ink);
}
.cat-tile:hover::before {
    transform: scaleY(1);
    transform-origin: top;
}
.cat-tile .ico {
    width: 40px;
    height: 40px;
    border-radius: 11px;
    display: grid;
    place-items: center;
    background: var(--hv2-cream-2);
    color: var(--orange);
    font-size: 1.2rem;
    transition: all var(--hover-ease);
}
.cat-tile:hover .ico {
    background: var(--orange);
    color: #fff;
    transform: rotate(-6deg);
}
.cat-tile .nm {
    font-weight: 700;
    font-size: 0.9rem;
    line-height: 1.28;
}
.cat-tile .go {
    font-size: 0.74rem;
    font-weight: 700;
    color: #a49c88;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}
.cat-tile:hover .go { color: var(--orange); }

/* ---------- ISTATISTIK SERIDI: 4 -> 3 hucre ---------- */
.stats-strip { grid-template-columns: repeat(3, 1fr); }
@media (max-width: 768px) {
    .stats-strip { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 576px) {
    .stats-strip { grid-template-columns: 1fr; }
    .stat-cell + .stat-cell::before {
        left: 18px;
        right: 18px;
        top: 0;
        width: auto;
        height: 1px;
    }
}

/* ---------- MARKA SERIDI: yavaslat + durdurulabilir ---------- */
.marquee-content { animation-duration: 68s !important; }
.marquee-frame:hover .marquee-content,
.marquee-frame:focus-within .marquee-content { animation-play-state: paused; }
.marquee-pause {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: #fff;
    border: 1px solid var(--hv2-line);
    color: var(--hv2-muted);
    font-size: 0.8rem;
    font-weight: 700;
    padding: 7px 14px;
    border-radius: 999px;
    cursor: pointer;
    transition: all var(--hover-ease);
}
.marquee-pause:hover {
    border-color: var(--orange);
    color: var(--orange);
}
.marquee-frame.is-paused .marquee-content { animation-play-state: paused !important; }
@media (prefers-reduced-motion: reduce) {
    .marquee-content { animation: none !important; }
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 992px) {
    .quick-band { grid-template-columns: 1fr; }
}
@media (max-width: 576px) {
    .hv2-inner { padding: 34px 16px 32px; }
    .hv2-sub { font-size: 0.95rem; }
    .hv2-search {
        flex-wrap: wrap;
        padding: 10px;
        gap: 6px;
    }
    .hv2-search > .ico { display: none; }
    .hv2-search input {
        flex: 1 1 100%;
        padding: 10px 8px;
        font-size: 0.98rem;
    }
    .hv2-search button {
        flex: 1 1 100%;
        justify-content: center;
    }
    .hv2-chips .lbl {
        flex: 1 1 100%;
        text-align: center;
        margin-bottom: 2px;
    }
    .hv2-actions .hv2-btn {
        flex: 1 1 100%;
        justify-content: center;
    }
    .hv2-trust { gap: 8px 16px; }
    .hv2-trust span { font-size: 0.8rem; }
    .cat-tiles {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
    .cat-tile { padding: 14px 13px; }
}
