@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&family=Playfair+Display:wght@500;600;700;800;900&display=swap');

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

:root {
    --cream:      #f7f3ee;
    --cream-2:    #efe7dc;
    --white:      #ffffff;
    --espresso:   #241812;   /* en koyu kahve (topbar, footer) */
    --brown-900:  #3a271b;
    --brown-700:  #5c4129;
    --brown-500:  #8a6a4a;
    --tan:        #b07a45;   /* deri tan vurgu */
    --tan-dark:   #9a6736;
    --gold:       #c69c6d;
    --red:        #c0392b;   /* AXFOR kırmızısı vurgu */
    --red-dark:   #a52f23;
    --ink:        #2b1d14;   /* ana metin */
    --muted:      #8a7866;   /* soluk metin */
    --line:       #e7ddd0;   /* ince çizgi */
    --shadow:     0 18px 40px rgba(58, 39, 27, 0.10);
    --radius:     14px;
}

html { scroll-behavior: smooth; }

body {
    font-family: 'Inter', sans-serif;
    background: var(--cream);
    color: var(--ink);
    overflow-x: hidden;
    line-height: 1.5;
}

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

.container { max-width: 1240px; margin: 0 auto; padding: 0 28px; }
.serif { font-family: 'Playfair Display', serif; }

/* ─────────────────────────────  TOP BAR  ───────────────────────────── */
.topbar {
    background: var(--espresso);
    color: rgba(255,255,255,0.72);
    font-size: 12.5px;
}
.topbar .container {
    display: flex; align-items: center; justify-content: space-between;
    height: 40px;
}
.topbar-left, .topbar-right { display: flex; align-items: center; gap: 22px; }
.topbar a { text-decoration: none; color: rgba(255,255,255,0.72); transition: color .2s; }
.topbar a:hover { color: #fff; }
.topbar .ti { display: inline-flex; align-items: center; gap: 7px; }
.topbar .ti svg { width: 14px; height: 14px; opacity: .8; }
.topbar .sep { width: 1px; height: 14px; background: rgba(255,255,255,0.18); }

/* ─────────────────────────────  NAV  ───────────────────────────── */
.nav {
    position: sticky; top: 0; z-index: 200;
    background: var(--white);
    border-bottom: 1px solid var(--line);
}
.nav-row {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    height: 78px;
    gap: 16px;
}
.nav-menu { display: flex; align-items: center; gap: 26px; list-style: none; }
.nav-menu.right { justify-content: flex-end; }
.nav-menu a {
    font-size: 13px; font-weight: 600; letter-spacing: .6px;
    text-transform: uppercase; color: var(--brown-900);
    text-decoration: none; padding: 6px 0; position: relative; transition: color .2s;
}
.nav-menu a::after {
    content:''; position:absolute; left:0; bottom:-2px; width:0; height:2px;
    background: var(--red); transition: width .25s;
}
.nav-menu a:hover { color: var(--red); }
.nav-menu a:hover::after { width: 100%; }

.nav-logo { display: flex; align-items: center; justify-content: center; }
.nav-logo img { height: 42px; }

.nav-right { display: flex; align-items: center; gap: 22px; justify-content: flex-end; }
.nav-icons { display: flex; align-items: center; gap: 6px; justify-content: flex-end; }
.nav-icon {
    width: 40px; height: 40px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: var(--brown-900); background: transparent; border: none; cursor: pointer;
    transition: background .2s, color .2s; text-decoration: none; position: relative;
}
.nav-icon:hover { background: var(--cream-2); color: var(--red); }
.nav-icon svg { width: 20px; height: 20px; }
.nav-cart-count {
    position: absolute; top: 2px; right: 2px;
    background: var(--red); color: #fff; font-size: 10px; font-weight: 700;
    min-width: 16px; height: 16px; padding: 0 4px; border-radius: 8px;
    display: flex; align-items: center; justify-content: center;
}
.nav-hamburger { display: none; }

/* Mobil çekmece menü */
.mobile-drawer {
    position: fixed; inset: 0; z-index: 300; visibility: hidden;
}
.mobile-drawer.open { visibility: visible; }
.mobile-drawer-overlay {
    position: absolute; inset: 0; background: rgba(36,24,18,0.5);
    opacity: 0; transition: opacity .3s;
}
.mobile-drawer.open .mobile-drawer-overlay { opacity: 1; }
.mobile-drawer-panel {
    position: absolute; top: 0; right: 0; height: 100%; width: 82%; max-width: 340px;
    background: var(--white); padding: 24px;
    transform: translateX(100%); transition: transform .3s ease;
    display: flex; flex-direction: column;
}
.mobile-drawer.open .mobile-drawer-panel { transform: translateX(0); }
.mobile-drawer-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 24px; }
.mobile-drawer-head img { height: 38px; }
.mobile-drawer-close { background: none; border: none; cursor: pointer; color: var(--brown-900); }
.mobile-drawer-close svg { width: 26px; height: 26px; }
.mobile-nav-links { list-style: none; display: flex; flex-direction: column; }
.mobile-nav-links a {
    display: block; padding: 15px 4px; font-size: 15px; font-weight: 600;
    color: var(--brown-900); text-decoration: none; border-bottom: 1px solid var(--line);
}
.mobile-nav-links a:hover { color: var(--red); }

