/* ================================================
   SARAÇLI CARE — Warm Luxury Editorial
   ================================================ */

:root {
    /* Açık Tema (Varsayılan) — Wood Green Fresh */
    --bg-primary: #0D0B09;
    --bg-surface: #FEFCF7;
    --bg-cream: #F7F1E6;
    --bg-cream-dark: #EDE5D4;
    --bg-card: #FFFFFF;
    --bg-card-hover: #FAECD0;
    --bg-warm: #161210;
    --bg-input: #FEFCF7;

    /* Accent */
    --accent: #0B7A38;
    --accent-hover: #096B2F;
    --accent-glow: rgba(11,122,56,0.1);
    --accent-light: #B5E5B0;
    --gold: #A89040;
    --gold-light: #C4A94E;
    --gold-dim: #8A7530;
    --gold-glow: rgba(168,144,64,0.12);

    /* Koyu bölümler için (hero, footer) — sabit */
    --dark-gold: #C9A96E;
    --dark-gold-light: #DBBF8A;
    --dark-gold-dim: #8B7347;

    /* Metin */
    --text-dark: #3D3520;
    --text-body: #5F5428;
    --text-subtle: #8A7E65;
    --text-light: #F2EDE6;
    --text-muted: #A8A095;

    /* Border */
    --border-dark: #E8E0D0;
    --border-light: rgba(255,255,255,0.06);
    --border-gold: rgba(168,144,64,0.3);

    /* Header */
    --bg-header: rgba(254,252,247,0.88);
    --bg-header-scrolled: rgba(254,252,247,0.97);
    --header-shadow: rgba(0,0,0,0.04);
    --header-border: #E8E0D0;

    /* Gölge */
    --shadow-card: rgba(0,0,0,0.04);
    --overlay-dark: rgba(13,11,9,0.5);

    /* Tipografi */
    --font-serif: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
    --font-sans: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;

    /* Spacing */
    --section-py: clamp(4rem, 8vw, 7rem);
    --container-px: clamp(1.25rem, 4vw, 3rem);
    --radius: 4px;

    /* Koyu bölümler (hero, footer, intro, sayfa-hero, urun-hero, bolum-koyu) */
    --section-dark-bg: #F7F1E6;
    --section-dark-text: #3D3520;
    --section-dark-text-sub: #5F5428;
    --section-dark-text-muted: #8A7E65;
    --section-dark-accent: #0B7A38;
    --section-dark-accent-hover: #096B2F;
    --section-dark-accent-dim: #8A7530;
    --section-dark-accent-light: #A89040;
    --section-dark-border: rgba(168,144,64,0.2);
    --section-dark-glow: rgba(168,144,64,0.06);
    --section-dark-btn-text: #FFFFFF;

    /* Intro özel */
    --intro-bg: #F7F1E6;
    --intro-accent: #A89040;
    --intro-accent-glow: rgba(168,144,64,0.12);
    --intro-text: #8A7530;
    --intro-shimmer: rgba(168,144,64,0.3);

    /* Logo filtreleri */
    --logo-filter: none;
    --logo-filter-footer: none;
    --logo-filter-header: none;
}

/* Koyu Tema */
:root[data-theme="dark"] {
    --bg-surface: #111111;
    --bg-cream: #1A1714;
    --bg-cream-dark: #231F1B;
    --bg-card: #1C1916;
    --bg-card-hover: #231F1B;
    --bg-input: #1C1916;

    --accent: #C9A96E;
    --accent-hover: #B8956A;
    --accent-glow: rgba(201,169,110,0.15);
    --accent-light: rgba(201,169,110,0.2);
    --gold: #C9A96E;
    --gold-light: #DBBF8A;
    --gold-dim: #8B7347;
    --gold-glow: rgba(201,169,110,0.15);

    --text-dark: #F2EDE6;
    --text-body: #C8C0B5;
    --text-subtle: #8A8279;

    --border-dark: rgba(255,255,255,0.1);
    --border-gold: rgba(201,169,110,0.3);

    --bg-header: rgba(17,17,17,0.88);
    --bg-header-scrolled: rgba(17,17,17,0.97);
    --header-shadow: rgba(0,0,0,0.3);
    --header-border: rgba(255,255,255,0.06);

    --shadow-card: rgba(0,0,0,0.2);
    --overlay-dark: rgba(0,0,0,0.6);

    --section-dark-bg: #0D0B09;
    --section-dark-text: #F2EDE6;
    --section-dark-text-sub: #A8A095;
    --section-dark-text-muted: #A8A095;
    --section-dark-accent: #C9A96E;
    --section-dark-accent-hover: #DBBF8A;
    --section-dark-accent-dim: #8B7347;
    --section-dark-accent-light: #DBBF8A;
    --section-dark-border: rgba(201,169,110,0.3);
    --section-dark-glow: rgba(201,169,110,0.14);
    --section-dark-btn-text: #0D0B09;

    --intro-bg: #0D0B09;
    --intro-accent: #C9A96E;
    --intro-accent-glow: rgba(201,169,110,0.07);
    --intro-text: #8B7347;
    --intro-shimmer: rgba(201,169,110,0.3);

    --logo-filter: brightness(0) invert(0.85);
    --logo-filter-footer: brightness(0) invert(0.85);
    --logo-filter-header: brightness(0) invert(0.85);
}

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

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

/* Custom selection */
::selection {
    background: var(--accent-light);
    color: var(--text-dark);
}

:root[data-theme="dark"] ::selection {
    background: rgba(201,169,110,0.25);
}

/* Custom scrollbar */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--bg-cream); }
::-webkit-scrollbar-thumb {
    background: var(--bg-cream-dark);
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover { background: var(--gold-dim); }

body {
    font-family: var(--font-sans);
    background: var(--bg-surface);
    color: var(--text-dark);
    line-height: 1.6;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-serif);
    font-weight: 500;
    line-height: 1.15;
    letter-spacing: -0.01em;
}

/* ================================================
   INTRO
   ================================================ */
.intro {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: var(--intro-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    animation: introFallback 0.01s 3.5s forwards;
}

.intro::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 50% 40% at 50% 48%, var(--intro-accent-glow), transparent);
}

/* Grain texture */
.intro::after {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='256' height='256' filter='url(%23n)' opacity='0.03'/%3E%3C/svg%3E");
    opacity: 0.35;
    pointer-events: none;
}

.intro-ic {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
}

/* Logo */
.intro-logo {
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: scale(0.92);
    animation: introLogo 0.7s 0.3s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.intro-logo img {
    height: 90px;
    width: auto;
    filter: var(--logo-filter);
    display: block;
}

/* Gold shimmer sweep */
.intro-logo::after {
    content: '';
    position: absolute;
    top: -20%;
    left: -100%;
    width: 50%;
    height: 140%;
    background: linear-gradient(90deg, transparent, var(--intro-shimmer), transparent);
    animation: introShimmer 0.5s 1.1s ease-out forwards;
}

@keyframes introLogo {
    to { opacity: 1; transform: scale(1); }
}

@keyframes introShimmer {
    from { left: -50%; }
    to { left: 150%; }
}

/* Gold line */
.intro-cizgi {
    width: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--intro-accent), transparent);
    margin: 1.25rem 0;
    animation: introCizgi 0.6s 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes introCizgi {
    to { width: 56px; }
}

/* Tagline */
.intro-altmetin {
    font-family: var(--font-sans);
    font-size: 0.625rem;
    font-weight: 500;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--intro-text);
    opacity: 0;
    transform: translateY(6px);
    animation: introMetin 0.45s 1s ease-out forwards;
}

@keyframes introMetin {
    to { opacity: 1; transform: translateY(0); }
}

