/* =========================================================================
   mrniho.com — vitrin stilleri
   Siyah zemin · beyaz tipografi · turuncu vurgu (#F85C00, logodan alındı)
   ====================================================================== */

:root {
    --bg:            #000000;
    --surface:       #0b0b0b;
    --surface-2:     #121212;
    --surface-3:     #191919;
    --line:          #232323;
    --line-strong:   #333333;

    --text:          #f2efea;
    --muted:         #96908a;
    --muted-2:       #6d6862;

    /* Bu değerler yönetim panelindeki tema ayarıyla ezilir (App\Core\Theme) */
    --accent:            #f85c00;
    --accent-hover:      #ff7524;
    --accent-soft:       rgba(248, 92, 0, 0.12);
    --accent-line:       rgba(248, 92, 0, 0.35);
    --accent-glow:       rgba(248, 92, 0, 0.10);
    --accent-glow-soft:  rgba(248, 92, 0, 0.05);
    --header-bg:         rgba(0, 0, 0, 0.9);

    --success:       #3ba55c;
    --danger:        #e0453e;
    --warning:       #e0a53e;

    --radius:        4px;
    --radius-lg:     8px;
    --container:     1240px;

    --font-display:  'Oswald', 'Arial Narrow', sans-serif;
    --font-body:     'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

    --header-h:      72px;
}

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

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

body {
    margin: 0;
    background: var(--bg);
    color: var(--text);
    font-family: var(--font-body);
    font-size: 15px;
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

img { max-width: 100%; display: block; }

a {
    color: inherit;
    text-decoration: none;
    transition: color .18s ease;
}

a:hover { color: var(--accent); }

h1, h2, h3, h4, h5 {
    font-family: var(--font-display);
    font-weight: 500;
    letter-spacing: .04em;
    line-height: 1.15;
    margin: 0 0 .6em;
    text-transform: uppercase;
}

h1 { font-size: clamp(2rem, 5vw, 3.2rem); }
h2 { font-size: clamp(1.5rem, 3.4vw, 2.2rem); }
h3 { font-size: 1.15rem; }

p { margin: 0 0 1em; }

hr {
    border: 0;
    border-top: 1px solid var(--line);
    margin: 2rem 0;
}

::selection { background: var(--accent); color: #000; }

:focus-visible {
    outline: 2px solid var(--accent);
    outline-offset: 2px;
}

/* -------------------------------------------------------------- Yerleşim */

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

.container--narrow { max-width: 820px; }

.section { padding: 72px 0; }
.section--tight { padding: 44px 0; }
.section--alt { background: var(--surface); border-block: 1px solid var(--line); }

.grid { display: grid; gap: 20px; }
.grid--2 { grid-template-columns: repeat(2, 1fr); }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }

.stack > * + * { margin-top: 16px; }

.flex { display: flex; gap: 16px; }
.flex--between { justify-content: space-between; align-items: center; }
.flex--center { justify-content: center; align-items: center; }
.flex--wrap { flex-wrap: wrap; }

.text-center { text-align: center; }
.text-right  { text-align: right; }
.muted { color: var(--muted); }
.small { font-size: 13px; }
.mono  { font-variant-numeric: tabular-nums; }
.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }

/* Bölüm başlığı */
.section-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 32px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--line);
}

.section-head h2 { margin: 0; }

.section-head__link {
    font-family: var(--font-display);
    font-size: 13px;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--muted);
    white-space: nowrap;
}

.section-head__link:hover { color: var(--accent); }

.eyebrow {
    font-family: var(--font-display);
    font-size: 12px;
    letter-spacing: .28em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 10px;
    display: block;
}

/* ---------------------------------------------------------------- Header */

.header {
    position: sticky;
    top: 0;
    z-index: 60;
    background: var(--header-bg);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--line);
}

.header__inner {
    height: var(--header-h);
    display: flex;
    align-items: center;
    gap: 28px;
}

.header__logo {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}

.header__logo img { height: 42px; width: auto; }

