/* ============================================================================
   D4stattoo — Public site stylesheet
   Palet: siyah zemin (#0a0a0a), kırmızı vurgu (#e11d2e), beyaz tipografi
   ========================================================================== */

:root {
    --bg: #0a0a0a;
    --bg-soft: #121212;
    --bg-card: #161616;
    --bg-elev: #1d1d1d;
    --line: #262626;
    --red: #e11d2e;
    --red-dark: #b3121f;
    --white: #f5f5f5;
    --muted: #a3a3a3;
    --radius: 14px;
    --shadow: 0 10px 40px rgba(0, 0, 0, .5);
    --font: "Segoe UI", system-ui, -apple-system, Roboto, "Helvetica Neue", Arial, sans-serif;
    --container: 1200px;
}

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
    margin: 0;
    background: var(--bg);
    color: var(--white);
    font-family: var(--font);
    font-size: 16px;
    line-height: 1.65;
    overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--white); text-decoration: none; transition: color .2s; }
a:hover { color: var(--red); }
ul { padding-inline-start: 1.2em; }
h1, h2, h3, h4 { line-height: 1.25; margin: 0 0 .6em; font-weight: 800; }
h1 { font-size: clamp(1.9rem, 4.5vw, 3.2rem); }
h2 { font-size: clamp(1.5rem, 3vw, 2.2rem); }
h3 { font-size: 1.15rem; }
p { margin: 0 0 1em; }

.container { max-width: var(--container); margin-inline: auto; padding-inline: 20px; width: 100%; }

.sr-only {
    position: absolute; width: 1px; height: 1px; margin: -1px; padding: 0;
    overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}
.skip-link {
    position: absolute; inset-inline-start: -999px; top: 0; z-index: 200;
    background: var(--red); color: #fff; padding: 8px 16px;
}
.skip-link:focus { inset-inline-start: 0; }