/* Exit */
.intro.intro-cikis {
    animation: introExit 0.55s cubic-bezier(0.4, 0, 1, 1) forwards;
    pointer-events: none;
}

.intro.intro-cikis .intro-ic {
    animation: introIcCikis 0.4s ease-in forwards;
}

@keyframes introIcCikis {
    to { opacity: 0; transform: translateY(-16px); }
}

@keyframes introExit {
    0% { opacity: 1; visibility: visible; }
    99% { opacity: 0; visibility: visible; }
    100% { opacity: 0; visibility: hidden; }
}

@keyframes introFallback {
    to { opacity: 0; visibility: hidden; pointer-events: none; }
}

/* --- Utilities --- */
.konteyner {
    width: 100%;
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 var(--container-px);
}

/* Image lazy fade-in */
.img-lazy {
    opacity: 0;
    transition: opacity 0.45s ease;
}

.img-lazy.yuklu {
    opacity: 1;
}

/* Scroll reveal */
.sr {
    opacity: 0;
    transform: translateY(12px);
    transition: opacity 0.6s ease-out,
                transform 0.6s ease-out;
}

.sr.gorunur {
    opacity: 1;
    transform: translateY(0);
}

/* Stagger delays */
.sr-d1 { transition-delay: 0.07s; }
.sr-d2 { transition-delay: 0.14s; }
.sr-d3 { transition-delay: 0.21s; }
.sr-d4 { transition-delay: 0.28s; }
.sr-d5 { transition-delay: 0.35s; }
.sr-d6 { transition-delay: 0.42s; }
.sr-d7 { transition-delay: 0.49s; }
.sr-d8 { transition-delay: 0.56s; }

/* ================================================
   HEADER
   ================================================ */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: var(--bg-header);
    backdrop-filter: blur(24px) saturate(1.2);
    -webkit-backdrop-filter: blur(24px) saturate(1.2);
    border-bottom: 1px solid transparent;
    transition: background 0.4s, border-color 0.4s, box-shadow 0.4s;
}

.site-header.scrolled {
    background: var(--bg-header-scrolled);
    border-bottom-color: var(--border-dark);
    box-shadow: 0 1px 20px var(--header-shadow);
}

.header-ic {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 68px;
}

.logo-link { display: flex; align-items: center; flex-shrink: 0; }

.logo-yatay {
    height: 32px;
    width: auto;
    display: block;
    transition: opacity 0.3s, filter 0.3s;
    filter: var(--logo-filter-header);
}

/* Desktop Nav */
.ana-nav {
    display: none;
    align-items: center;
    gap: 0;
}

.nav-link {
    position: relative;
    padding: 0.5rem 1.1rem;
    font-size: 0.8125rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--text-body);
    transition: color 0.3s;
}

.nav-link:hover,
.nav-link.aktif {
    color: var(--accent);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 1.5px;
    background: var(--accent);
    transition: width 0.3s ease, left 0.3s ease;
}

.nav-link:hover::after,
.nav-link.aktif::after {
    width: 60%;
    left: 20%;
}

.sepet-link { display: flex; align-items: center; gap: 0.25rem; }
.sepet-link svg { transition: stroke 0.3s; }
.sepet-link::after { display: none; }

.sepet-badge {
    background: var(--accent);
    color: #fff;
    font-size: 0.625rem;
    font-weight: 700;
    min-width: 18px;
    height: 18px;
    border-radius: 9px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 5px;
}

.sepet-badge[data-sayi="0"] { display: none; }

/* Mobil header sağ taraf */
.header-sag-mobil {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.sepet-link-mobil {
    display: flex;
    align-items: center;
    position: relative;
    padding: 8px;
    color: var(--text-dark);
    transition: color 0.3s;
}

.sepet-link-mobil:hover { color: var(--accent); }

.sepet-link-mobil .sepet-badge {
    position: absolute;
    top: 2px;
    right: 0;
}

/* Hamburger */
.hamburger {
    display: flex;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
    z-index: 110;
}

.hamburger span {
    display: block;
    width: 22px;
    height: 1.5px;
    background: var(--text-dark);
    transition: transform 0.35s cubic-bezier(0.77, 0, 0.175, 1),
                opacity 0.25s;
    transform-origin: center;
}

.hamburger.acik span:nth-child(1) {
    transform: rotate(45deg) translate(4.5px, 4.5px);
}
.hamburger.acik span:nth-child(2) { opacity: 0; }
.hamburger.acik span:nth-child(3) {
    transform: rotate(-45deg) translate(4.5px, -4.5px);
}

/* Mobile Nav Overlay */
.nav-overlay {
    position: fixed;
    inset: 0;
    background: rgba(13, 11, 9, 0);
    z-index: 99;
    pointer-events: none;
    transition: background 0.4s;
}

.nav-overlay.acik {
    background: rgba(13, 11, 9, 0.5);
    pointer-events: auto;
}

/* Mobile Nav Panel */
.mobil-nav {
    position: fixed;
    top: 0;
    right: 0;
    width: 85%;
    max-width: 360px;
    height: 100vh;
    background: var(--bg-surface);
    z-index: 105;
    display: flex;
    flex-direction: column;
    padding: 6rem 2rem 2rem;
    gap: 0.25rem;
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.77, 0, 0.175, 1);
    overflow-y: auto;
}

.mobil-nav.acik { transform: translateX(0); }

.mobil-nav .nav-link {
    padding: 1rem 0;
    font-size: 0.875rem;
    letter-spacing: 0.1em;
    border-bottom: 1px solid var(--border-dark);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.mobil-nav .nav-link::after { display: none; }

/* ================================================
   HERO
   ================================================ */
.hero {
    position: relative;
    height: 100vh;
    height: 100dvh;
    display: flex;
    flex-direction: column;
    background: var(--section-dark-bg);
    overflow: hidden;
}

/* Animated gradient mesh background */
.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 70% 50% at 65% 35%, var(--section-dark-glow) 0%, transparent 60%),
        radial-gradient(ellipse 50% 40% at 25% 65%, var(--section-dark-glow) 0%, transparent 50%),
        radial-gradient(ellipse 35% 35% at 80% 80%, var(--section-dark-glow) 0%, transparent 50%),
        radial-gradient(ellipse 30% 30% at 10% 20%, var(--section-dark-glow) 0%, transparent 50%);
    animation: heroGlow 10s ease-in-out infinite alternate;
}

@keyframes heroGlow {
    0% { opacity: 0.6; transform: scale(1) rotate(0deg); }
    50% { opacity: 0.85; }
    100% { opacity: 1; transform: scale(1.05) rotate(0.5deg); }
}

/* Grain texture */
.hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='256' height='256' filter='url(%23n)' opacity='0.03'/%3E%3C/svg%3E");
    opacity: 0.4;
    pointer-events: none;
}

/* Decorative corner frame */
.hero-cerceve {
    position: absolute;
    inset: 1.25rem;
    z-index: 3;
    pointer-events: none;
}

.hero-cerceve-kose {
    position: absolute;
    width: 40px;
    height: 40px;
    opacity: 0;
    animation: cerceveFade 1s 1.2s forwards;
}

.hero-cerceve-kose.sol-ust {
    top: 0; left: 0;
    border-top: 1px solid var(--section-dark-border);
    border-left: 1px solid var(--section-dark-border);
}
.hero-cerceve-kose.sag-ust {
    top: 0; right: 0;
    border-top: 1px solid var(--section-dark-border);
    border-right: 1px solid var(--section-dark-border);
}
.hero-cerceve-kose.sol-alt {
    bottom: 0; left: 0;
    border-bottom: 1px solid var(--section-dark-border);
    border-left: 1px solid var(--section-dark-border);
}
.hero-cerceve-kose.sag-alt {
    bottom: 0; right: 0;
    border-bottom: 1px solid var(--section-dark-border);
    border-right: 1px solid var(--section-dark-border);
}