.header__logo-text {
    font-family: var(--font-display);
    font-size: 20px;
    letter-spacing: .18em;
    text-transform: uppercase;
    line-height: 1;
}

.nav {
    display: flex;
    align-items: center;
    gap: 26px;
    margin-left: auto;
}

.nav a {
    font-family: var(--font-display);
    font-size: 14px;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--muted);
    position: relative;
    padding: 6px 0;
}

.nav a:hover,
.nav a.is-active { color: var(--text); }

.nav a.is-active::after {
    content: '';
    position: absolute;
    left: 0; right: 0; bottom: 0;
    height: 2px;
    background: var(--accent);
}

.header__actions {
    display: flex;
    align-items: center;
    gap: 8px;
}

.icon-btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: transparent;
    color: var(--text);
    cursor: pointer;
    transition: border-color .18s ease, color .18s ease;
}

.icon-btn:hover { border-color: var(--accent); color: var(--accent); }

.icon-btn__badge {
    position: absolute;
    top: -7px; right: -7px;
    min-width: 19px;
    height: 19px;
    padding: 0 5px;
    background: var(--accent);
    color: #000;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
}

.burger { display: none; }

/* Mobil menü */
.mobile-nav {
    position: fixed;
    inset: var(--header-h) 0 0 0;
    background: var(--bg);
    z-index: 55;
    padding: 24px 20px 60px;
    overflow-y: auto;
    transform: translateX(100%);
    transition: transform .25s ease;
}

.mobile-nav.is-open { transform: translateX(0); }

.mobile-nav a {
    display: block;
    padding: 15px 0;
    border-bottom: 1px solid var(--line);
    font-family: var(--font-display);
    font-size: 17px;
    letter-spacing: .1em;
    text-transform: uppercase;
}

/* ------------------------------------------------------------------ Hero */

.hero {
    position: relative;
    min-height: min(76vh, 640px);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    border-bottom: 1px solid var(--line);
}

.hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 50% 30%, var(--accent-glow), transparent 62%),
        linear-gradient(180deg, var(--bg) 0%, var(--surface) 60%, var(--bg) 100%);
    z-index: 0;
}

.hero__inner {
    position: relative;
    z-index: 1;
    padding: 80px 20px;
}

.hero__logo {
    width: clamp(140px, 22vw, 210px);
    margin: 0 auto 28px;
    filter: drop-shadow(0 0 42px var(--accent-line));
}

.hero h1 {
    font-size: clamp(2.4rem, 8vw, 5rem);
    letter-spacing: .18em;
    margin-bottom: 18px;
}

.hero p {
    max-width: 620px;
    margin: 0 auto 34px;
    color: var(--muted);
    font-size: clamp(15px, 1.6vw, 17px);
}

.hero__actions {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
}

/* --------------------------------------------------------------- Butonlar */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    padding: 12px 26px;
    border: 1px solid transparent;
    border-radius: var(--radius);
    background: var(--accent);
    color: #000;
    font-family: var(--font-display);
    font-size: 14px;
    font-weight: 500;
    letter-spacing: .12em;
    text-transform: uppercase;
    cursor: pointer;
    transition: background .18s ease, color .18s ease, border-color .18s ease, transform .1s ease;
    text-align: center;
}