/* ─────────────────────────────  BUTTONS  ───────────────────────────── */
.btn {
    display: inline-flex; align-items: center; gap: 9px;
    font-size: 13px; font-weight: 700; letter-spacing: .8px; text-transform: uppercase;
    padding: 14px 30px; border-radius: 8px; text-decoration: none; cursor: pointer;
    border: 1.5px solid transparent; transition: all .22s; white-space: nowrap;
}
.btn svg { width: 16px; height: 16px; transition: transform .2s; }
.btn:hover svg { transform: translateX(3px); }
.btn-primary { background: var(--red); color: #fff; }
.btn-primary:hover { background: var(--red-dark); }
.btn-leather { background: var(--tan); color: #fff; }
.btn-leather:hover { background: var(--tan-dark); }
.btn-dark { background: var(--espresso); color: #fff; }
.btn-dark:hover { background: var(--brown-900); }
.btn-outline { background: transparent; color: var(--brown-900); border-color: var(--brown-900); }
.btn-outline:hover { background: var(--brown-900); color: #fff; }
.btn-ghost-light { background: rgba(255,255,255,.12); color: #fff; border-color: rgba(255,255,255,.4); }
.btn-ghost-light:hover { background: #fff; color: var(--ink); }

/* ─────────────────────────────  HERO SLIDER  ───────────────────────────── */
.hero {
    position: relative;
    background: linear-gradient(120deg, #efe6da 0%, #f3ece1 55%, #e9ddcc 100%);
    overflow: hidden;
}
.hero-slides { position: relative; }
.hero-slide {
    display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: 24px;
    min-height: 560px; padding: 40px 0;
    position: absolute; inset: 0; opacity: 0; visibility: hidden;
    transition: opacity .7s ease;
}
.hero-slide.active { opacity: 1; visibility: visible; position: relative; }
.hero-grid-bg {
    position: absolute; inset: 0; pointer-events: none; z-index: 0;
    background-image: radial-gradient(rgba(176,122,69,0.10) 1.5px, transparent 1.5px);
    background-size: 26px 26px;
    -webkit-mask-image: radial-gradient(ellipse 70% 70% at 50% 50%, #000 30%, transparent 75%);
            mask-image: radial-gradient(ellipse 70% 70% at 50% 50%, #000 30%, transparent 75%);
}
.hero-text { position: relative; z-index: 2; }
.hero-script {
    font-family: 'Playfair Display', serif; font-style: italic; font-weight: 600;
    font-size: clamp(22px, 3vw, 34px); color: var(--tan); margin-bottom: 6px;
}
.hero-title {
    font-family: 'Playfair Display', serif; font-weight: 900;
    font-size: clamp(44px, 6vw, 86px); line-height: 0.98; color: var(--brown-900);
    letter-spacing: -1px; margin-bottom: 18px;
}
.hero-title .accent { color: var(--red); }
.hero-divider {
    display: inline-flex; align-items: center; gap: 12px; margin-bottom: 18px;
    color: var(--brown-500); font-size: 13px; letter-spacing: 1px;
}
.hero-divider::before, .hero-divider::after { content:''; width: 38px; height: 1px; background: var(--brown-500); opacity: .5; }
.hero-sub { font-size: 15.5px; color: var(--brown-700); max-width: 440px; line-height: 1.7; margin-bottom: 28px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }

.hero-visual { position: relative; z-index: 2; display: flex; align-items: center; justify-content: center; }
.hero-visual-inner { position: relative; will-change: transform; }
.hero-product-img {
    max-height: 460px; width: auto;
    mix-blend-mode: multiply;       /* beyaz zemini krem arka plana karıştırır */
    animation: heroFloat 6s ease-in-out infinite;
}
.hero-visual-inner::after {     /* yerdeki nefes alan gölge */
    content: ''; position: absolute; left: 50%; bottom: -14px; transform: translateX(-50%);
    width: 58%; height: 24px; border-radius: 50%; z-index: -1;
    background: radial-gradient(ellipse, rgba(58,39,27,0.26), transparent 70%);
    filter: blur(5px);
    animation: heroShadow 6s ease-in-out infinite;
}
@keyframes heroFloat {
    0%, 100% { transform: translateY(0) rotate(-3deg); }
    50%      { transform: translateY(-18px) rotate(-1deg); }
}
@keyframes heroShadow {
    0%, 100% { transform: translateX(-50%) scale(1);   opacity: .5; }
    50%      { transform: translateX(-50%) scale(.82);  opacity: .3; }
}
.hero-blob {
    position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);
    width: 70%; padding-bottom: 70%; border-radius: 50%; z-index: -1;
    background: radial-gradient(circle, rgba(192,57,43,0.16), transparent 65%);
    animation: heroGlow 6s ease-in-out infinite;
}
@keyframes heroGlow {
    0%,100% { opacity:.6; transform: translate(-50%,-50%) scale(1); }
    50%     { opacity:1; transform: translate(-50%,-50%) scale(1.12); }
}
.hero-badge {
    position: absolute; top: 8%; right: 4%;
    width: 92px; height: 92px; border-radius: 50%;
    background: var(--red); color: #fff;
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    text-align: center; line-height: 1.1; box-shadow: var(--shadow);
    animation: badgeSpin 14s linear infinite;
}
.hero-badge b { font-size: 22px; font-weight: 800; }
.hero-badge span { font-size: 9px; letter-spacing: 1px; text-transform: uppercase; }
@keyframes badgeSpin { from { transform: rotate(-8deg);} 50%{transform: rotate(8deg);} to{transform: rotate(-8deg);} }

.hero-dots {
    position: absolute; bottom: 24px; left: 50%; transform: translateX(-50%);
    display: flex; gap: 10px; z-index: 5;
}
.hero-dot { width: 10px; height: 10px; border-radius: 50%; border: 1.5px solid var(--brown-500); background: transparent; cursor: pointer; transition: all .2s; padding: 0; }
.hero-dot.active { background: var(--red); border-color: var(--red); transform: scale(1.15); }
.hero-arrow {
    position: absolute; top: 50%; transform: translateY(-50%); z-index: 5;
    width: 46px; height: 46px; border-radius: 50%; background: rgba(255,255,255,.7);
    border: none; cursor: pointer; display: flex; align-items: center; justify-content: center;
    color: var(--brown-900); transition: background .2s; backdrop-filter: blur(4px);
}
.hero-arrow:hover { background: #fff; }
.hero-arrow svg { width: 22px; height: 22px; }
.hero-arrow.prev { left: 14px; }
.hero-arrow.next { right: 14px; }

/* ─────────────────────────────  FEATURE STRIP  ───────────────────────────── */
.features {
    background: var(--white); border-bottom: 1px solid var(--line);
}
.features .container {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px;
    padding-top: 28px; padding-bottom: 28px;
}
.feature {
    display: flex; align-items: center; gap: 14px; padding: 6px 18px;
    border-right: 1px solid var(--line);
}
.feature:last-child { border-right: none; }
.feature-icon {
    width: 46px; height: 46px; flex-shrink: 0; border-radius: 50%;
    background: var(--cream); color: var(--tan);
    display: flex; align-items: center; justify-content: center;
}
.feature-icon svg { width: 22px; height: 22px; }
.feature h4 { font-size: 14px; font-weight: 700; color: var(--brown-900); }
.feature p { font-size: 12.5px; color: var(--muted); }

/* ─────────────────────────────  SECTION HEADINGS  ───────────────────────────── */
.section { padding: 76px 0; }
.section-head { text-align: center; max-width: 640px; margin: 0 auto 44px; }
.section-eyebrow {
    display: inline-flex; align-items: center; gap: 10px;
    font-size: 12px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase;
    color: var(--tan); margin-bottom: 14px;
}
.section-eyebrow::before, .section-eyebrow::after { content:''; width: 24px; height: 2px; background: var(--tan); }
.section-title {
    font-family: 'Playfair Display', serif; font-weight: 800;
    font-size: clamp(30px, 4vw, 46px); color: var(--brown-900); line-height: 1.05;
}
.section-title .accent { color: var(--red); }
.section-sub { font-size: 15px; color: var(--muted); margin-top: 12px; line-height: 1.7; }

/* ─────────────────────────────  PROMO GRID  ───────────────────────────── */
.promo-grid {
    display: grid; grid-template-columns: repeat(3, 1fr); grid-auto-rows: 210px; gap: 18px;
}
.promo-card {
    position: relative; border-radius: var(--radius); overflow: hidden;
    display: flex; flex-direction: column; justify-content: center;
    padding: 30px; text-decoration: none; color: #fff; isolation: isolate;
}
.promo-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: -2; transition: transform .6s; }
.promo-card::after { content:''; position: absolute; inset: 0; z-index: -1; background: linear-gradient(180deg, rgba(36,24,18,.15), rgba(36,24,18,.72)); }
.promo-card:hover img { transform: scale(1.06); }
.promo-card.tall { grid-row: span 2; }
.promo-card.wide { grid-column: span 2; }
.promo-card .pc-label { font-size: 11px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--gold); margin-bottom: 8px; }
.promo-card .pc-title { font-family: 'Playfair Display', serif; font-size: 26px; font-weight: 800; line-height: 1.1; margin-bottom: 12px; }
.promo-card .pc-link { font-size: 12px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; display: inline-flex; align-items: center; gap: 6px; }
.promo-card .pc-link svg { width: 14px; height: 14px; }
.promo-card.solid-red { background: var(--red); }
.promo-card.solid-brown { background: var(--brown-900); }
.promo-card.solid-red::after, .promo-card.solid-brown::after { display: none; }
.promo-card .pc-big { font-family: 'Playfair Display', serif; font-size: 52px; font-weight: 900; line-height: 1; }

/* ─────────────────────────────  PRODUCT CARDS  ───────────────────────────── */
.urun-grid {
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px;
}
.urun-card {
    background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
    overflow: hidden; text-decoration: none; color: var(--ink);
    display: flex; flex-direction: column; transition: transform .3s, box-shadow .3s, border-color .3s;
}
.urun-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: var(--cream-2); }
.urun-card-img {
    position: relative; aspect-ratio: 1; background: var(--cream);
    display: flex; align-items: center; justify-content: center; overflow: hidden;
}
.urun-card-img img { width: 100%; height: 100%; object-fit: contain; padding: 14px; mix-blend-mode: multiply; transition: transform .5s; }
.urun-card:hover .urun-card-img img { transform: scale(1.07); }
.urun-card-placeholder { width: 56px; height: 56px; color: var(--brown-500); opacity: .4; }
.urun-card-badges { position: absolute; top: 12px; left: 12px; display: flex; flex-direction: column; gap: 6px; z-index: 2; }
.ucb {
    font-size: 10px; font-weight: 700; letter-spacing: .8px; text-transform: uppercase;
    padding: 4px 10px; border-radius: 100px; color: #fff;
}
.ucb.kat { background: var(--brown-900); }
.ucb.one { background: var(--red); }
.ucb.satan { background: var(--tan); }
.urun-card-fav {
    position: absolute; top: 12px; right: 12px; z-index: 2;
    width: 34px; height: 34px; border-radius: 50%; background: rgba(255,255,255,.9);
    display: flex; align-items: center; justify-content: center; color: var(--brown-700);
    opacity: 0; transform: translateY(-6px); transition: all .25s;
}
.urun-card:hover .urun-card-fav { opacity: 1; transform: translateY(0); }
.urun-card-fav svg { width: 17px; height: 17px; }
.urun-card-overlay {
    position: absolute; left: 0; right: 0; bottom: 0; padding: 12px; z-index: 2;
    transform: translateY(100%); transition: transform .3s; display: flex; justify-content: center;
}
.urun-card:hover .urun-card-overlay { transform: translateY(0); }
.urun-card-overlay span {
    background: var(--espresso); color: #fff; width: 100%; text-align: center;
    font-size: 12px; font-weight: 700; letter-spacing: .8px; text-transform: uppercase;
    padding: 11px; border-radius: 8px;
}
.urun-card-body { padding: 16px 18px 18px; display: flex; flex-direction: column; flex: 1; }
.urun-card-kat { font-size: 11px; font-weight: 600; letter-spacing: 1.2px; text-transform: uppercase; color: var(--tan); margin-bottom: 5px; }
.urun-card-ad { font-size: 15.5px; font-weight: 700; color: var(--brown-900); line-height: 1.35; margin-bottom: 6px; }
.urun-card-kod { font-size: 12px; color: var(--muted); font-family: 'Inter', monospace; }
.urun-card-foot { margin-top: auto; padding-top: 14px; display: flex; align-items: center; justify-content: space-between; }
.urun-card-fiyat { font-size: 17px; font-weight: 800; color: var(--red); font-family: 'Playfair Display', serif; }
.urun-card-fiyat.yok { font-size: 12px; font-weight: 600; color: var(--muted); font-family: 'Inter', sans-serif; }
.urun-card-stars { display: flex; gap: 2px; color: var(--gold); }
.urun-card-stars svg { width: 13px; height: 13px; }

/* ─────────────────────────────  TABS  ───────────────────────────── */
.tabs { display: flex; justify-content: center; gap: 8px; flex-wrap: wrap; margin-bottom: 40px; }
.tab-btn {
    font-size: 13px; font-weight: 700; letter-spacing: .5px;
    padding: 10px 24px; border-radius: 100px; border: 1.5px solid var(--line);
    background: var(--white); color: var(--brown-700); cursor: pointer; transition: all .2s;
}
.tab-btn:hover { border-color: var(--tan); color: var(--tan); }
.tab-btn.active { background: var(--red); border-color: var(--red); color: #fff; }
.tab-panel { display: none; }
.tab-panel.active { display: block; animation: fadeIn .4s ease; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: none; } }
.tab-empty { text-align: center; padding: 50px 0; color: var(--muted); }

.section-cta { text-align: center; margin-top: 46px; }

/* ─────────────────────────────  CATALOG PAGE  ───────────────────────────── */
.page-head {
    background: linear-gradient(120deg, var(--brown-900), var(--espresso));
    color: #fff; padding: 54px 0; text-align: center;
}
.page-head h1 { font-family: 'Playfair Display', serif; font-size: clamp(32px, 5vw, 52px); font-weight: 800; }
.page-head .crumb { font-size: 13px; color: rgba(255,255,255,.6); margin-top: 10px; }
.page-head .crumb a { color: var(--gold); text-decoration: none; }

.catalog { padding: 50px 0 80px; }
.catalog-layout { display: grid; grid-template-columns: 240px 1fr; gap: 36px; align-items: start; }
.catalog-side { position: sticky; top: 96px; }
.filter-box { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: 22px; margin-bottom: 18px; }
.filter-box h3 { font-size: 12px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: var(--brown-900); margin-bottom: 16px; }
.filter-list { list-style: none; display: flex; flex-direction: column; gap: 2px; }
.filter-list a {
    display: flex; align-items: center; justify-content: space-between;
    padding: 9px 12px; border-radius: 8px; text-decoration: none; font-size: 14px;
    color: var(--brown-700); transition: background .2s, color .2s;
}
.filter-list a:hover { background: var(--cream); }
.filter-list a.active { background: var(--red); color: #fff; }
.filter-list a .count { font-size: 12px; opacity: .65; }
.catalog-search { display: flex; gap: 8px; }
.catalog-search input { flex: 1; min-width: 0; border: 1px solid var(--line); border-radius: 8px; padding: 11px 14px; font-size: 14px; font-family: inherit; background: var(--cream); }
.catalog-search input:focus { outline: none; border-color: var(--tan); }
.catalog-search button { background: var(--espresso); color: #fff; border: none; border-radius: 8px; width: 44px; cursor: pointer; display: flex; align-items: center; justify-content: center; }
.catalog-search button svg { width: 18px; height: 18px; }

.catalog-main-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 24px; flex-wrap: wrap; gap: 12px; }
.catalog-count { font-size: 14px; color: var(--muted); }
.catalog-count b { color: var(--brown-900); }
.catalog .urun-grid { grid-template-columns: repeat(3, 1fr); }

.pagination { display: flex; justify-content: center; gap: 8px; margin-top: 44px; flex-wrap: wrap; }
.pagination a, .pagination span {
    min-width: 42px; height: 42px; padding: 0 12px; border-radius: 8px;
    display: flex; align-items: center; justify-content: center;
    font-size: 14px; font-weight: 600; text-decoration: none;
    border: 1px solid var(--line); background: var(--white); color: var(--brown-700); transition: all .2s;
}
.pagination a:hover { border-color: var(--tan); color: var(--tan); }
.pagination .current { background: var(--red); border-color: var(--red); color: #fff; }
.pagination .disabled { opacity: .4; pointer-events: none; }

.empty-state { grid-column: 1 / -1; text-align: center; padding: 70px 0; color: var(--muted); }
.empty-state svg { width: 56px; height: 56px; margin: 0 auto 16px; opacity: .4; }

/* ─────────────────────────────  PRODUCT DETAIL  ───────────────────────────── */
.detail { padding: 44px 0 70px; }
.detail-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: start; }
.detail-img-wrap {
    border-radius: 18px; overflow: hidden; aspect-ratio: 1; background: var(--white);
    border: 1px solid var(--line); display: flex; align-items: center; justify-content: center;
}
.detail-img-wrap img { width: 100%; height: 100%; object-fit: cover; }
.detail-img-wrap.urun-foto img { object-fit: contain; padding: 28px; mix-blend-mode: multiply; }
.detail-back { display: inline-flex; align-items: center; gap: 8px; color: var(--muted); font-size: 13px; font-weight: 600; text-decoration: none; margin-bottom: 22px; transition: color .2s; }
.detail-back:hover { color: var(--red); }
.detail-back svg { width: 16px; height: 16px; }
.detail-kat { font-size: 12px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--tan); margin-bottom: 12px; }
.detail-ad { font-family: 'Playfair Display', serif; font-size: clamp(28px, 4vw, 44px); font-weight: 800; color: var(--brown-900); line-height: 1.05; margin-bottom: 14px; }
.detail-fiyat { font-family: 'Playfair Display', serif; font-size: 32px; font-weight: 800; color: var(--red); margin-bottom: 18px; }
.detail-kod { display: inline-flex; align-items: center; gap: 8px; background: var(--cream-2); border-radius: 8px; padding: 8px 14px; font-size: 13px; font-weight: 600; color: var(--brown-700); margin-bottom: 24px; }
.detail-kod svg { width: 14px; height: 14px; }
.detail-divider { height: 1px; background: var(--line); margin: 24px 0; }
.detail-aciklama { font-size: 15.5px; color: var(--brown-700); line-height: 1.8; }
.detail-points { display: flex; flex-direction: column; gap: 12px; margin: 8px 0; }
.detail-point { display: flex; align-items: center; gap: 11px; color: var(--brown-700); font-size: 14px; }
.detail-point svg { width: 18px; height: 18px; color: var(--tan); flex-shrink: 0; }
.detail-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 28px; }

/* ─────────────────────────────  FOOTER  ───────────────────────────── */
.footer { background: var(--espresso); color: rgba(255,255,255,0.6); padding: 64px 0 28px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.4fr; gap: 44px; padding-bottom: 44px; border-bottom: 1px solid rgba(255,255,255,0.1); }
.footer-brand img { height: 44px; margin-bottom: 16px; filter: brightness(0) invert(1); }
.footer-tagline { font-size: 13.5px; line-height: 1.7; max-width: 280px; margin-bottom: 18px; }
.footer-social { display: flex; gap: 10px; }
.footer-social a { width: 36px; height: 36px; border-radius: 8px; border: 1px solid rgba(255,255,255,0.15); display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,0.55); transition: all .2s; }
.footer-social a:hover { color: #fff; border-color: var(--red); background: var(--red); }
.footer-social svg { width: 16px; height: 16px; }
.footer-col-title { font-size: 12px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: #fff; margin-bottom: 18px; }
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 11px; }
.footer-links a { font-size: 14px; color: rgba(255,255,255,0.6); text-decoration: none; transition: color .2s; }
.footer-links a:hover { color: var(--gold); }
.footer-contact-item { display: flex; align-items: flex-start; gap: 10px; font-size: 13.5px; margin-bottom: 12px; line-height: 1.5; }
.footer-contact-item svg { width: 17px; height: 17px; color: var(--gold); flex-shrink: 0; margin-top: 2px; }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; padding-top: 24px; font-size: 12.5px; flex-wrap: wrap; gap: 8px; }

/* ─────────────────────────────  SCROLL REVEAL  ───────────────────────────── */
.fade-up { opacity: 0; transform: translateY(28px); transition: opacity .7s ease, transform .7s ease; }
.fade-up.visible { opacity: 1; transform: none; }

/* ─────────────────────────────  SAYFA BAŞLIĞI (Hakkımızda / İletişim)  ───────────────────────────── */
.page-hero {
    background: linear-gradient(180deg, var(--cream-2), var(--cream));
    border-bottom: 1px solid var(--line);
    padding: 64px 0 52px;
    text-align: center;
}
.page-hero .section-eyebrow { justify-content: center; }
.page-hero-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(30px, 5vw, 48px);
    font-weight: 800; color: var(--brown-900);
    line-height: 1.05; margin: 10px 0 14px;
}
.page-hero-title .accent { color: var(--red); }
.page-hero-sub { font-size: 15.5px; color: var(--muted); max-width: 600px; margin: 0 auto; line-height: 1.7; }

/* ─────────────────────────────  HAKKIMIZDA — DEĞERLER  ───────────────────────────── */
.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.value-card {
    background: var(--cream); border: 1px solid var(--line);
    border-radius: var(--radius); padding: 30px 26px; text-align: center;
}
.value-ic {
    width: 56px; height: 56px; border-radius: 14px; margin: 0 auto 16px;
    display: flex; align-items: center; justify-content: center;
    background: var(--white); border: 1px solid var(--line); color: var(--tan);
}
.value-ic svg { width: 24px; height: 24px; }
.value-card h4 { font-family: 'Playfair Display', serif; font-size: 19px; color: var(--brown-900); margin-bottom: 8px; }
.value-card p { font-size: 14px; color: var(--muted); line-height: 1.7; }

/* ─────────────────────────────  İLETİŞİM  ───────────────────────────── */
.contact-grid { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 48px; align-items: start; }
.contact-info-title { font-size: 30px; color: var(--brown-900); letter-spacing: 3px; margin-bottom: 12px; }
.contact-info-text { font-size: 15px; color: var(--muted); line-height: 1.8; margin-bottom: 26px; }
.contact-line { display: flex; align-items: flex-start; gap: 14px; margin-bottom: 20px; }
.contact-line-ic {
    width: 44px; height: 44px; border-radius: 12px; flex-shrink: 0;
    display: flex; align-items: center; justify-content: center;
    background: var(--cream-2); color: var(--tan);
}
.contact-line-ic svg { width: 20px; height: 20px; }
.contact-line div { display: flex; flex-direction: column; gap: 2px; }
.contact-line-lbl { font-size: 11.5px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: var(--muted); }
.contact-line-val { font-size: 15px; color: var(--brown-900); font-weight: 600; text-decoration: none; transition: color .2s; }
a.contact-line-val:hover { color: var(--red); }

.contact-form-wrap {
    background: var(--white); border: 1px solid var(--line);
    border-radius: var(--radius); padding: 32px; box-shadow: var(--shadow);
}
.contact-form .cf-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.cf-field { margin-bottom: 18px; }
.cf-field label { display: block; font-size: 13px; font-weight: 600; color: var(--brown-700); margin-bottom: 7px; }
.cf-field label span { color: var(--red); }
.cf-field input, .cf-field textarea {
    width: 100%; font-family: inherit; font-size: 14.5px; color: var(--ink);
    background: var(--cream); border: 1px solid var(--line); border-radius: 10px;
    padding: 12px 14px; transition: border-color .2s, background .2s;
}
.cf-field input:focus, .cf-field textarea:focus {
    outline: none; border-color: var(--tan); background: var(--white);
}
.cf-field textarea { resize: vertical; min-height: 130px; }
.contact-alert { border-radius: 10px; padding: 14px 16px; font-size: 14px; margin-bottom: 20px; }
.contact-alert.ok  { background: #eaf7ee; border: 1px solid #b6e0c2; color: #1d7a3a; }
.contact-alert.err { background: #fdecea; border: 1px solid #f3c2bd; color: var(--red-dark); }

/* ─────────────────────────────  WHATSAPP FLOAT  ───────────────────────────── */
.wa-float {
    position: fixed; right: 22px; bottom: 22px; z-index: 300;
    width: 58px; height: 58px; border-radius: 50%;
    background: #25d366; color: #fff;
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 10px 26px rgba(37, 211, 102, 0.45);
    transition: transform .2s, box-shadow .2s;
    animation: waPulse 2.4s infinite;
}
.wa-float:hover { transform: scale(1.07); box-shadow: 0 14px 32px rgba(37, 211, 102, 0.55); }
.wa-float svg { width: 30px; height: 30px; }
.wa-float-tip {
    position: absolute; right: 70px; white-space: nowrap;
    background: var(--espresso); color: #fff; font-size: 13px; font-weight: 600;
    padding: 8px 14px; border-radius: 8px; opacity: 0; pointer-events: none;
    transform: translateX(8px); transition: opacity .2s, transform .2s;
}
.wa-float:hover .wa-float-tip { opacity: 1; transform: translateX(0); }
@keyframes waPulse {
    0%   { box-shadow: 0 10px 26px rgba(37,211,102,.45), 0 0 0 0 rgba(37,211,102,.5); }
    70%  { box-shadow: 0 10px 26px rgba(37,211,102,.45), 0 0 0 14px rgba(37,211,102,0); }
    100% { box-shadow: 0 10px 26px rgba(37,211,102,.45), 0 0 0 0 rgba(37,211,102,0); }
}

/* ─────────────────────────────  RESPONSIVE  ───────────────────────────── */
@media (max-width: 1024px) {
    .nav-menu, .nav-icons .nav-search-text { display: none; }
    .nav-row { grid-template-columns: auto 1fr auto; }
    .nav-logo { justify-content: flex-start; }
    .nav-hamburger { display: flex; }
    .hero-slide { grid-template-columns: 1fr; text-align: center; min-height: auto; padding: 48px 0 64px; }
    .hero-text { order: 2; }
    .hero-visual { order: 1; margin-bottom: 10px; }
    .hero-divider { justify-content: center; }
    .hero-sub { margin-left: auto; margin-right: auto; }
    .hero-actions { justify-content: center; }
    .hero-product-img { max-height: 320px; }
    .features .container { grid-template-columns: repeat(2, 1fr); gap: 18px; }
    .feature:nth-child(2) { border-right: none; }
    .promo-grid { grid-template-columns: repeat(2, 1fr); }
    .promo-card.wide { grid-column: span 2; }
    .urun-grid { grid-template-columns: repeat(3, 1fr); }
    .catalog-layout { grid-template-columns: 1fr; }
    .catalog-side { position: static; }
    .catalog .urun-grid { grid-template-columns: repeat(3, 1fr); }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .detail-grid { grid-template-columns: 1fr; gap: 32px; }
    .contact-grid { grid-template-columns: 1fr; gap: 32px; }
    .values-grid { grid-template-columns: 1fr; gap: 18px; }
}
@media (max-width: 680px) {
    .topbar-left .ti.hide-sm, .topbar-right .hide-sm { display: none; }
    .urun-grid, .catalog .urun-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
    .promo-grid { grid-template-columns: 1fr; grid-auto-rows: 180px; }
    .promo-card.tall { grid-row: span 1; }
    .promo-card.wide { grid-column: span 1; }
    .features .container { grid-template-columns: 1fr; }
    .feature { border-right: none; border-bottom: 1px solid var(--line); padding-bottom: 16px; }
    .feature:last-child { border-bottom: none; }
    .footer-grid { grid-template-columns: 1fr; gap: 32px; }
    .hero-badge { width: 72px; height: 72px; }
    .hero-badge b { font-size: 17px; }
    .section { padding: 54px 0; }
    .hero-arrow { display: none; }
    .urun-card-ad { font-size: 14px; }
    .contact-form .cf-row { grid-template-columns: 1fr; gap: 0; }
    .contact-form-wrap { padding: 22px; }
    .wa-float { right: 16px; bottom: 16px; width: 52px; height: 52px; }
    .wa-float svg { width: 27px; height: 27px; }
    .wa-float-tip { display: none; }
}

@media (prefers-reduced-motion: reduce) {
    .hero-product-img, .hero-blob, .hero-badge { animation: none; }
    .fade-up { opacity: 1; transform: none; transition: none; }
}