@keyframes cerceveFade {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* Hero layout container */
.hero-konteyner {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    flex: 1;
    padding-top: 68px;
    min-height: 0;
}

/* Center content — flex:1 ile hero-alt'tan kalan alanın ortasına oturur */
.hero-ic {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    max-width: 780px;
    width: 100%;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Hero h1 — önce başlık gelir */
.hero h1 {
    font-size: clamp(2.25rem, 7vw, 4.75rem);
    font-weight: 500;
    color: var(--section-dark-text);
    line-height: 1.08;
    margin-bottom: 0;
    letter-spacing: -0.03em;
    opacity: 0;
    animation: fadeUp 0.8s 0.15s forwards;
}

/* Hero Logo Intro — başlığın altında */
.hero-logo-intro {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
    margin-top: 1.5rem;
    margin-bottom: 1.25rem;
}

.hero-logo-orta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    padding: 1rem 0;
}

.hero-logo {
    height: 56px;
    width: auto;
    filter: var(--logo-filter);
    opacity: 0;
    transform: scale(0) rotate(-20deg);
    animation: heroLogoGir 0.9s 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

.hero-logo-cizgi {
    height: 1px;
    width: 0;
}

.hero-logo-cizgi.sol {
    background: linear-gradient(90deg, transparent, var(--section-dark-accent));
    animation: cizgiAc 0.6s 1s ease-out forwards;
}

.hero-logo-cizgi.sag {
    background: linear-gradient(90deg, var(--section-dark-accent), transparent);
    animation: cizgiAc 0.6s 1s ease-out forwards;
}

/* Divider çizgiler — logo üstü ve altı */
.hero-logo-divider {
    width: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--section-dark-accent-dim) 30%, var(--section-dark-accent) 50%, var(--section-dark-accent-dim) 70%, transparent);
}

.hero-logo-divider.ust {
    animation: dividerAc 0.8s 0.5s ease-out forwards;
}

.hero-logo-divider.alt {
    animation: dividerAc 0.8s 1.1s ease-out forwards;
}

@keyframes heroLogoGir {
    0% { opacity: 0; transform: scale(0) rotate(-20deg); }
    50% { opacity: 1; transform: scale(1.1) rotate(3deg); }
    75% { transform: scale(0.95) rotate(-1deg); }
    100% { opacity: 1; transform: scale(1) rotate(0deg); }
}

@keyframes cizgiAc {
    to { width: 60px; }
}

@keyframes dividerAc {
    to { width: min(320px, 70vw); }
}

.hero h1 em {
    font-style: italic;
    color: var(--section-dark-accent);
}

/* Gold diamond separator */
.hero-ayirici {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin: 1.5rem auto 1.25rem;
    opacity: 0;
    animation: fadeUp 0.6s 0.5s forwards;
}

.hero-ayirici::before,
.hero-ayirici::after {
    content: '';
    width: 48px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--section-dark-accent-dim));
}

.hero-ayirici::after {
    background: linear-gradient(90deg, var(--section-dark-accent-dim), transparent);
}

.ayirici-elmas {
    width: 6px;
    height: 6px;
    background: var(--section-dark-accent);
    transform: rotate(45deg);
    flex-shrink: 0;
}

.hero-aciklama {
    font-size: 1rem;
    color: var(--section-dark-text-sub);
    line-height: 1.8;
    max-width: 500px;
    margin: 0 auto 2.25rem;
    opacity: 0;
    animation: fadeUp 0.8s 0.6s forwards;
}

.gizle-mobil { display: none; }

.hero-butonlar {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    opacity: 0;
    animation: fadeUp 0.8s 0.75s forwards;
}

/* Bottom section — anchored to bottom */
.hero-alt {
    flex-shrink: 0;
    padding: 0 1rem 1.75rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.hero-ozellikler {
    display: grid;
    grid-template-columns: auto auto;
    justify-content: center;
    gap: 0.5rem 1.5rem;
    opacity: 0;
    animation: fadeUp 0.8s 1s forwards;
}

.hero-ozellik {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.6875rem;
    font-weight: 500;
    letter-spacing: 0.04em;
    color: var(--section-dark-text-muted);
    white-space: nowrap;
}

.hero-ozellik svg { color: var(--section-dark-accent); flex-shrink: 0; }

.hero-ozellik-ayirici {
    display: none;
}

/* Scroll indicator */
.hero-scroll-indicator {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    opacity: 0;
    animation: fadeUp 0.8s 1.3s forwards;
    text-decoration: none;
}

.scroll-fare {
    width: 20px;
    height: 32px;
    border: 1.5px solid var(--section-dark-border);
    border-radius: 10px;
    display: flex;
    justify-content: center;
    padding-top: 6px;
}

.scroll-tekerlek {
    width: 2px;
    height: 6px;
    background: var(--section-dark-accent);
    border-radius: 2px;
    animation: scrollBounce 2s ease-in-out infinite;
}

@keyframes scrollBounce {
    0%, 100% { opacity: 1; transform: translateY(0); }
    50% { opacity: 0.3; transform: translateY(8px); }
}

@keyframes fadeUp {
    from { opacity: 0; transform: translateY(24px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ================================================
   BUTTONS
   ================================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem 2.25rem;
    font-size: 0.75rem;
    font-weight: 600;
    font-family: var(--font-sans);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    border: none;
    border-radius: var(--radius);
    cursor: pointer;
    transition: all 0.35s cubic-bezier(0.33, 1, 0.68, 1);
    position: relative;
    overflow: hidden;
}

.btn-birincil {
    background: var(--accent);
    color: #fff;
}

.btn-birincil::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.15), transparent);
    transition: left 0.6s;
}

.btn-birincil:hover {
    background: var(--accent-hover);
    transform: translateY(-2px);
}

.btn-birincil:hover::before {
    left: 100%;
}

.btn-ikincil {
    background: transparent;
    color: var(--accent);
    border: 1px solid var(--gold-dim);
}

.btn-ikincil:hover {
    border-color: var(--accent);
    background: var(--accent-glow);
    transform: translateY(-2px);
}

/* Dark variant — koyu zemin butonlar */
.hero .btn-birincil {
    background: var(--section-dark-accent);
    color: var(--section-dark-btn-text);
}
.hero .btn-birincil:hover {
    background: var(--section-dark-accent-hover);
}

.hero .btn-ikincil {
    color: var(--section-dark-accent-light);
    border-color: var(--section-dark-border);
}

.hero .btn-ikincil:hover {
    border-color: var(--section-dark-accent);
    background: var(--section-dark-glow);
}

.btn-kucuk {
    padding: 0.625rem 1.25rem;
    font-size: 0.6875rem;
}

.btn-sepet-tam { width: 100%; }

.btn-sepet-tam.eklendi {
    background: var(--bg-primary);
    color: var(--dark-gold-light);
}

/* ================================================
   SECTIONS
   ================================================ */
.bolum {
    padding: var(--section-py) 0;
}

.bolum-baslik {
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 400;
    margin-bottom: 0.75rem;
    letter-spacing: -0.02em;
}

.bolum-aciklama {
    color: var(--text-subtle);
    margin-bottom: 3rem;
    font-size: 1rem;
    line-height: 1.7;
}

.bolum-koyu {
    background: var(--section-dark-bg);
    color: var(--section-dark-text);
}

.bolum-koyu .bolum-baslik { color: var(--section-dark-text); }
.bolum-koyu .bolum-aciklama { color: var(--section-dark-text-sub); }

.bolum-krem {
    background: var(--bg-cream);
    border-top: 1px solid var(--border-dark);
    border-bottom: 1px solid var(--border-dark);
}