.btn:hover { background: var(--accent-hover); color: #000; }
.btn:active { transform: translateY(1px); }

.btn--ghost {
    background: transparent;
    border-color: var(--line-strong);
    color: var(--text);
}

.btn--ghost:hover {
    background: transparent;
    border-color: var(--accent);
    color: var(--accent);
}

.btn--dark {
    background: var(--surface-3);
    color: var(--text);
    border-color: var(--line);
}

.btn--dark:hover { background: var(--surface-2); color: var(--accent); border-color: var(--accent); }

.btn--danger { background: var(--danger); color: #fff; }
.btn--danger:hover { background: #c33a34; color: #fff; }

.btn--block { width: 100%; }
.btn--sm { padding: 8px 16px; font-size: 12.5px; }
.btn--lg { padding: 15px 34px; font-size: 15px; }

.btn:disabled,
.btn.is-disabled {
    opacity: .45;
    pointer-events: none;
}

/* ----------------------------------------------------------------- Kartlar */

.card {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.card__body { padding: 22px; }

/* Kategori kartı */
.cat-card {
    position: relative;
    display: block;
    aspect-ratio: 4 / 3;
    background: var(--surface-2);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.cat-card img {
    width: 100%; height: 100%;
    object-fit: cover;
    opacity: .55;
    transition: transform .5s ease, opacity .3s ease;
}

.cat-card:hover img { transform: scale(1.06); opacity: .75; }

.cat-card__label {
    position: absolute;
    inset: auto 0 0 0;
    padding: 22px;
    background: linear-gradient(180deg, transparent, rgba(0, 0, 0, .92));
    font-family: var(--font-display);
    font-size: 19px;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.cat-card__label span {
    display: block;
    font-family: var(--font-body);
    font-size: 12px;
    letter-spacing: normal;
    text-transform: none;
    color: var(--muted);
    margin-top: 3px;
}

/* Ürün kartı */
.product-card {
    display: flex;
    flex-direction: column;
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: border-color .2s ease, transform .2s ease;
}

.product-card:hover {
    border-color: var(--line-strong);
    transform: translateY(-3px);
}

.product-card__media {
    position: relative;
    display: block;
    aspect-ratio: 1;
    background: var(--surface-2);
    overflow: hidden;
}

.product-card__media img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform .5s ease;
}

.product-card:hover .product-card__media img { transform: scale(1.05); }

.product-card__body {
    padding: 18px;
    display: flex;
    flex-direction: column;
    flex: 1;
    gap: 10px;
}

.product-card__cat {
    font-family: var(--font-display);
    font-size: 11px;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: var(--accent);
}

.product-card__title {
    font-family: var(--font-display);
    font-size: 18px;
    letter-spacing: .06em;
    text-transform: uppercase;
    margin: 0;
}

.product-card__desc {
    color: var(--muted);
    font-size: 13px;
    line-height: 1.55;
    margin: 0;
    flex: 1;
}

.product-card__foot {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-top: 4px;
}

.price {
    font-family: var(--font-display);
    font-size: 20px;
    letter-spacing: .03em;
    color: var(--text);
    white-space: nowrap;
}

.price small {
    display: block;
    font-family: var(--font-body);
    font-size: 11px;
    color: var(--muted);
    letter-spacing: normal;
}

.price--old {
    color: var(--muted-2);
    text-decoration: line-through;
    font-size: 14px;
    margin-right: 8px;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 4px 10px;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: .06em;
    text-transform: uppercase;
    border: 1px solid var(--line-strong);
    color: var(--muted);
}

.badge--accent { background: var(--accent-soft); border-color: var(--accent-line); color: var(--accent); }
.badge--success { background: rgba(59,165,92,.12); border-color: rgba(59,165,92,.4); color: #6ed08c; }
.badge--danger  { background: rgba(224,69,62,.12); border-color: rgba(224,69,62,.4); color: #ef7d77; }
.badge--warning { background: rgba(224,165,62,.12); border-color: rgba(224,165,62,.4); color: #edc06a; }

.badge--corner {
    position: absolute;
    top: 12px; left: 12px;
    z-index: 2;
    background: var(--accent);
    color: #000;
    border-color: transparent;
}

/* Varyant seçenek çipleri */
.variants {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
}

.variant-chip {
    padding: 6px 13px;
    border: 1px solid var(--line-strong);
    border-radius: var(--radius);
    background: transparent;
    color: var(--muted);
    font-size: 12.5px;
    font-weight: 500;
    cursor: pointer;
    transition: all .16s ease;
    font-family: var(--font-body);
}

.variant-chip:hover { border-color: var(--muted); color: var(--text); }

.variant-chip.is-active {
    border-color: var(--accent);
    background: var(--accent-soft);
    color: var(--accent);
}

.variant-chip:disabled {
    opacity: .35;
    cursor: not-allowed;
    text-decoration: line-through;
}

/* ------------------------------------------------------- Ürün liste / filtre */

.catalog {
    display: grid;
    grid-template-columns: 232px 1fr;
    gap: 40px;
    align-items: start;
}

.filters {
    position: sticky;
    top: calc(var(--header-h) + 20px);
}

.filters__title {
    font-family: var(--font-display);
    font-size: 12px;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: var(--muted-2);
    padding-bottom: 12px;
    margin-bottom: 12px;
    border-bottom: 1px solid var(--line);
}

.filters__list { list-style: none; margin: 0; padding: 0; }

.filters__list a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
    padding: 9px 12px;
    border-radius: var(--radius);
    color: var(--muted);
    font-size: 14px;
    border: 1px solid transparent;
}

.filters__list a:hover { background: var(--surface-2); color: var(--text); }

.filters__list a.is-active {
    background: var(--accent-soft);
    border-color: var(--accent-line);
    color: var(--accent);
}

.filters__count { font-size: 11px; color: var(--muted-2); }

.catalog__bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--line);
}

/* Yatay kategori sekmeleri (mobil) */
.cat-tabs {
    display: none;
    gap: 8px;
    overflow-x: auto;
    padding-bottom: 12px;
    margin-bottom: 20px;
    scrollbar-width: none;
}

.cat-tabs::-webkit-scrollbar { display: none; }

.cat-tabs a {
    flex-shrink: 0;
    padding: 8px 16px;
    border: 1px solid var(--line-strong);
    border-radius: 999px;
    font-size: 13px;
    color: var(--muted);
    white-space: nowrap;
}

.cat-tabs a.is-active {
    background: var(--accent);
    border-color: var(--accent);
    color: #000;
}

/* ------------------------------------------------------------- Ürün detay */

.product-detail {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px;
    align-items: start;
}

.gallery__main {
    aspect-ratio: 1;
    background: var(--surface-2);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.gallery__main img { width: 100%; height: 100%; object-fit: cover; }

.gallery__thumbs {
    display: flex;
    gap: 10px;
    margin-top: 12px;
    flex-wrap: wrap;
}

.gallery__thumb {
    width: 74px; height: 74px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    overflow: hidden;
    cursor: pointer;
    background: var(--surface-2);
    padding: 0;
}

.gallery__thumb.is-active { border-color: var(--accent); }
.gallery__thumb img { width: 100%; height: 100%; object-fit: cover; }

.product-detail__price {
    font-family: var(--font-display);
    font-size: 34px;
    letter-spacing: .02em;
    margin: 6px 0 4px;
}

.attr-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 8px;
    font-size: 13.5px;
}

.attr-table tr { border-bottom: 1px solid var(--line); }
.attr-table tr:last-child { border-bottom: 0; }

.attr-table th {
    text-align: left;
    padding: 11px 0;
    width: 42%;
    font-family: var(--font-display);
    font-weight: 400;
    font-size: 12px;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--muted-2);
}

.attr-table td { padding: 11px 0; color: var(--text); }

.qty {
    display: inline-flex;
    align-items: center;
    border: 1px solid var(--line-strong);
    border-radius: var(--radius);
    overflow: hidden;
}

.qty button {
    width: 40px; height: 44px;
    background: transparent;
    border: 0;
    color: var(--text);
    font-size: 18px;
    cursor: pointer;
    line-height: 1;
}

.qty button:hover { background: var(--surface-3); color: var(--accent); }

.qty input {
    width: 52px; height: 44px;
    background: transparent;
    border: 0;
    border-inline: 1px solid var(--line-strong);
    color: var(--text);
    text-align: center;
    font-size: 15px;
    font-family: var(--font-body);
    -moz-appearance: textfield;
}

.qty input::-webkit-outer-spin-button,
.qty input::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }

/* ------------------------------------------------------------------ Form */

.field { margin-bottom: 18px; }

.field label,
.label {
    display: block;
    margin-bottom: 7px;
    font-family: var(--font-display);
    font-size: 12px;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--muted);
}

.input,
input[type="text"],
input[type="email"],
input[type="password"],
input[type="tel"],
input[type="number"],
input[type="date"],
input[type="search"],
input[type="url"],
select,
textarea {
    width: 100%;
    padding: 12px 14px;
    background: var(--surface-2);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    color: var(--text);
    font-family: var(--font-body);
    font-size: 14.5px;
    transition: border-color .16s ease, background .16s ease;
}

input:focus,
select:focus,
textarea:focus {
    outline: none;
    border-color: var(--accent);
    background: var(--surface-3);
}

input::placeholder,
textarea::placeholder { color: var(--muted-2); }

textarea { min-height: 130px; resize: vertical; }

select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%2396908a' d='M1 1l5 5 5-5'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    padding-right: 38px;
}

.field--error input,
.field--error select,
.field--error textarea { border-color: var(--danger); }

.field__error {
    display: block;
    margin-top: 6px;
    font-size: 12.5px;
    color: #ef7d77;
}

.field__hint { display: block; margin-top: 6px; font-size: 12.5px; color: var(--muted-2); }

.check {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 13.5px;
    color: var(--muted);
    cursor: pointer;
    line-height: 1.5;
}

.check input[type="checkbox"],
.check input[type="radio"] {
    width: 17px; height: 17px;
    margin: 2px 0 0;
    accent-color: var(--accent);
    flex-shrink: 0;
}

.check a { color: var(--text); text-decoration: underline; text-underline-offset: 2px; }

/* Ödeme yöntemi seçimi */
.pay-option {
    display: block;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 16px;
    margin-bottom: 12px;
    cursor: pointer;
    transition: border-color .16s ease, background .16s ease;
}

.pay-option:hover { border-color: var(--line-strong); }

.pay-option.is-active {
    border-color: var(--accent);
    background: var(--accent-soft);
}

.pay-option__head {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-display);
    font-size: 15px;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.pay-option__note { margin: 6px 0 0 27px; font-size: 13px; color: var(--muted); }

/* ---------------------------------------------------------------- Uyarılar */

.alert {
    display: flex;
    align-items: flex-start;
    gap: 11px;
    padding: 14px 16px;
    border: 1px solid var(--line-strong);
    border-left-width: 3px;
    border-radius: var(--radius);
    background: var(--surface-2);
    font-size: 14px;
    margin-bottom: 16px;
}

.alert--success { border-left-color: var(--success); }
.alert--error   { border-left-color: var(--danger); }
.alert--warning { border-left-color: var(--warning); }
.alert--info    { border-left-color: var(--accent); }

.flash-area {
    position: fixed;
    top: calc(var(--header-h) + 14px);
    right: 20px;
    z-index: 80;
    width: min(380px, calc(100vw - 40px));
    display: flex;
    flex-direction: column;
    gap: 10px;
    pointer-events: none;
}

.flash-area .alert {
    margin: 0;
    background: var(--surface-3);
    box-shadow: 0 12px 40px rgba(0, 0, 0, .6);
    pointer-events: auto;
    animation: flashIn .3s ease;
}

@keyframes flashIn {
    from { opacity: 0; transform: translateX(24px); }
    to   { opacity: 1; transform: none; }
}

/* ---------------------------------------------------------------- Tablolar */

.table {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
}

.table th {
    text-align: left;
    padding: 13px 14px;
    border-bottom: 1px solid var(--line-strong);
    font-family: var(--font-display);
    font-weight: 400;
    font-size: 12px;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--muted);
    white-space: nowrap;
}