/* --- Butonlar ------------------------------------------------------------ */
.btn {
    display: inline-block; padding: 13px 28px; border-radius: 8px;
    font-weight: 700; font-size: .95rem; letter-spacing: .3px;
    border: 2px solid transparent; cursor: pointer; text-align: center;
    transition: transform .15s, background .2s, border-color .2s, color .2s;
}
.btn:active { transform: translateY(1px) scale(.99); }
.btn-primary { background: var(--red); color: #fff; }
.btn-primary:hover { background: var(--red-dark); color: #fff; }
.btn-outline { border-color: var(--white); color: var(--white); background: transparent; }
.btn-outline:hover { border-color: var(--red); color: var(--red); }
.btn-wa { background: #1f9d55; color: #fff; }
.btn-wa:hover { background: #17803f; color: #fff; }
.btn-sm { padding: 9px 18px; font-size: .85rem; }
.btn-block { display: block; width: 100%; }

/* --- Header / Navbar ------------------------------------------------------ */
.site-header {
    position: sticky; top: 0; z-index: 100;
    background: rgba(10, 10, 10, .92);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--line);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 16px; min-height: 68px; }
.brand-logo { height: 34px; width: auto; }

.nav-toggle {
    display: none; align-items: center; justify-content: center;
    min-width: 44px; min-height: 44px; background: none;
    border: 1px solid var(--line); border-radius: 10px;
    color: var(--white); cursor: pointer;
}
.nav-toggle .icon--close { display: none; }
.nav-toggle.open .icon--open { display: none; }
.nav-toggle.open .icon--close { display: block; }

/* Off-canvas parçaları masaüstünde gizli */
.mobile-menu-head, .mobile-menu-cta, .nav-overlay { display: none; }

.nav-list { list-style: none; display: flex; align-items: center; gap: 4px; margin: 0; padding: 0; }
.nav-list > li > a, .drop-btn {
    display: block; padding: 10px 13px; font-weight: 600; font-size: .92rem;
    color: var(--white); background: none; border: 0; cursor: pointer; font-family: inherit;
    white-space: nowrap;
}
.nav-list > li > a:hover, .drop-btn:hover { color: var(--red); }
.caret { display: inline-block; margin-inline-start: 4px; border: 4px solid transparent; border-top-color: currentColor; vertical-align: 2px; }

.has-dropdown { position: relative; }
.dropdown {
    position: absolute; top: 100%; inset-inline-start: 0; min-width: 210px;
    background: var(--bg-elev); border: 1px solid var(--line); border-radius: 10px;
    list-style: none; margin: 0; padding: 8px;
    opacity: 0; visibility: hidden; transform: translateY(8px);
    transition: .2s; box-shadow: var(--shadow); z-index: 50;
}
.has-dropdown:hover > .dropdown,
.has-dropdown:focus-within > .dropdown,
.has-dropdown.open > .dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown a { display: block; padding: 9px 12px; border-radius: 6px; font-size: .9rem; }
.dropdown a:hover { background: var(--bg-card); color: var(--red); }
.dropdown-wide { min-width: 250px; max-height: 70vh; overflow-y: auto; }
.dropdown-all a { color: var(--red); font-weight: 700; }
.nav-cta { margin-inline-start: 8px; }

/* Dil değiştirici */
.lang-switcher { position: relative; }
.lang-btn {
    background: var(--bg-card); border: 1px solid var(--line); color: var(--white);
    padding: 8px 12px; border-radius: 8px; cursor: pointer; font-weight: 700; font-size: .8rem;
}
.lang-menu {
    position: absolute; top: calc(100% + 6px); inset-inline-end: 0; min-width: 140px;
    background: var(--bg-elev); border: 1px solid var(--line); border-radius: 10px;
    list-style: none; margin: 0; padding: 6px;
    opacity: 0; visibility: hidden; transform: translateY(6px); transition: .2s; z-index: 60;
}
.lang-switcher.open .lang-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.lang-menu a { display: block; padding: 8px 12px; border-radius: 6px; font-size: .88rem; }
.lang-menu a.active { color: var(--red); font-weight: 700; }
.lang-menu a:hover { background: var(--bg-card); }

/* --- Flash mesajları ------------------------------------------------------ */
.flash-wrap { margin-top: 16px; }
.flash { padding: 14px 18px; border-radius: 10px; margin-bottom: 10px; font-weight: 600; }
.flash-success { background: #10381f; color: #7ee2a8; border: 1px solid #1f5c36; }
.flash-error { background: #3d1116; color: #ff8f9a; border: 1px solid #6e1c26; }

/* --- Hero ----------------------------------------------------------------- */
.hero {
    position: relative; padding: clamp(70px, 12vw, 140px) 0;
    background:
        radial-gradient(ellipse at 75% 20%, rgba(225, 29, 46, .16), transparent 55%),
        radial-gradient(ellipse at 15% 85%, rgba(225, 29, 46, .08), transparent 50%),
        var(--bg);
    overflow: hidden;
    border-bottom: 1px solid var(--line);
}
.hero::after {
    content: ""; position: absolute; inset: 0; pointer-events: none;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cpath d='M10 110 Q60 10 110 60' stroke='%23ffffff' stroke-opacity='0.02' fill='none' stroke-width='2'/%3E%3C/svg%3E");
}
.hero-inner { position: relative; max-width: 780px; z-index: 1; }
.hero-kicker {
    display: inline-block; color: var(--red); font-weight: 800; letter-spacing: 3px;
    text-transform: uppercase; font-size: .8rem; margin-bottom: 14px;
}
.hero h1 { text-transform: none; }
.hero h1 .accent { color: var(--red); }
.hero-sub { color: var(--muted); font-size: 1.12rem; max-width: 600px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 28px; }

/* --- Rozetler ------------------------------------------------------------- */
.badges { padding: 26px 0; border-bottom: 1px solid var(--line); background: var(--bg-soft); }
.badges-list { display: flex; flex-wrap: wrap; gap: 10px 26px; justify-content: center; list-style: none; margin: 0; padding: 0; }
.badges-list li { display: flex; align-items: center; gap: 8px; color: var(--muted); font-size: .9rem; font-weight: 600; }
.badges-list li::before { content: "✓"; color: var(--red); font-weight: 900; }

/* --- Bölümler ------------------------------------------------------------- */
.section { padding: clamp(50px, 8vw, 90px) 0; }
.section-alt { background: var(--bg-soft); border-block: 1px solid var(--line); }
.section-head { max-width: 640px; margin-bottom: 38px; }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head h2 span { color: var(--red); }
.section-head p { color: var(--muted); }
.section-more { text-align: center; margin-top: 34px; }

/* --- Kartlar (hizmet / blog) ---------------------------------------------- */
.grid { display: grid; gap: 22px; }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

.card {
    background: var(--bg-card); border: 1px solid var(--line); border-radius: var(--radius);
    overflow: hidden; display: flex; flex-direction: column;
    transition: transform .2s, border-color .2s;
}
.card:hover { transform: translateY(-4px); border-color: #3a3a3a; }
.card-img { aspect-ratio: 4 / 3; overflow: hidden; background: var(--bg-elev); }
.card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .35s; }
.card:hover .card-img img { transform: scale(1.05); }
.card-body { padding: 20px; display: flex; flex-direction: column; gap: 8px; flex: 1; }
.card-body h3 a:hover { color: var(--red); }
.card-body p { color: var(--muted); font-size: .92rem; margin: 0; flex: 1; }
.card-link { color: var(--red); font-weight: 700; font-size: .88rem; }
.card-meta { color: var(--muted); font-size: .8rem; }

/* --- Sanatçı -------------------------------------------------------------- */
.artist-wrap { display: grid; grid-template-columns: 340px 1fr; gap: 44px; align-items: center; }
.artist-photo { border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line); }
.artist-photo img { width: 100%; aspect-ratio: 4 / 5; object-fit: cover; }
.artist-info h2 span { color: var(--red); }
.artist-tags { display: flex; flex-wrap: wrap; gap: 8px; margin: 16px 0 22px; padding: 0; list-style: none; }
.artist-tags li { background: var(--bg-elev); border: 1px solid var(--line); padding: 6px 14px; border-radius: 100px; font-size: .82rem; color: var(--muted); }

/* --- Galeri --------------------------------------------------------------- */
.gallery-filters { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 26px; }
.filter-btn {
    background: var(--bg-card); color: var(--muted); border: 1px solid var(--line);
    padding: 8px 18px; border-radius: 100px; cursor: pointer; font-weight: 600; font-size: .85rem;
    transition: .2s; font-family: inherit;
}
.filter-btn:hover, .filter-btn.active { background: var(--red); border-color: var(--red); color: #fff; }

.gallery-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.gallery-item {
    position: relative; aspect-ratio: 4 / 5; border-radius: 12px; overflow: hidden;
    border: 1px solid var(--line); cursor: zoom-in; background: var(--bg-card); padding: 0;
}
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .35s; }
.gallery-item:hover img { transform: scale(1.06); }
.gallery-item .gi-label {
    position: absolute; inset-inline: 0; bottom: 0; padding: 26px 14px 12px;
    background: linear-gradient(transparent, rgba(0, 0, 0, .85));
    font-size: .82rem; font-weight: 600; color: #fff;
    opacity: 0; transition: .25s;
}
.gallery-item:hover .gi-label { opacity: 1; }
.gallery-empty { color: var(--muted); padding: 30px 0; }

/* Önce / Sonra */
.ba-pair { display: grid; grid-template-columns: 1fr 1fr; gap: 4px; border-radius: 12px; overflow: hidden; border: 1px solid var(--line); }
.ba-half { position: relative; aspect-ratio: 4 / 5; }
.ba-half img { width: 100%; height: 100%; object-fit: cover; }
.ba-tag {
    position: absolute; top: 10px; inset-inline-start: 10px; background: rgba(0,0,0,.75);
    color: #fff; font-size: .72rem; font-weight: 800; letter-spacing: 1px;
    padding: 4px 10px; border-radius: 100px; text-transform: uppercase;
}
.ba-tag.after { background: var(--red); }
.ba-title { margin-top: 10px; font-size: .92rem; color: var(--muted); }

/* Lightbox */
.lightbox {
    position: fixed; inset: 0; z-index: 300; background: rgba(0, 0, 0, .92);
    display: flex; align-items: center; justify-content: center; padding: 30px;
}
.lightbox[hidden] { display: none; }
.lightbox img { max-width: min(92vw, 900px); max-height: 86vh; object-fit: contain; border-radius: 10px; }
.lightbox-close {
    position: absolute; top: 18px; inset-inline-end: 22px; background: none; border: 0;
    color: #fff; font-size: 2.4rem; cursor: pointer; line-height: 1;
}
.lightbox-caption { position: absolute; bottom: 20px; inset-inline: 0; text-align: center; color: var(--muted); font-size: .9rem; }

/* --- Hijyen --------------------------------------------------------------- */
.hygiene-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.hyg-item {
    background: var(--bg-card); border: 1px solid var(--line); border-radius: var(--radius);
    padding: 26px 22px;
}
.hyg-item .hyg-icon {
    width: 46px; height: 46px; border-radius: 12px; background: rgba(225, 29, 46, .12);
    color: var(--red); display: flex; align-items: center; justify-content: center;
    font-size: 1.3rem; font-weight: 900; margin-bottom: 14px;
}
.hyg-item p { color: var(--muted); font-size: .9rem; margin: 0; }

/* --- CTA bantları ---------------------------------------------------------- */
.cta-band {
    background: linear-gradient(120deg, rgba(225, 29, 46, .16), transparent 60%), var(--bg-card);
    border: 1px solid var(--line); border-radius: var(--radius);
    padding: clamp(30px, 5vw, 56px);
    display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 22px;
}
.cta-band h2 { margin: 0 0 6px; }
.cta-band p { color: var(--muted); margin: 0; max-width: 520px; }
.cta-actions { display: flex; flex-wrap: wrap; gap: 12px; }

/* Kampanya bandı */
.campaign-band {
    background: var(--red); color: #fff; padding: 12px 0; font-weight: 600; font-size: .92rem;
}
.campaign-band .container { display: flex; flex-wrap: wrap; align-items: center; gap: 8px 18px; justify-content: center; text-align: center; }
.campaign-band a { color: #fff; text-decoration: underline; font-weight: 800; white-space: nowrap; }
.campaign-band .camp-label {
    background: #fff; color: var(--red); font-size: .7rem; font-weight: 900;
    letter-spacing: 1px; text-transform: uppercase; padding: 3px 10px; border-radius: 100px;
}

/* --- Fiyat listesi --------------------------------------------------------- */
.price-list { display: grid; gap: 14px; max-width: 820px; margin-inline: auto; }
.price-item {
    display: flex; flex-wrap: wrap; justify-content: space-between; align-items: center; gap: 8px 20px;
    background: var(--bg-card); border: 1px solid var(--line); border-radius: 12px; padding: 20px 24px;
}
.price-item h3 { margin: 0 0 4px; font-size: 1.05rem; }
.price-item .price-desc { color: var(--muted); font-size: .88rem; margin: 0; max-width: 480px; }
.price-item .price-tag { color: var(--red); font-weight: 800; white-space: nowrap; }
.price-note {
    max-width: 820px; margin: 22px auto 0; color: var(--muted); font-size: .88rem;
    background: var(--bg-soft); border: 1px dashed var(--line); border-radius: 10px; padding: 14px 18px;
}

/* --- Yorumlar --------------------------------------------------------------- */
.testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.testi-card { background: var(--bg-card); border: 1px solid var(--line); border-radius: var(--radius); padding: 24px; display: flex; flex-direction: column; gap: 12px; }
.testi-stars { color: var(--red); letter-spacing: 2px; font-size: .95rem; }
.testi-card blockquote { margin: 0; color: var(--muted); font-size: .93rem; flex: 1; }
.testi-meta { display: flex; align-items: center; justify-content: space-between; gap: 10px; }
.testi-meta strong { font-size: .92rem; }
.testi-source {
    font-size: .7rem; font-weight: 800; letter-spacing: 1px; text-transform: uppercase;
    padding: 3px 10px; border-radius: 100px; border: 1px solid var(--line); color: var(--muted);
}

/* --- SSS -------------------------------------------------------------------- */
.faq-list { max-width: 780px; margin-inline: auto; display: grid; gap: 12px; }
.faq-item { background: var(--bg-card); border: 1px solid var(--line); border-radius: 12px; overflow: hidden; }
.faq-q {
    width: 100%; text-align: start; background: none; border: 0; color: var(--white);
    font-weight: 700; font-size: 1rem; padding: 18px 20px; cursor: pointer;
    display: flex; justify-content: space-between; gap: 14px; align-items: center; font-family: inherit;
}
.faq-q::after { content: "+"; color: var(--red); font-size: 1.4rem; font-weight: 400; transition: transform .2s; flex-shrink: 0; }
.faq-item.open .faq-q::after { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .3s ease; }
.faq-a-inner { padding: 0 20px 18px; color: var(--muted); font-size: .93rem; }

/* --- Formlar ------------------------------------------------------------------ */
.form-wrap { max-width: 760px; margin-inline: auto; }
.form-card { background: var(--bg-card); border: 1px solid var(--line); border-radius: var(--radius); padding: clamp(22px, 4vw, 40px); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px 18px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group.full { grid-column: 1 / -1; }
.form-group label { font-weight: 600; font-size: .88rem; }
.form-group label .req { color: var(--red); }
.form-group input, .form-group select, .form-group textarea {
    background: var(--bg-elev); border: 1px solid var(--line); color: var(--white);
    border-radius: 9px; padding: 12px 14px; font-size: .95rem; font-family: inherit; width: 100%;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
    outline: none; border-color: var(--red);
}
.form-group textarea { min-height: 120px; resize: vertical; }
.field-error { color: #ff8f9a; font-size: .8rem; }
.field-hint { color: var(--muted); font-size: .78rem; }
.form-actions { margin-top: 24px; display: flex; flex-wrap: wrap; gap: 12px; align-items: center; }
.form-consent { font-size: .82rem; color: var(--muted); display: flex; gap: 10px; align-items: flex-start; }
.form-consent input { width: auto; margin-top: 3px; }
.form-consent a { color: var(--red); }
.hp-field { position: absolute; inset-inline-start: -9999px; height: 0; width: 0; opacity: 0; }

/* Radyo/checkbox grubu */
.choice-row { display: flex; flex-wrap: wrap; gap: 10px; }
.choice-row label {
    display: flex; align-items: center; gap: 8px; background: var(--bg-elev);
    border: 1px solid var(--line); border-radius: 9px; padding: 10px 16px; cursor: pointer; font-size: .9rem;
}
.choice-row input { width: auto; }
.choice-row label:has(input:checked) { border-color: var(--red); color: var(--red); }

/* --- İçerik sayfaları (blog detay, sayfa) --------------------------------- */
.page-hero {
    padding: clamp(44px, 7vw, 80px) 0;
    background: radial-gradient(ellipse at 70% 0%, rgba(225, 29, 46, .12), transparent 55%), var(--bg-soft);
    border-bottom: 1px solid var(--line);
}
.page-hero h1 span { color: var(--red); }
.page-hero .lead { color: var(--muted); font-size: 1.05rem; max-width: 640px; margin-bottom: 0; }

.breadcrumb { margin-bottom: 14px; font-size: .82rem; }
.breadcrumb ol { list-style: none; display: flex; flex-wrap: wrap; gap: 6px; margin: 0; padding: 0; color: var(--muted); }
.breadcrumb li + li::before { content: "›"; margin-inline-end: 6px; color: var(--line); }
.breadcrumb a { color: var(--muted); }
.breadcrumb a:hover { color: var(--red); }

.prose { max-width: 780px; }
.prose h2 { margin-top: 1.6em; font-size: 1.5rem; }
.prose h2::before { content: "— "; color: var(--red); }
.prose h3 { margin-top: 1.3em; color: var(--white); }
.prose p, .prose li { color: #cfcfcf; }
.prose a { color: var(--red); }
.prose img { border-radius: 12px; margin: 1.2em 0; }
.prose blockquote { border-inline-start: 3px solid var(--red); margin: 1.2em 0; padding: .4em 1.2em; color: var(--muted); }
.prose table { width: 100%; border-collapse: collapse; }
.prose td, .prose th { border: 1px solid var(--line); padding: 8px 12px; }

.post-cover { border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line); margin-bottom: 30px; }
.post-cover img { width: 100%; max-height: 440px; object-fit: cover; }
.post-meta { color: var(--muted); font-size: .85rem; margin-bottom: 24px; display: flex; flex-wrap: wrap; gap: 8px 20px; }
.tag-list { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 28px; }
.tag-list span { background: var(--bg-elev); border: 1px solid var(--line); border-radius: 100px; padding: 4px 14px; font-size: .78rem; color: var(--muted); }

.detail-layout { display: grid; grid-template-columns: minmax(0, 1fr) 320px; gap: 44px; align-items: start; }
.sidebar { display: grid; gap: 20px; position: sticky; top: 90px; }
.side-card { background: var(--bg-card); border: 1px solid var(--line); border-radius: var(--radius); padding: 22px; }
.side-card h3 { font-size: 1rem; }
.side-card ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 8px; }
.side-card ul a { color: var(--muted); font-size: .9rem; }
.side-card ul a:hover, .side-card ul a.active { color: var(--red); }
.side-card .btn { margin-top: 6px; }
.side-cta { text-align: center; }
.side-cta p { color: var(--muted); font-size: .88rem; }

/* --- WhatsApp float -------------------------------------------------------- */
.wa-float {
    position: fixed; bottom: 22px; inset-inline-end: 22px; z-index: 150;
    display: flex; align-items: center; gap: 10px;
    background: #1f9d55; color: #fff; border-radius: 100px; padding: 13px 18px;
    font-weight: 700; font-size: .88rem; box-shadow: 0 8px 30px rgba(0, 0, 0, .45);
    transition: transform .2s, background .2s;
}
.wa-float:hover { transform: translateY(-3px); background: #17803f; color: #fff; }

/* --- Popup ----------------------------------------------------------------- */
.popup-overlay {
    position: fixed; inset: 0; z-index: 250; background: rgba(0, 0, 0, .75);
    display: flex; align-items: center; justify-content: center; padding: 20px;
}
.popup-overlay[hidden] { display: none; }
.popup-box {
    background: var(--bg-elev); border: 1px solid var(--line); border-radius: var(--radius);
    max-width: 420px; width: 100%; padding: 30px; position: relative; box-shadow: var(--shadow);
    max-height: 90vh; overflow-y: auto;
}
.popup-box h2 { font-size: 1.3rem; }
.popup-box > p { color: var(--muted); font-size: .9rem; }
.popup-close {
    position: absolute; top: 10px; inset-inline-end: 14px; background: none; border: 0;
    color: var(--muted); font-size: 1.8rem; cursor: pointer; line-height: 1;
}
.popup-form { display: grid; gap: 12px; margin: 18px 0 14px; }
.popup-form input {
    background: var(--bg-card); border: 1px solid var(--line); color: var(--white);
    border-radius: 9px; padding: 12px 14px; font-size: .92rem; font-family: inherit;
}
.popup-form input:focus { outline: none; border-color: var(--red); }
.popup-wa { display: block; text-align: center; color: #34d27b; font-weight: 700; font-size: .88rem; }

/* --- Footer ----------------------------------------------------------------- */
.site-footer { background: #070707; border-top: 1px solid var(--line); margin-top: 60px; }
.footer-grid {
    display: grid; grid-template-columns: 2fr 1fr 1fr 1.2fr; gap: 36px;
    padding: clamp(40px, 6vw, 64px) 20px;
}
.footer-logo { height: 30px; width: auto; margin-bottom: 16px; }
.footer-col h3 { font-size: .95rem; text-transform: uppercase; letter-spacing: 1px; color: var(--muted); }
.footer-col ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 9px; }
.footer-col a { color: #cfcfcf; font-size: .9rem; }
.footer-col a:hover { color: var(--red); }
.footer-col p { color: var(--muted); font-size: .88rem; }
.footer-contact li { color: #cfcfcf; font-size: .9rem; }
.footer-social { display: flex; gap: 10px; margin-top: 14px; }
.social-link {
    border: 1px solid var(--line); border-radius: 100px; padding: 7px 16px; font-size: .82rem; font-weight: 700;
}
.social-link:hover { border-color: var(--red); }
.footer-bottom { border-top: 1px solid var(--line); padding: 18px 0; color: var(--muted); font-size: .8rem; }

/* --- 404 --------------------------------------------------------------------- */
.error-page { text-align: center; padding: clamp(70px, 12vw, 140px) 20px; }
.error-page .code { font-size: clamp(5rem, 15vw, 9rem); font-weight: 900; color: var(--red); line-height: 1; }

/* --- Takip ------------------------------------------------------------------- */
.track-result { max-width: 640px; margin: 30px auto 0; }
.track-card { background: var(--bg-card); border: 1px solid var(--line); border-radius: var(--radius); padding: 28px; display: grid; gap: 12px; }
.track-row { display: flex; justify-content: space-between; gap: 16px; border-bottom: 1px dashed var(--line); padding-bottom: 10px; }
.track-row:last-child { border: 0; padding: 0; }
.track-row .k { color: var(--muted); font-size: .88rem; }
.status-badge {
    display: inline-block; padding: 4px 14px; border-radius: 100px; font-size: .78rem; font-weight: 800;
    background: rgba(225, 29, 46, .14); color: var(--red);
}
.status-badge.completed { background: rgba(31, 157, 85, .16); color: #4fce8a; }
.status-badge.cancelled { background: rgba(120, 120, 120, .18); color: #aaa; }

/* --- RTL düzeltmeleri ---------------------------------------------------------- */
.rtl { direction: rtl; }
.rtl .caret { margin-inline-start: 4px; }

/* --- Responsive ------------------------------------------------------------------ */
@media (max-width: 1080px) {
    .grid-4, .gallery-grid { grid-template-columns: repeat(3, 1fr); }
    .hygiene-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .detail-layout { grid-template-columns: 1fr; }
    .sidebar { position: static; }
}

@media (max-width: 900px) {
    .nav-toggle { display: inline-flex; }
    .header-inner { min-height: 64px; }
    .brand-logo { height: 28px; max-width: 130px; }

    /* Off-canvas panel */
    .main-nav {
        position: fixed; top: 0; bottom: 0; inset-inline-end: 0; inset-inline-start: auto;
        width: min(92vw, 380px); height: 100dvh; background: #121214;
        border-inline-start: 1px solid var(--line);
        transform: translateX(105%); transition: transform .3s ease, visibility .3s;
        visibility: hidden; overflow-y: auto; overflow-x: hidden;
        padding: 0 0 24px; z-index: 190;
        display: flex; flex-direction: column;
    }
    .rtl .main-nav { transform: translateX(-105%); }
    .main-nav.open { transform: translateX(0); visibility: visible; }

    .nav-overlay {
        display: block; position: fixed; inset: 0; z-index: 180;
        background: rgba(0, 0, 0, .65); backdrop-filter: blur(2px);
        opacity: 0; visibility: hidden; transition: opacity .3s, visibility .3s;
    }
    .nav-overlay.open { opacity: 1; visibility: visible; }
    .nav-overlay[hidden] { display: block; }

    body.body-menu-open { overflow: hidden; }
    /* Header kendi stacking context'ini kurduğundan, panelin overlay'in
       üstünde kalması için menü açıkken header katmanı yükseltilir. */
    body.body-menu-open .site-header { z-index: 195; }

    .mobile-menu-head {
        display: flex; align-items: center; justify-content: space-between; gap: 12px;
        padding: 18px 20px; border-bottom: 1px solid var(--line);
        position: sticky; top: 0; background: #121214; z-index: 2;
    }
    .mm-brand { display: block; font-weight: 900; font-size: 1.15rem; letter-spacing: 1px; }
    .mm-brand span { color: var(--red); }
    .mm-tagline { display: block; color: var(--muted); font-size: .74rem; margin-top: 2px; }
    .mobile-menu-close {
        min-width: 44px; min-height: 44px; display: inline-flex; align-items: center; justify-content: center;
        background: var(--bg-card); border: 1px solid var(--line); border-radius: 10px;
        color: var(--white); cursor: pointer;
    }

    .nav-list { flex-direction: column; align-items: stretch; gap: 0; padding: 8px 20px; }
    .nav-list > li { border-bottom: 1px solid rgba(255, 255, 255, .07); }
    .nav-list > li > a, .drop-btn {
        padding: 14px 4px; min-height: 48px; width: 100%; text-align: start; font-size: 1rem;
        display: flex; justify-content: space-between; align-items: center; gap: 10px;
    }
    .drop-btn .caret { transition: transform .25s; }
    .has-dropdown.open > .drop-btn { color: var(--red); }
    .has-dropdown.open > .drop-btn .caret { transform: rotate(180deg); }

    .dropdown, .has-dropdown:hover > .dropdown, .has-dropdown:focus-within > .dropdown {
        position: static; opacity: 1; visibility: visible; transform: none; box-shadow: none;
        border: 0; background: transparent; padding: 0; display: none; max-height: none; min-width: 0;
    }
    .has-dropdown.open > .dropdown { display: block; padding: 0 0 10px; }
    .dropdown a {
        padding: 12px 10px; min-height: 44px; display: flex; align-items: center;
        margin-inline-start: 12px; border-inline-start: 2px solid var(--line);
        border-radius: 0 8px 8px 0; font-size: .95rem; color: #d6d6da;
    }
    .dropdown a:hover { border-inline-start-color: var(--red); background: rgba(255, 255, 255, .03); }

    .nav-cta { display: none; }        /* CTA'lar panel altındaki blokta */
    .nav-lang { border: 0 !important; padding: 12px 0; }

    .mobile-menu-cta {
        display: grid; gap: 10px; padding: 16px 20px 4px; margin-top: auto;
        border-top: 1px solid var(--line);
    }
    .mobile-menu-meta { display: grid; gap: 10px; padding-top: 12px; }
    .mobile-menu-meta a, .mobile-menu-meta span {
        display: flex; align-items: center; gap: 10px; color: var(--muted); font-size: .86rem;
    }
    .mobile-menu-meta .icon { color: var(--red); }

    .grid-3, .testi-grid { grid-template-columns: 1fr 1fr; }
    .artist-wrap { grid-template-columns: 1fr; }
    .artist-photo { max-width: 380px; }
    .form-grid { grid-template-columns: 1fr; }
}

@media (max-width: 620px) {
    .grid-2, .grid-3, .grid-4, .testi-grid, .hygiene-grid { grid-template-columns: 1fr; }
    .gallery-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: 1fr; }
    .cta-band { flex-direction: column; align-items: flex-start; }
    .wa-float-label { display: none; }
    .wa-float { padding: 14px; }
    .price-item { flex-direction: column; align-items: flex-start; }
    .ba-pair { grid-template-columns: 1fr 1fr; }
    .hero-actions .btn { flex: 1 1 100%; }
}

/* ============================================================================
   HOTFIX — ikon sistemi, mobil cila, kontrast ve overflow düzeltmeleri
   ========================================================================== */

/* İkonlar */
.icon { flex-shrink: 0; vertical-align: -0.18em; }
.icon-sm { width: 16px; height: 16px; }
.icon-md { width: 20px; height: 20px; }
.icon-lg { width: 32px; height: 32px; }
.icon-brand { color: var(--red); }
.icon-btn {
    display: inline-flex; align-items: center; justify-content: center;
    min-width: 44px; min-height: 44px; border-radius: 10px;
    background: var(--bg-card); border: 1px solid var(--line); color: var(--white);
}
.social-icon { display: inline-flex; align-items: center; gap: 8px; }

/* Butonlar: ikonlu, dokunulabilir (min 44px) */
.btn {
    display: inline-flex; align-items: center; justify-content: center; gap: 8px;
    min-height: 44px;
}
.btn-sm { min-height: 40px; }

/* Okunabilirlik: soluk metinleri güçlendir */
:root { --muted: #b3b3ba; }
.hero-sub { color: #d6d6da; }
.card-body p { color: #bcbcc2; }
.prose p, .prose li { color: #d4d4d8; }

/* Taşma güvenliği */
img, svg, video { max-width: 100%; }
.grid > *, .detail-layout > *, .footer-grid > *, .testi-grid > *, .hygiene-grid > * { min-width: 0; }
.card-body, .prose, .price-item, .testi-card, .faq-a-inner, .track-card, .cta-band {
    overflow-wrap: break-word; word-break: break-word;
}
.container { width: min(100%, var(--container)); }

/* Rozetler ikonlu */
.badges-list li::before { content: none; }
.badges-list li .icon { color: var(--red); }

/* Hijyen kartı ikonları */
.hyg-item .hyg-icon { font-size: 0; }
.hyg-item .hyg-icon .icon { width: 24px; height: 24px; }

/* Kampanya bandı — mobilde kart görünümü */
@media (max-width: 700px) {
    .campaign-band { background: transparent; padding: 12px 16px 0; }
    .campaign-band .container {
        background: linear-gradient(135deg, var(--red), var(--red-dark));
        border-radius: 14px; padding: 14px 16px;
        flex-direction: column; align-items: flex-start; text-align: start; gap: 8px;
        font-size: .86rem; line-height: 1.5;
    }
    .campaign-band a { align-self: flex-start; min-height: 44px; display: inline-flex; align-items: center; }
}

/* Hero — mobil güçlendirme */
@media (max-width: 700px) {
    .hero { padding: 44px 0 52px; }
    .hero h1 { font-size: clamp(1.9rem, 8.5vw, 2.4rem); }
    .hero-sub { font-size: 1rem; line-height: 1.6; }
    .hero-kicker { font-size: .72rem; letter-spacing: 2px; }
    .hero-actions { margin-top: 22px; gap: 10px; }
    .hero-actions .btn { flex: 1 1 100%; }
    .hero::after { opacity: .5; }
    .section { padding: 48px 0; }
    .section-head { margin-bottom: 26px; }
}

/* Popup — mobil ölçüleri */
.popup-box {
    width: min(92vw, 420px); max-width: none;
    max-height: calc(100dvh - 32px); overflow-y: auto;
    border-radius: 16px;
}
.popup-overlay { align-items: flex-start; padding-top: max(16px, 6vh); }
.popup-form input { min-height: 44px; font-size: .95rem; }
.popup-form .btn { min-height: 46px; }
.popup-close {
    min-width: 36px; min-height: 36px; display: inline-flex;
    align-items: center; justify-content: center;
    background: var(--bg-card); border: 1px solid var(--line); border-radius: 10px;
    font-size: 1.3rem;
}
.popup-wa { min-height: 44px; display: flex; align-items: center; justify-content: center; gap: 8px; }
@media (max-width: 480px) {
    .popup-box { padding: 18px; }
}

/* Floating WhatsApp — boyut, safe-area, z-index dengesi */
.wa-float {
    inset-inline-end: 16px;
    bottom: max(18px, env(safe-area-inset-bottom, 18px));
    min-width: 52px; min-height: 52px; padding: 13px 18px;
    z-index: 160;
}
.wa-float .icon { width: 24px; height: 24px; }
@media (max-width: 620px) {
    .wa-float { padding: 0; width: 52px; height: 52px; justify-content: center; border-radius: 50%; }
}

/* Hizmet kartı: ikonlu başlık, tek kolon mobil vitrin */
.card-title-row { display: flex; align-items: center; gap: 10px; }
.card-title-row .icon { color: var(--red); }
.card-body h3 { margin: 0; }
@media (max-width: 620px) {
    .grid { gap: 18px; }
    .card-img { aspect-ratio: 4 / 3; }
    .card-body { padding: 18px; }
    .card-link { min-height: 44px; display: inline-flex; align-items: center; }
    .filter-btn { min-height: 40px; }
    .gallery-grid { grid-template-columns: 1fr; gap: 16px; }
    .gallery-item { aspect-ratio: 4 / 3; }
}
@media (min-width: 621px) and (max-width: 1080px) {
    .gallery-grid { grid-template-columns: repeat(2, 1fr); }
}

/* Footer sosyal linkler ikonlu */
.footer-social .social-link { display: inline-flex; align-items: center; gap: 8px; min-height: 40px; }
.footer-contact li { display: flex; align-items: center; gap: 10px; }
.footer-contact .icon { color: var(--red); flex-shrink: 0; }

/* Dropdown masaüstünde ekran dışına taşmasın */
@media (min-width: 901px) {
    .nav-list > li:nth-last-child(-n+4) .dropdown { inset-inline-start: auto; inset-inline-end: 0; }
}