/* Dekoratif altın çizgi */
.altin-cizgi {
    width: 48px;
    height: 2px;
    background: linear-gradient(90deg, var(--gold), var(--gold-light));
    margin-bottom: 1.25rem;
}

.altin-cizgi-merkez {
    margin-left: auto;
    margin-right: auto;
}

/* ================================================
   CATEGORY GRID
   ================================================ */
.kategori-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
    grid-auto-flow: dense;
}

.kategori-kart {
    position: relative;
    overflow: hidden;
    display: block;
    aspect-ratio: 4/5;
    background: var(--bg-card);
    border-radius: 6px;
    transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1),
                transform 0.7s cubic-bezier(0.16, 1, 0.3, 1),
                box-shadow 0.5s;
}

.kategori-kart:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 48px rgba(0, 0, 0, 0.2);
}

.kategori-kart-gorsel {
    position: absolute;
    inset: 0;
}

.kategori-kart-gorsel img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.33, 1, 0.68, 1);
}

.kategori-kart:hover .kategori-kart-gorsel img {
    transform: scale(1.1);
}

/* Gradient overlay — dramatik */
.kategori-kart::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg,
        rgba(13, 11, 9, 0.92) 0%,
        rgba(13, 11, 9, 0.55) 35%,
        rgba(13, 11, 9, 0.15) 60%,
        rgba(13, 11, 9, 0.05) 100%);
    transition: background 0.5s;
    z-index: 1;
}

.kategori-kart:hover::after {
    background: linear-gradient(0deg,
        rgba(13, 11, 9, 0.95) 0%,
        rgba(13, 11, 9, 0.5) 40%,
        rgba(13, 11, 9, 0.1) 70%,
        rgba(13, 11, 9, 0.02) 100%);
}

/* Gold bottom accent */
.kategori-kart::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--dark-gold-dim), var(--dark-gold-light), var(--dark-gold-dim));
    z-index: 3;
    opacity: 0;
    transition: opacity 0.4s;
}

.kategori-kart:hover::before {
    opacity: 1;
}

.kategori-kart-icerik {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1.25rem;
    z-index: 2;
    transition: transform 0.5s cubic-bezier(0.33, 1, 0.68, 1);
}

.kategori-kart:hover .kategori-kart-icerik {
    transform: translateY(-4px);
}

.kategori-kart-icerik h3 {
    font-family: var(--font-serif);
    font-size: clamp(1.0625rem, 2.5vw, 1.5rem);
    font-weight: 500;
    color: #fff;
    margin-bottom: 0.5rem;
    line-height: 1.2;
}

.kategori-kart-icerik .urun-sayisi {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.625rem;
    color: var(--dark-gold-light);
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.kategori-kart-icerik .urun-sayisi::before {
    content: '';
    width: 16px;
    height: 1px;
    background: var(--dark-gold-dim);
}

/* Featured ilk 2 kart */
.kategori-kart.featured {
    grid-column: span 2;
    aspect-ratio: 16/9;
}

/* ================================================
   PRODUCT GRID
   ================================================ */
.urun-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
}

.urun-kart {
    background: var(--bg-card);
    border: 1px solid var(--border-dark);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: 0 2px 12px var(--shadow-card);
    transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1),
                transform 0.7s cubic-bezier(0.16, 1, 0.3, 1),
                border-color 0.4s, box-shadow 0.4s;
    display: flex;
    flex-direction: column;
}

.urun-kart:hover {
    border-color: var(--accent);
    transform: translateY(-6px);
    box-shadow: 0 16px 48px rgba(201, 169, 110, 0.12), 0 4px 16px rgba(0, 0, 0, 0.06);
}

.urun-kart-gorsel {
    position: relative;
    aspect-ratio: 1;
    overflow: hidden;
    background: var(--bg-cream);
    display: block;
}

.urun-kart-gorsel img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.33, 1, 0.68, 1);
}

.urun-kart:hover .urun-kart-gorsel img {
    transform: scale(1.06);
}

/* Hover overlay with quick-add */
.urun-kart-gorsel::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(13, 11, 9, 0);
    transition: background 0.35s;
}

.urun-kart:hover .urun-kart-gorsel::after {
    background: rgba(13, 11, 9, 0.08);
}

.urun-kart-icerik {
    padding: 1.125rem 1.25rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    flex: 1;
}

.urun-kart-icerik h3 {
    font-family: var(--font-serif);
    font-size: 1rem;
    font-weight: 500;
    line-height: 1.3;
    letter-spacing: -0.01em;
}

.urun-kart-icerik h3 a { transition: color 0.25s; }
.urun-kart-icerik h3 a:hover { color: var(--accent); }

.urun-kart-icerik .urun-aciklama {
    font-size: 0.875rem;
    color: var(--text-subtle);
    line-height: 1.6;
    flex: 1;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.urun-kart .btn { margin-top: 0.5rem; }

/* ================================================
   CATEGORY PAGE — Premium Product Grid
   ================================================ */
.kat-urun-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.75rem;
}

.kat-urun-kart {
    background: var(--bg-card);
    border: 1px solid var(--border-dark);
    border-radius: 6px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 2px 16px var(--shadow-card);
    transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1),
                transform 0.7s cubic-bezier(0.16, 1, 0.3, 1),
                border-color 0.5s, box-shadow 0.5s;
}

/* Gold top accent line */
.kat-urun-kart::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--gold-dim), var(--gold-light), var(--gold-dim));
    opacity: 0;
    transition: opacity 0.4s;
    z-index: 3;
}

.kat-urun-kart:hover {
    border-color: var(--accent);
    transform: translateY(-8px);
    box-shadow:
        0 24px 64px rgba(201, 169, 110, 0.1),
        0 8px 24px rgba(0, 0, 0, 0.06);
}

.kat-urun-kart:hover::after {
    opacity: 1;
}

/* Image */
.kat-urun-kart-gorsel {
    position: relative;
    aspect-ratio: 1;
    overflow: hidden;
    background: var(--bg-cream);
    display: block;
}

.kat-urun-kart-gorsel img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s cubic-bezier(0.33, 1, 0.68, 1);
}

.kat-urun-kart:hover .kat-urun-kart-gorsel img {
    transform: scale(1.05);
}

/* Subtle bottom gradient on image */
.kat-urun-kart-gorsel::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 70%, rgba(0, 0, 0, 0.04) 100%);
    z-index: 1;
    pointer-events: none;
}

/* Shimmer sweep on hover */
.kat-urun-kart-gorsel::after {
    content: '';
    position: absolute;
    top: 0;
    left: -80%;
    width: 60%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    z-index: 2;
    pointer-events: none;
}

.kat-urun-kart:hover .kat-urun-kart-gorsel::after {
    animation: kartShimmer 0.7s ease-out;
}

@keyframes kartShimmer {
    0% { left: -60%; }
    100% { left: 120%; }
}