.table td {
    padding: 14px;
    border-bottom: 1px solid var(--line);
    vertical-align: middle;
}

.table tbody tr:hover { background: var(--surface); }

.table-wrap { overflow-x: auto; }

/* ------------------------------------------------------------------ Sepet */

.cart-layout {
    display: grid;
    grid-template-columns: 1fr 360px;
    gap: 32px;
    align-items: start;
}

.summary {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    padding: 24px;
    position: sticky;
    top: calc(var(--header-h) + 20px);
}

.summary__row {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    padding: 9px 0;
    font-size: 14px;
    color: var(--muted);
}

.summary__row strong { color: var(--text); font-weight: 500; }

.summary__total {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 12px;
    margin-top: 14px;
    padding-top: 16px;
    border-top: 1px solid var(--line-strong);
    font-family: var(--font-display);
    font-size: 22px;
    letter-spacing: .04em;
    text-transform: uppercase;
}

.cart-item {
    display: grid;
    grid-template-columns: 96px 1fr auto;
    gap: 18px;
    align-items: center;
    padding: 18px 0;
    border-bottom: 1px solid var(--line);
}

.cart-item__img {
    width: 96px; height: 96px;
    border-radius: var(--radius);
    border: 1px solid var(--line);
    object-fit: cover;
    background: var(--surface-2);
}