/* Content area */
.kat-urun-kart-icerik {
    padding: 1.375rem 1.375rem 1.625rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

/* Category label with gold line */
.kat-urun-etiket {
    font-size: 0.625rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--accent);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.kat-urun-etiket::after {
    content: '';
    width: 20px;
    height: 1px;
    background: var(--gold-dim);
}

/* Product name */
.kat-urun-kart-icerik h3 {
    font-family: var(--font-serif);
    font-size: 1.25rem;
    font-weight: 500;
    line-height: 1.25;
    letter-spacing: -0.01em;
}

.kat-urun-kart-icerik h3 a {
    transition: color 0.3s;
}

.kat-urun-kart-icerik h3 a:hover {
    color: var(--accent);
}

/* Description */
.kat-urun-kart-icerik .urun-aciklama {
    font-size: 0.875rem;
    color: var(--text-subtle);
    line-height: 1.7;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Button */
.kat-urun-kart .btn {
    margin-top: 0.75rem;
}

/* Hero product count badge */
.hero-urun-sayisi {
    display: inline-block;
    font-size: 0.6875rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--section-dark-accent);
    border: 1px solid var(--border-gold);
    padding: 0.375rem 1.25rem;
    border-radius: 2rem;
    margin-top: 0.75rem;
    position: relative;
}

/* ================================================
   BREADCRUMB
   ================================================ */
.breadcrumb {
    padding: 1.25rem 0;
    font-size: 0.8125rem;
    color: var(--text-subtle);
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.breadcrumb a {
    color: var(--text-body);
    transition: color 0.25s;
}
.breadcrumb a:hover { color: var(--accent); }
.breadcrumb .ayirici { color: var(--border-dark); font-size: 0.75rem; }

/* Hero içindeki breadcrumb (koyu zemin) */
.breadcrumb-hero {
    justify-content: center;
    padding-bottom: 1.5rem;
    position: relative;
}
.breadcrumb-hero,
.breadcrumb-hero span { color: var(--section-dark-text-muted); }
.breadcrumb-hero a { color: var(--section-dark-accent-dim); }
.breadcrumb-hero a:hover { color: var(--section-dark-accent-light); }
.breadcrumb-hero .ayirici { color: var(--border-light); }

/* ================================================
   PRODUCT DETAIL
   ================================================ */
.urun-hero {
    background: var(--section-dark-bg);
    padding: calc(68px + 2rem) 0 1.5rem;
    position: relative;
}

.urun-hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 20%;
    right: 20%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--section-dark-accent-dim), transparent);
}

.urun-breadcrumb {
    padding: 0;
    justify-content: center;
    opacity: 0;
    animation: fadeUp 0.45s 0.08s ease-out forwards;
}

.urun-breadcrumb,
.urun-breadcrumb a { color: var(--section-dark-text-muted); }
.urun-breadcrumb a:hover { color: var(--section-dark-accent-light); }
.urun-breadcrumb .ayirici { color: var(--section-dark-accent-dim); }

.urun-detay { padding: 3rem 0 var(--section-py); }

.urun-detay-ic {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.urun-gorsel-alan {
    position: relative;
}

.urun-gorsel-cerceve {
    background: var(--bg-cream);
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border: 1px solid var(--border-dark);
    border-radius: var(--radius);
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
    position: relative;
}

.urun-gorsel-cerceve::before {
    content: '';
    position: absolute;
    inset: 8px;
    border: 1px solid rgba(201, 169, 110, 0.1);
    border-radius: 2px;
    pointer-events: none;
    transition: border-color 0.4s;
}

.urun-gorsel-cerceve:hover::before {
    border-color: rgba(201, 169, 110, 0.25);
}

.urun-gorsel-cerceve img {
    max-width: 85%;
    max-height: 85%;
    object-fit: contain;
    transition: transform 0.6s cubic-bezier(0.33, 1, 0.68, 1);
}

.urun-gorsel-cerceve:hover img { transform: scale(1.05); }

.urun-bilgi {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.kategori-rozet {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.6875rem;
    font-weight: 600;
    color: var(--accent);
    letter-spacing: 0.12em;
    text-transform: uppercase;
    transition: color 0.25s;
}

.kategori-rozet:hover { color: var(--accent-hover); }

.rozet-cizgi {
    width: 24px;
    height: 1px;
    background: var(--gold-dim);
}

.urun-bilgi h1 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 400;
    letter-spacing: -0.02em;
    line-height: 1.1;
}

.urun-bilgi .aciklama {
    color: var(--text-body);
    line-height: 1.85;
    font-size: 1.0625rem;
    max-width: 520px;
}

.urun-aksiyonlar {
    padding-top: 0.5rem;
}

.urun-aksiyonlar .btn { max-width: 360px; }

/* Ürün Özellikleri — tek bütünleşik blok */
.urun-ozellikler {
    padding: 1.25rem 1.5rem;
    background: rgba(201, 169, 110, 0.04);
    border: 1px solid var(--border-gold);
    border-radius: var(--radius);
    margin-top: 0.5rem;
}

.urun-ozellik-vurgu {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding-bottom: 1rem;
    margin-bottom: 1rem;
    border-bottom: 1px solid rgba(201, 169, 110, 0.15);
}

.ozel-baski-ikon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(201, 169, 110, 0.1);
    border-radius: 50%;
    flex-shrink: 0;
}

.urun-ozellik-vurgu strong {
    display: block;
    font-family: var(--font-sans);
    font-weight: 600;
    font-size: 0.875rem;
    color: var(--accent);
    margin-bottom: 0.25rem;
    letter-spacing: 0.02em;
}

.urun-ozellik-vurgu p {
    font-size: 0.8125rem;
    color: var(--text-subtle);
    line-height: 1.6;
}

.urun-ozellik-liste {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.urun-ozellik-madde {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8125rem;
    color: var(--text-subtle);
}

.urun-ozellik-madde svg { flex-shrink: 0; }

/* İlgili ürünler */
.ilgili-urunler {
    padding: var(--section-py) 0;
    background: var(--bg-cream);
    border-top: 1px solid var(--border-dark);
}

/* ================================================
   SAYFA HERO (iç sayfalar)
   ================================================ */
.sayfa-hero {
    background: var(--section-dark-bg);
    padding: calc(68px + 3rem) 0 3rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.sayfa-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 60% 50% at 50% 50%, var(--section-dark-glow), transparent);
}

.sayfa-hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 20%;
    right: 20%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--section-dark-accent-dim), transparent);
}

.sayfa-hero .breadcrumb-hero {
    opacity: 0;
    animation: fadeUp 0.45s 0.05s ease-out forwards;
}

.sayfa-hero h1 {
    font-size: clamp(2.25rem, 4.5vw, 3.25rem);
    font-weight: 400;
    color: var(--section-dark-text);
    margin-bottom: 1rem;
    position: relative;
    letter-spacing: -0.02em;
    opacity: 0;
    animation: fadeUp 0.5s 0.12s ease-out forwards;
}

.sayfa-hero p,
.sayfa-hero .hero-urun-sayisi {
    color: var(--section-dark-text-muted);
    font-size: 1.0625rem;
    max-width: 520px;
    margin: 0 auto;
    line-height: 1.75;
    position: relative;
    opacity: 0;
    animation: fadeUp 0.45s 0.22s ease-out forwards;
}

/* ================================================
   HAKKIMIZDA
   ================================================ */
.icerik-blok { max-width: 740px; }

.icerik-metin {
    color: var(--text-body);
    line-height: 1.85;
    margin-bottom: 1.25rem;
    font-size: 1rem;
}

/* Deger Kartlari */
.deger-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

.deger-kart {
    background: var(--bg-card);
    border: 1px solid var(--border-dark);
    border-radius: var(--radius);
    padding: 2rem;
    box-shadow: 0 2px 12px var(--shadow-card);
    transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1),
                transform 0.7s cubic-bezier(0.16, 1, 0.3, 1),
                border-color 0.35s, box-shadow 0.35s;
}

.deger-kart:hover {
    border-color: var(--accent);
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(201, 169, 110, 0.08);
}

.deger-ikon {
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-cream);
    border-radius: var(--radius);
    margin-bottom: 1.5rem;
}

.deger-kart h3 {
    font-family: var(--font-sans);
    font-weight: 600;
    font-size: 0.9375rem;
    margin-bottom: 0.5rem;
}

.deger-kart p {
    font-size: 0.875rem;
    color: var(--text-subtle);
    line-height: 1.6;
}

/* Neden Biz */
.neden-listesi { display: flex; flex-direction: column; gap: 1.5rem; margin-top: 1.5rem; }

.neden-madde {
    display: flex;
    gap: 1.25rem;
    align-items: flex-start;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--border-dark);
}

.neden-madde:last-child { border-bottom: none; padding-bottom: 0; }

.neden-numara {
    font-family: var(--font-serif);
    font-size: 2rem;
    font-weight: 600;
    color: var(--gold-dim);
    flex-shrink: 0;
    width: 48px;
    line-height: 1;
    opacity: 0.5;
}

.neden-madde h4 {
    font-family: var(--font-sans);
    font-weight: 600;
    font-size: 0.9375rem;
    margin-bottom: 0.35rem;
}

.neden-madde p { font-size: 0.875rem; color: var(--text-subtle); line-height: 1.6; }

/* CTA */
.cta-bolum { text-align: center; max-width: 640px; margin: 0 auto; }

.cta-butonlar {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* ================================================
   BIZE ULASIN
   ================================================ */
.iletisim-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.iletisim-bilgi {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.iletisim-kart {
    background: var(--bg-card);
    border: 1px solid var(--border-dark);
    border-radius: var(--radius);
    padding: 1.75rem;
    box-shadow: 0 2px 12px var(--shadow-card);
    transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1),
                transform 0.7s cubic-bezier(0.16, 1, 0.3, 1),
                border-color 0.3s, box-shadow 0.3s;
}

.iletisim-kart:hover {
    border-color: var(--accent);
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(201, 169, 110, 0.08);
}

.iletisim-ikon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-cream);
    border-radius: var(--radius);
    margin-bottom: 1.25rem;
}

.iletisim-kart h3 {
    font-family: var(--font-sans);
    font-weight: 600;
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
}

.iletisim-kart p { font-size: 0.875rem; color: var(--text-subtle); line-height: 1.5; }
.iletisim-kart a { color: var(--accent); transition: color 0.2s; }
.iletisim-kart a:hover { color: var(--accent-hover); }

/* ================================================
   FORMS
   ================================================ */
.form-bolum {
    background: var(--bg-card);
    border: 1px solid var(--border-dark);
    border-radius: var(--radius);
    padding: 2.25rem;
    box-shadow: 0 2px 16px var(--shadow-card);
}

.form-bolum h2 {
    font-size: 1.625rem;
    margin-bottom: 2rem;
    letter-spacing: -0.02em;
}

.form-grup { margin-bottom: 1.25rem; }

.form-grup label {
    display: block;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--text-subtle);
    margin-bottom: 0.4rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.form-grup input,
.form-grup textarea {
    width: 100%;
    padding: 0.875rem 1.125rem;
    font-size: 0.9375rem;
    font-family: var(--font-sans);
    border: 1px solid var(--border-dark);
    border-radius: var(--radius);
    background: var(--bg-input);
    color: var(--text-dark);
    transition: border-color 0.3s, box-shadow 0.3s;
    outline: none;
}

.form-grup input:focus,
.form-grup textarea:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 3px var(--accent-glow);
}

.form-grup textarea { resize: vertical; min-height: 120px; }
.form-grup .zorunlu { color: var(--accent); }