.cart-item__name {
    font-family: var(--font-display);
    font-size: 17px;
    letter-spacing: .05em;
    text-transform: uppercase;
    margin: 0 0 4px;
}

/* Adım göstergesi */
.steps {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 32px;
    font-family: var(--font-display);
    font-size: 12px;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--muted-2);
    flex-wrap: wrap;
}

.steps span.is-active { color: var(--accent); }
.steps span.is-done { color: var(--text); }

/* ---------------------------------------------------------- Danışmanlık */

.service-card {
    display: flex;
    flex-direction: column;
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    padding: 28px;
    transition: border-color .2s ease, transform .2s ease;
    height: 100%;
}

.service-card:hover { border-color: var(--accent-line); transform: translateY(-3px); }

.service-card__title {
    font-family: var(--font-display);
    font-size: 20px;
    letter-spacing: .05em;
    text-transform: uppercase;
    margin: 0 0 10px;
}

.service-card__price {
    font-family: var(--font-display);
    font-size: 24px;
    color: var(--accent);
    margin: 16px 0 4px;
}

.feature-list {
    list-style: none;
    margin: 18px 0 0;
    padding: 0;
    display: grid;
    gap: 10px;
}

.feature-list li {
    position: relative;
    padding-left: 24px;
    font-size: 14px;
    color: var(--muted);
}