.form-mesaj { padding: 1.125rem 1.5rem; margin-bottom: 1.5rem; font-size: 0.9375rem; border-radius: var(--radius); line-height: 1.6; }
.form-mesaj.basarili { background: rgba(201, 169, 110, 0.08); border: 1px solid var(--border-gold); color: var(--text-dark); }
.form-mesaj.hata { background: #fef2f0; border: 1px solid #f5c6cb; color: #c0392b; }

/* ================================================
   SEPET
   ================================================ */
.sepet-bos { text-align: center; padding: 5rem 0; }
.sepet-bos h2 { margin-bottom: 0.75rem; font-weight: 400; }
.sepet-bos p { color: var(--text-subtle); margin-bottom: 2rem; font-size: 1.0625rem; line-height: 1.7; }

/* Teklif başarı mesajı */
.teklif-basari {
    text-align: center;
    padding: 4rem 2rem;
    max-width: 520px;
    margin: 0 auto;
}

.teklif-basari-ikon {
    width: 80px;
    height: 80px;
    margin: 0 auto 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(201, 169, 110, 0.08);
    border-radius: 50%;
    border: 1px solid var(--border-gold);
}

.teklif-basari h2 {
    font-size: clamp(1.75rem, 3vw, 2.25rem);
    font-weight: 400;
    margin-bottom: 1.25rem;
    letter-spacing: -0.02em;
}

.teklif-basari p {
    color: var(--text-body);
    font-size: 1.0625rem;
    line-height: 1.75;
    margin-bottom: 0.5rem;
}

.teklif-basari-alt {
    color: var(--text-subtle) !important;
    font-size: 0.875rem !important;
    font-style: italic;
    margin-top: 1rem !important;
}

.sepet-listesi { display: flex; flex-direction: column; gap: 0.75rem; margin-bottom: 2.5rem; }

.sepet-urun {
    background: var(--bg-card);
    border: 1px solid var(--border-dark);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.75rem 1.25rem;
    padding: 1.25rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
    transition: border-color 0.25s, box-shadow 0.25s;
}

.sepet-urun:hover {
    border-color: var(--accent);
    box-shadow: 0 4px 16px rgba(201, 169, 110, 0.06);
}

.sepet-urun-gorsel {
    width: 72px;
    height: 72px;
    border-radius: var(--radius);
    flex-shrink: 0;
    background: var(--bg-cream);
    overflow: hidden;
}

.sepet-urun-gorsel img { width: 100%; height: 100%; object-fit: cover; }

.sepet-urun-bilgi { flex: 1; min-width: 0; }

.sepet-urun-bilgi h3 {
    font-family: var(--font-sans);
    font-weight: 600;
    font-size: 0.9375rem;
    margin-bottom: 0.2rem;
}


.sepet-urun-miktar {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
    flex-shrink: 0;
}

.sepet-urun-miktar label {
    font-size: 0.6875rem;
    color: var(--text-subtle);
    letter-spacing: 0.03em;
}

.sepet-urun-miktar input {
    width: 72px;
    padding: 0.4rem 0.5rem;
    border: 1px solid var(--border-dark);
    background: var(--bg-input);
    font-family: var(--font-sans);
    font-size: 0.8125rem;
    text-align: center;
    color: var(--text-dark);
    transition: border-color 0.2s;
    outline: none;
}

.sepet-urun-miktar input:focus {
    border-color: var(--accent);
}

.sepet-urun-kaldir {
    color: var(--text-subtle);
    font-size: 0.875rem;
    padding: 0.5rem;
    transition: color 0.2s;
    flex-shrink: 0;
}
.sepet-urun-kaldir:hover { color: #c0392b; }

/* Mobilde sepet — grid layout */
@media (max-width: 767px) {
    .sepet-urun {
        display: grid;
        grid-template-columns: 52px 1fr auto;
        grid-template-rows: auto auto;
        gap: 0.2rem 0.75rem;
        padding: 1rem;
        align-items: center;
    }

    .sepet-urun-gorsel {
        width: 52px;
        height: 52px;
        grid-row: 1 / 3;
        grid-column: 1;
    }

    .sepet-urun-bilgi {
        grid-column: 2;
        grid-row: 1;
    }

    .sepet-urun-bilgi h3 { font-size: 0.875rem; }

    .sepet-urun-miktar {
        grid-column: 2;
        grid-row: 2;
        flex-direction: row;
        align-items: center;
        gap: 0.5rem;
    }

    .sepet-urun-miktar label { font-size: 0.625rem; }
    .sepet-urun-miktar input { width: 56px; padding: 0.3rem 0.4rem; font-size: 0.75rem; }

    .sepet-urun-kaldir {
        grid-column: 3;
        grid-row: 1 / 3;
        align-self: center;
    }

    /* Ürün detay görseli — mobilde full-bleed */
    .urun-detay { padding: 0 0 var(--section-py); }

    .urun-gorsel-alan {
        margin: 0 calc(-1 * var(--container-px));
    }

    .urun-gorsel-cerceve {
        border: none;
        border-radius: 0;
        box-shadow: none;
    }

    .urun-gorsel-cerceve::before { display: none; }

    .urun-gorsel-cerceve img {
        max-width: 100%;
        max-height: 100%;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .urun-bilgi { padding-top: 1.5rem; }
}

/* ================================================
   FLOATING SEPET BUTONU (Mobil)
   ================================================ */
.floating-sepet {
    position: fixed;
    bottom: 1.5rem;
    right: 1.5rem;
    width: 56px;
    height: 56px;
    background: var(--accent);
    color: var(--bg-primary);
    border-radius: 50%;
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 90;
    box-shadow:
        0 4px 20px rgba(11,122,56,0.3),
        0 2px 8px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s cubic-bezier(0.33, 1, 0.68, 1),
                box-shadow 0.3s,
                background 0.3s;
}

:root[data-theme="dark"] .floating-sepet {
    box-shadow:
        0 4px 20px rgba(201,169,110,0.35),
        0 2px 8px rgba(0,0,0,0.15);
}

.floating-sepet:hover {
    transform: translateY(-3px) scale(1.05);
    background: var(--accent-hover);
    box-shadow:
        0 8px 32px rgba(11,122,56,0.35),
        0 4px 12px rgba(0, 0, 0, 0.1);
}

.floating-sepet:active {
    transform: scale(0.95);
}

.floating-sepet svg {
    stroke: var(--bg-primary);
}

.floating-sepet-badge {
    position: absolute;
    top: -4px;
    right: -4px;
    background: var(--bg-primary);
    color: var(--dark-gold-light);
    font-size: 0.625rem;
    font-weight: 700;
    font-family: var(--font-sans);
    min-width: 20px;
    height: 20px;
    border-radius: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 5px;
    border: 2px solid var(--accent);
}

/* Pulse animation when item added */
@keyframes sepetPulse {
    0% { transform: scale(1); }
    30% { transform: scale(1.2); }
    60% { transform: scale(0.95); }
    100% { transform: scale(1); }
}

.floating-sepet.pulse {
    animation: sepetPulse 0.5s cubic-bezier(0.33, 1, 0.68, 1);
}

/* Desktop: hide floating button */
@media (min-width: 1024px) {
    .floating-sepet { display: none !important; }
}

/* ================================================
   404 — artık sayfa-hero + bolum kullanıyor
   ================================================ */

/* ================================================
   TOAST
   ================================================ */
.toast {
    position: fixed;
    bottom: -80px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--bg-primary);
    color: var(--dark-gold-light);
    padding: 0.9375rem 1.75rem;
    font-size: 0.8125rem;
    font-weight: 500;
    z-index: 200;
    transition: bottom 0.4s cubic-bezier(0.33, 1, 0.68, 1);
    white-space: nowrap;
    letter-spacing: 0.03em;
    border: 1px solid var(--border-gold);
    border-radius: var(--radius);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.toast.goster { bottom: 2rem; }

/* ================================================
   REFERANSLAR
   ================================================ */
.ref-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1px;
    margin-top: 3rem;
    border: 1px solid var(--border-dark);
    border-radius: var(--radius);
    overflow: hidden;
    background: var(--border-dark);
}

.ref-kart {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem 1.5rem;
    background: var(--bg-card);
    transition: background 0.3s;
    position: relative;
}

.ref-kart:hover {
    background: var(--bg-cream);
}

.ref-kart:hover .ref-monogram {
    color: var(--gold);
    border-color: var(--gold);
}

.ref-monogram {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border: 1px solid var(--border-dark);
    border-radius: 50%;
    font-family: var(--font-serif);
    font-size: 1.125rem;
    font-weight: 600;
    font-style: italic;
    color: var(--gold-dim);
    flex-shrink: 0;
    transition: color 0.3s, border-color 0.3s;
    line-height: 1;
}

.ref-ad {
    font-family: var(--font-serif);
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-dark);
    letter-spacing: 0.01em;
    line-height: 1.3;
}

/* Sayaç satırı */
.ref-sayac-satir {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2.5rem;
    padding: 1rem 0;
}

.ref-sayac {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.375rem;
}

.ref-sayi {
    font-family: var(--font-serif);
    font-size: clamp(2.25rem, 5vw, 3.25rem);
    font-weight: 600;
    color: var(--gold);
    line-height: 1;
}

.ref-sayi-plus {
    font-weight: 400;
    font-style: italic;
    opacity: 0.7;
}

.ref-etiket {
    font-family: var(--font-sans);
    font-size: 0.6875rem;
    font-weight: 600;
    color: var(--text-subtle);
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.ref-sayac-ayir {
    width: 1px;
    height: 48px;
    background: linear-gradient(180deg, transparent, var(--border-dark), transparent);
}

/* ================================================
   FOOTER
   ================================================ */
.site-footer {
    background: var(--section-dark-bg);
    color: var(--section-dark-text-muted);
    padding: 2.5rem 0 0;
    margin-top: auto;
    position: relative;
}

.site-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 5%;
    right: 5%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--section-dark-accent), transparent);
    opacity: 0.4;
}

/* Üst: logo + nav */
.footer-ust {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.25rem;
    padding-bottom: 1.5rem;
}

.footer-logo {
    height: 40px;
    width: auto;
    filter: var(--logo-filter-footer);
}

.footer-marka-ortali {
    text-align: center;
}

.footer-nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem 1.5rem;
}

.footer-nav a {
    font-size: 0.8125rem;
    color: var(--section-dark-text-muted);
    transition: color 0.25s;
    letter-spacing: 0.02em;
}

.footer-nav a:hover {
    color: var(--section-dark-accent-light);
}

/* Ayırıcı çizgi */
.footer-cizgi {
    height: 1px;
    background: var(--section-dark-border);
}

/* Orta: adres + e-posta */
.footer-bilgi {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.625rem;
    padding: 1.25rem 0;
    text-align: center;
}

.footer-adres,
.footer-eposta {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8125rem;
    color: var(--section-dark-text-muted);
    flex-wrap: wrap;
    justify-content: center;
}

.footer-adres svg,
.footer-eposta svg {
    color: var(--section-dark-accent);
    flex-shrink: 0;
}

.footer-eposta a {
    color: var(--section-dark-text-muted);
    transition: color 0.25s;
}

.footer-eposta a:hover {
    color: var(--section-dark-accent-light);
}

.footer-sep {
    color: var(--section-dark-accent-dim);
}

/* Alt: copyright */
.footer-alt {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
    padding: 1.25rem 0;
    font-size: 0.75rem;
    color: var(--section-dark-accent-dim);
    text-align: center;
    letter-spacing: 0.04em;
}

.footer-domain {
    color: var(--section-dark-accent-dim);
    font-size: 0.6875rem;
    letter-spacing: 0.08em;
}

/* ================================================
   TABLET (>=768px)
   ================================================ */