.feature-list li::before {
    content: '';
    position: absolute;
    left: 0; top: 9px;
    width: 8px; height: 8px;
    background: var(--accent);
    transform: rotate(45deg);
}

/* Süreç adımları */
.process {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    counter-reset: step;
}

.process__item {
    padding-top: 22px;
    border-top: 2px solid var(--line-strong);
    counter-increment: step;
}

.process__item::before {
    content: '0' counter(step);
    display: block;
    font-family: var(--font-display);
    font-size: 30px;
    color: var(--accent);
    margin-bottom: 8px;
    line-height: 1;
}

.process__item h3 { font-size: 16px; margin-bottom: 6px; }
.process__item p { font-size: 13.5px; color: var(--muted); margin: 0; }

/* ---------------------------------------------------------------- İçerik */

.prose { max-width: 780px; font-size: 15.5px; line-height: 1.8; }
.prose h2 { margin-top: 2em; font-size: 1.5rem; }
.prose h3 { margin-top: 1.6em; }
.prose ul, .prose ol { padding-left: 22px; color: var(--muted); }
.prose li { margin-bottom: 8px; }
.prose a { color: var(--accent); text-decoration: underline; text-underline-offset: 3px; }
.prose strong { color: var(--text); }
.prose img { border-radius: var(--radius-lg); margin: 1.5em 0; }
.prose blockquote {
    margin: 1.5em 0;
    padding: 4px 0 4px 20px;
    border-left: 3px solid var(--accent);
    color: var(--muted);
    font-style: italic;
}

/* Sayfa başlığı */
.page-head {
    padding: 56px 0 40px;
    border-bottom: 1px solid var(--line);
    margin-bottom: 48px;
    background: linear-gradient(180deg, var(--accent-glow-soft), transparent);
}

.page-head h1 { margin-bottom: 8px; }
.page-head p { color: var(--muted); margin: 0; max-width: 640px; }

.breadcrumb {
    display: flex;
    gap: 8px;
    align-items: center;
    font-size: 12px;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--muted-2);
    margin-bottom: 14px;
    flex-wrap: wrap;
}

.breadcrumb a:hover { color: var(--accent); }

/* Boş durum */
.empty {
    text-align: center;
    padding: 72px 20px;
    border: 1px dashed var(--line-strong);
    border-radius: var(--radius-lg);
    color: var(--muted);
}

.empty h3 { color: var(--text); }

/* Sayfalama */
.pagination {
    display: flex;
    justify-content: center;
    gap: 6px;
    margin-top: 44px;
    flex-wrap: wrap;
}

.pagination a,
.pagination span {
    min-width: 40px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 12px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    color: var(--muted);
    font-size: 14px;
}

.pagination a:hover { border-color: var(--accent); color: var(--accent); }

.pagination .is-active {
    background: var(--accent);
    border-color: var(--accent);
    color: #000;
    font-weight: 600;
}

/* ---------------------------------------------------------------- Footer */

.footer {
    margin-top: 96px;
    background: var(--surface);
    border-top: 1px solid var(--line);
    padding: 64px 0 28px;
}

.footer__grid {
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
    gap: 40px;
    padding-bottom: 44px;
    border-bottom: 1px solid var(--line);
}

.footer h4 {
    font-family: var(--font-display);
    font-size: 12px;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: var(--muted-2);
    margin-bottom: 18px;
}

.footer ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 11px; }
.footer a { color: var(--muted); font-size: 14px; }
.footer a:hover { color: var(--accent); }

.footer__logo img { height: 56px; margin-bottom: 16px; }
.footer__about { color: var(--muted); font-size: 14px; max-width: 320px; }

.footer__bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    padding-top: 24px;
    flex-wrap: wrap;
    font-size: 13px;
    color: var(--muted-2);
}

.socials { display: flex; gap: 10px; margin-top: 18px; }

.socials a {
    width: 38px; height: 38px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--line);
    border-radius: var(--radius);
}

.socials a:hover { border-color: var(--accent); color: var(--accent); }

/* WhatsApp düğmesi */
.wa-float {
    position: fixed;
    right: 20px; bottom: 20px;
    z-index: 70;
    width: 54px; height: 54px;
    border-radius: 50%;
    background: #25d366;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 30px rgba(0, 0, 0, .5);
    transition: transform .18s ease;
}

.wa-float:hover { transform: scale(1.08); color: #fff; }

/* --------------------------------------------------------------- Duyarlı */

@media (max-width: 1024px) {
    .catalog { grid-template-columns: 1fr; }
    .filters { display: none; }
    .cat-tabs { display: flex; }
    .grid--4 { grid-template-columns: repeat(3, 1fr); }
    .product-detail { gap: 36px; }
    .process { grid-template-columns: repeat(2, 1fr); }
    .footer__grid { grid-template-columns: 1fr 1fr; gap: 32px; }
    .cart-layout { grid-template-columns: 1fr; }
    .summary { position: static; }
}

@media (max-width: 768px) {
    .nav { display: none; }
    .burger { display: inline-flex; }
    .grid--4, .grid--3 { grid-template-columns: repeat(2, 1fr); }
    .product-detail { grid-template-columns: 1fr; }
    .section { padding: 52px 0; }
    .footer { margin-top: 64px; }
    .flash-area { right: 12px; left: 12px; width: auto; }
}

@media (max-width: 520px) {
    .grid--4, .grid--3, .grid--2 { grid-template-columns: 1fr; }
    .cart-item { grid-template-columns: 72px 1fr; }
    .cart-item__img { width: 72px; height: 72px; }
    .cart-item > *:last-child { grid-column: 1 / -1; }
    .footer__grid { grid-template-columns: 1fr; }
    .header__logo-text { display: none; }
}

/* Yazdırma (sipariş özeti) */
@media print {
    .header, .footer, .wa-float, .flash-area, .btn { display: none !important; }
    body { background: #fff; color: #000; }
}