@media (min-width: 768px) {
    .gizle-mobil { display: inline; }
    .hero-cerceve { inset: 1.5rem; }
    .hero-cerceve-kose { width: 50px; height: 50px; }
    .hero-ozellikler { display: flex; gap: 1.5rem; }
    .hero-ozellik { font-size: 0.75rem; }
    .hero-ozellik-ayirici { display: block; }
    .hero-alt { padding-bottom: 2.5rem; gap: 2rem; }
    .hero-ayirici::before, .hero-ayirici::after { width: 64px; }
    .hero-logo { height: 64px; }
    .hero-logo-orta { gap: 2rem; }
    @keyframes cizgiAc { to { width: 80px; } }
    @keyframes dividerAc { to { width: 380px; } }

    .kategori-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1rem;
    }

    .kategori-kart { aspect-ratio: 3/4; }
    .kategori-kart.featured { aspect-ratio: 2/1; }

    .kategori-kart-icerik { padding: 1.5rem; }

    .urun-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.25rem;
    }

    .kat-urun-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }

    .kat-urun-kart-icerik {
        padding: 1.75rem 1.75rem 2rem;
        gap: 0.625rem;
    }

    .kat-urun-kart-icerik h3 {
        font-size: 1.375rem;
    }

    .kat-urun-kart-icerik .urun-aciklama {
        font-size: 0.9375rem;
    }

    .deger-grid { grid-template-columns: repeat(2, 1fr); }

    .iletisim-grid {
        grid-template-columns: 1.2fr 0.8fr;
        gap: 2.5rem;
    }

    .footer-ust { flex-direction: column; align-items: center; }
    .footer-bilgi { flex-direction: row; gap: 2rem; }
    .footer-alt { flex-direction: row; justify-content: space-between; }

    .sepet-urun-gorsel { width: 88px; height: 88px; }

    .form-iki-sutun {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 1.25rem;
    }

    .ref-grid { grid-template-columns: repeat(2, 1fr); }
    .ref-kart { padding: 1.5rem 1.75rem; }
    .ref-sayac-satir { gap: 3.5rem; }

    .sayfa-hero { padding: calc(68px + 4rem) 0 4rem; }
    .urun-hero { padding: calc(68px + 2rem) 0 1.5rem; }
}

/* ================================================
   DESKTOP (>=1024px)
   ================================================ */
@media (min-width: 1024px) {
    .header-ic { height: 80px; }
    .logo-yatay { height: 34px; }
    .header-sag-mobil { display: none; }

    .ana-nav { display: flex; }

    .hero-konteyner { padding-top: 80px; }
    .hero-cerceve { inset: 2rem; }
    .hero-cerceve-kose { width: 60px; height: 60px; }
    .hero-logo { height: 76px; }
    .hero-logo-orta { gap: 2.5rem; padding: 1.25rem 0; }
    @keyframes cizgiAc { to { width: 100px; } }
    @keyframes dividerAc { to { width: 440px; } }
    .hero-aciklama { font-size: 1.125rem; max-width: 540px; margin-bottom: 2.75rem; }
    .hero-ozellikler { gap: 2rem; }
    .hero-ozellik { font-size: 0.8125rem; gap: 0.5rem; }
    .hero-alt { padding-bottom: 3rem; gap: 2rem; }
    .hero-ayirici { margin: 2rem auto 1.75rem; }
    .hero-ayirici::before, .hero-ayirici::after { width: 80px; }

    .kategori-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 1.25rem;
    }

    .kategori-kart { aspect-ratio: 3/4; }
    .kategori-kart.featured {
        grid-column: span 2;
        aspect-ratio: 16/10;
    }

    .kategori-kart-icerik { padding: 1.75rem; }

    .urun-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 1.5rem;
    }

    .kat-urun-grid {
        gap: 2.25rem;
    }

    .kat-urun-kart-icerik h3 {
        font-size: 1.5rem;
    }

    .urun-hero { padding: calc(80px + 2.5rem) 0 2rem; }

    .urun-detay { padding: 3.5rem 0 var(--section-py); }

    .urun-detay-ic {
        flex-direction: row;
        align-items: flex-start;
        gap: 4rem;
    }

    .urun-gorsel-alan {
        flex: 1;
        max-width: 50%;
        position: sticky;
        top: 100px;
    }

    .urun-bilgi {
        flex: 1;
        gap: 1.5rem;
        padding-top: 1rem;
    }

    .deger-grid { grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }

    .form-bolum { padding: 3rem; }

    .ref-grid { grid-template-columns: repeat(3, 1fr); }
    .ref-kart { padding: 1.75rem 2rem; gap: 1.25rem; }
    .ref-monogram { width: 44px; height: 44px; font-size: 1.25rem; }
    .ref-ad { font-size: 1.0625rem; }
    .ref-sayac-satir { gap: 5rem; }

    .sayfa-hero { padding: calc(80px + 5rem) 0 5rem; }
}

/* ================================================
   WIDE (>=1400px)
   ================================================ */
@media (min-width: 1400px) {
    .konteyner { max-width: 1400px; }
}

/* ================================================
   TEMA TOGGLE BUTONU
   ================================================ */
.tema-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: transparent;
    border: 1px solid var(--border-dark);
    cursor: pointer;
    transition: border-color 0.3s, background 0.3s;
    color: var(--text-body);
    padding: 0;
    flex-shrink: 0;
}

.tema-toggle:hover {
    border-color: var(--accent);
    background: var(--accent-glow);
    color: var(--accent);
}

.tema-toggle svg {
    width: 18px;
    height: 18px;
    transition: transform 0.3s, opacity 0.3s;
}

/* Açık temada güneş gizle, ay göster */
.tema-toggle .ikon-gunes { display: none; }
.tema-toggle .ikon-ay { display: block; }

/* Koyu temada ay gizle, güneş göster */
:root[data-theme="dark"] .tema-toggle .ikon-gunes { display: block; }
:root[data-theme="dark"] .tema-toggle .ikon-ay { display: none; }

/* Desktop: nav içinde */
.tema-toggle-desktop {
    margin-left: 0.5rem;
    margin-right: 0.5rem;
}

/* Mobil: header sağ tarafta */
.tema-toggle-mobil {
    width: 32px;
    height: 32px;
}

/* ================================================
   TEMA GEÇİŞ ANİMASYONU
   ================================================ */
body,
.site-header,
.urun-kart,
.kat-urun-kart,
.deger-kart,
.ref-kart,
.iletisim-kart,
.form-bolum,
.sepet-urun,
.mobil-nav,
.form-grup input,
.form-grup textarea,
.hero,
.intro,
.bolum-koyu,
.urun-hero,
.sayfa-hero,
.site-footer {
    transition: background-color 0.3s, color 0.3s, border-color 0.3s;
}

/* ================================================
   KOYU TEMA ÖZEL OVERRIDE'LAR
   ================================================ */
/* Koyu temada scrollbar */
:root[data-theme="dark"] ::-webkit-scrollbar-track {
    background: var(--bg-cream);
}
:root[data-theme="dark"] ::-webkit-scrollbar-thumb {
    background: var(--bg-cream-dark);
}

/* Koyu temada form hata */
:root[data-theme="dark"] .form-mesaj.hata {
    background: rgba(192,57,43,0.1);
    border-color: rgba(192,57,43,0.3);
    color: #e74c3c;
}

/* Koyu temada başarı mesajı */
:root[data-theme="dark"] .form-mesaj.basarili {
    background: rgba(201,169,110,0.1);
    border-color: var(--border-gold);
}

/* Koyu temada bolum-koyu butonlar (CTA) */
.bolum-koyu .btn-birincil {
    background: var(--section-dark-accent);
    color: var(--section-dark-btn-text);
}
.bolum-koyu .btn-birincil:hover {
    background: var(--section-dark-accent-hover);
}
.bolum-koyu .btn-ikincil {
    color: var(--section-dark-accent-light);
    border-color: var(--section-dark-border);
}
.bolum-koyu .btn-ikincil:hover {
    border-color: var(--section-dark-accent);
    background: var(--section-dark-glow);
}
