/* =========================================================
   Lueuré SKIN — Dermokozmetik
   Tasarım Sistemi / Design System
   ========================================================= */

:root {
  /* Renk paleti — ana sayfa görselinden türetildi */
  --cream-bg:      #F2ECE2;
  --cream-light:   #FAF7F1;
  --cream-soft:    #F6F1E9;
  --card-beige:    #EAE2D5;
  --card-beige-2:  #E3D9C9;
  --ink:           #2A2722;
  --ink-soft:      #5A5349;
  --muted:         #8C8174;
  --bronze:        #AC8B57;
  --bronze-deep:   #957741;
  --bronze-light:  #C9AE82;
  --line:          #DCD3C4;
  --line-soft:     #E7DFD2;
  --white:         #FFFFFF;
  --success:       #7A8B6F;

  --serif: "Cormorant Garamond", "Times New Roman", serif;
  --sans:  "Jost", "Segoe UI", system-ui, sans-serif;

  --wrap: 1320px;
  --radius: 4px;
  --shadow-sm: 0 6px 22px rgba(42, 39, 34, .06);
  --shadow-md: 0 18px 50px rgba(42, 39, 34, .10);
  --ease: cubic-bezier(.22,.61,.36,1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body {
  font-family: var(--sans);
  color: var(--ink);
  background: var(--cream-bg);
  font-size: 16px;
  line-height: 1.7;
  font-weight: 300;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

h1, h2, h3, h4 { font-family: var(--serif); font-weight: 500; line-height: 1.1; color: var(--ink); }

.wrap { max-width: var(--wrap); margin: 0 auto; padding: 0 40px; }
.eyebrow {
  font-size: 11.5px; letter-spacing: .32em; text-transform: uppercase;
  color: var(--bronze-deep); font-weight: 500;
}
.muted { color: var(--muted); }
.center { text-align: center; }

/* ---------- Topbar ---------- */
.topbar {
  background: var(--cream-light);
  border-bottom: 1px solid var(--line-soft);
  font-size: 11px; letter-spacing: .18em; text-transform: uppercase;
  color: var(--ink-soft);
}
.topbar .wrap { display: flex; justify-content: center; gap: 52px; padding: 11px 40px; }
.topbar .tb { display: flex; align-items: center; gap: 10px; }
.topbar svg { width: 17px; height: 17px; stroke: var(--bronze); fill: none; }
.topbar .tb span { font-weight: 400; }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(250,247,241,.86);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line-soft);
  transition: box-shadow .3s var(--ease);
}
.site-header.scrolled { box-shadow: var(--shadow-sm); }
.nav { display: flex; align-items: center; justify-content: space-between; padding: 20px 40px; max-width: var(--wrap); margin: 0 auto; gap: 24px; }

.brand { display: flex; flex-direction: column; align-items: flex-start; line-height: 1; }
.brand .mark { font-family: var(--serif); font-size: 30px; font-weight: 500; letter-spacing: .02em; color: var(--ink); }
.brand .sub { font-size: 8.5px; letter-spacing: .42em; text-transform: uppercase; color: var(--muted); margin-top: 4px; padding-left: 3px; }

.menu { display: flex; gap: 38px; }
.menu a {
  font-size: 12.5px; letter-spacing: .2em; text-transform: uppercase;
  color: var(--ink); font-weight: 400; position: relative; padding: 6px 0;
  transition: color .25s;
}
.menu a::after {
  content:""; position:absolute; left:0; bottom:0; height:1px; width:0;
  background: var(--bronze); transition: width .3s var(--ease);
}
.menu a:hover, .menu a.active { color: var(--bronze-deep); }
.menu a:hover::after, .menu a.active::after { width: 100%; }

.nav-actions { display: flex; gap: 22px; align-items: center; }
.nav-actions button, .nav-actions a.icon { display: grid; place-items: center; }
.nav-actions svg { width: 20px; height: 20px; stroke: var(--ink); fill: none; stroke-width: 1.4; transition: stroke .2s; }
.nav-actions svg:hover { stroke: var(--bronze-deep); }
.cart-ic { position: relative; }
.cart-ic .badge {
  position: absolute; top: -6px; right: -8px; background: var(--bronze);
  color: #fff; font-size: 9px; width: 15px; height: 15px; border-radius: 50%;
  display: grid; place-items: center; font-family: var(--sans);
}
.burger { display: none; flex-direction: column; gap: 5px; }
.burger span { width: 24px; height: 1.5px; background: var(--ink); transition: .3s; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 12px; letter-spacing: .18em; text-transform: uppercase;
  padding: 17px 34px; font-weight: 400; transition: all .3s var(--ease);
  border: 1px solid transparent; cursor: pointer;
}
.btn-dark { background: var(--ink); color: #fff; }
.btn-dark:hover { background: var(--bronze-deep); transform: translateY(-2px); }
.btn-ghost { background: transparent; color: var(--ink); border-color: var(--ink); }
.btn-ghost:hover { background: var(--ink); color: #fff; }
.btn-bronze { background: var(--bronze); color: #fff; }
.btn-bronze:hover { background: var(--bronze-deep); transform: translateY(-2px); }
.btn .arrow { transition: transform .3s var(--ease); }
.btn:hover .arrow { transform: translateX(4px); }

/* ---------- Hero ---------- */
.hero { background: linear-gradient(180deg, var(--cream-light) 0%, var(--cream-bg) 100%); position: relative; overflow: hidden; }
.hero-grid { display: grid; grid-template-columns: 1.05fr 1fr; gap: 40px; align-items: center; min-height: 560px; padding: 70px 0 90px; }
.hero-copy .eyebrow { margin-bottom: 26px; }
.hero-copy h1 { font-size: clamp(44px, 5.6vw, 76px); letter-spacing: .005em; margin-bottom: 26px; }
.hero-copy h1 em { font-style: italic; color: var(--bronze-deep); }
.hero-copy p.lead { font-size: 17px; color: var(--ink-soft); max-width: 440px; margin-bottom: 38px; font-weight: 300; }
.hero-cta { display: flex; gap: 16px; flex-wrap: wrap; }

.hero-visual { position: relative; display: grid; place-items: center; min-height: 480px; }
.podium {
  position: relative; width: 100%; max-width: 540px; aspect-ratio: 1/0.9;
  display: flex; align-items: flex-end; justify-content: center; gap: 18px;
}
.podium::after {
  content:""; position:absolute; bottom: 6%; left: 8%; right: 8%; height: 60px;
  background: radial-gradient(ellipse at center, rgba(150,130,95,.22), transparent 70%);
  filter: blur(8px); z-index:0;
}
/* CSS şişe görselleri */
.bottle { position: relative; z-index: 2; display: flex; flex-direction: column; align-items: center; filter: drop-shadow(0 22px 30px rgba(120,100,70,.18)); }
.bottle .body {
  width: 78px; background: linear-gradient(150deg, #FBF8F2 0%, #ECE3D4 60%, #E0D5C2 100%);
  border-radius: 14px 14px 10px 10px; position: relative; border: 1px solid rgba(255,255,255,.6);
}
.bottle.b1 .body { height: 220px; width: 84px; border-radius: 12px 12px 40px 40px; }
.bottle.b2 .body { height: 170px; width: 50px; border-radius: 8px; }
.bottle.b3 .body { height: 250px; width: 60px; border-radius: 8px 8px 6px 6px; }
.bottle.b4 .body { height: 130px; width: 110px; border-radius: 10px; }
.bottle .cap {
  width: 46px; height: 30px; background: linear-gradient(150deg, var(--bronze-light), var(--bronze-deep));
  border-radius: 6px 6px 3px 3px; margin-bottom: -6px; z-index: 3; box-shadow: 0 3px 8px rgba(120,90,50,.3);
}
.bottle.b2 .cap, .bottle.b4 .cap { width: 30px; }
.bottle .label { position: absolute; top: 38%; left: 50%; transform: translateX(-50%); text-align: center; width: 90%; }
.bottle .label .lg { font-family: var(--serif); font-size: 13px; color: var(--ink); }
.bottle .label .ls { font-size: 6px; letter-spacing: .18em; color: var(--muted); text-transform: uppercase; }
.stone {
  position: absolute; bottom: 0; left: 50%; transform: translateX(-50%);
  width: 92%; height: 56px; background: linear-gradient(180deg,#E8DECC,#D8CBB4);
  border-radius: 50%/60%; z-index: 1;
}
.hero-spark { position:absolute; top: 10%; right: 4%; width: 120px; opacity:.5; }

/* ---------- Hero Banner ---------- */
.hero-visual { position: relative; }
.hero-banner {
  position: relative; width: 100%; aspect-ratio: 4/4.1; border-radius: 6px;
  overflow: hidden; box-shadow: var(--shadow-md); background: linear-gradient(150deg,#EFE7DA 0%,#E3D7C2 55%,#D8C9AF 100%);
}
.hero-banner-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 2; }
.hero-banner-fallback {
  position: absolute; inset: 0; z-index: 1; display: flex; flex-direction: column;
  align-items: center; justify-content: center; text-align: center; padding: 40px;
}
.hero-banner-fallback::before {
  content:""; position:absolute; inset:0;
  background: radial-gradient(ellipse at 50% 38%, rgba(255,255,255,.55), transparent 60%);
}
.hero-banner-fallback > * { position: relative; }
.hb-eyebrow { font-size: 11px; letter-spacing: .34em; text-transform: uppercase; color: var(--bronze-deep); margin-bottom: 22px; }
.hb-mark { font-family: var(--serif); font-size: clamp(54px,7vw,92px); font-weight: 500; color: var(--ink); line-height: 1; }
.hb-line { width: 54px; height: 1px; background: var(--bronze); margin: 24px 0; }
.hb-sub { font-family: var(--serif); font-style: italic; font-size: 20px; color: var(--ink-soft); line-height: 1.5; }
@media (max-width: 1080px) { .hero-banner { aspect-ratio: 16/10; } }

/* ---------- Sayan istatistik ---------- */
.num [data-count], .stat .num span { font-variant-numeric: tabular-nums; }

/* ---------- Güven şeridi ---------- */
.trust-bar { background: var(--cream-light); border-top: 1px solid var(--line-soft); border-bottom: 1px solid var(--line-soft); }
.trust-bar .wrap { display: flex; justify-content: center; flex-wrap: wrap; gap: 14px 56px; padding: 20px 40px; }
.trust-bar .ti { display: flex; align-items: center; gap: 11px; font-size: 12.5px; letter-spacing: .04em; color: var(--ink-soft); }
.trust-bar .ti svg { width: 19px; height: 19px; stroke: var(--bronze); fill: none; stroke-width: 1.5; flex: 0 0 auto; }
.trust-bar .ti strong { color: var(--ink); font-weight: 500; }

/* ---------- Satış paketi (bundle) ---------- */
.bundle { background: linear-gradient(135deg, var(--ink) 0%, #38332b 100%); color: #fff; border-radius: var(--radius); overflow: hidden; }
.bundle-grid { display: grid; grid-template-columns: 1fr 1.1fr; align-items: center; gap: 20px; }
.bundle-visual { position: relative; min-height: 380px; display: grid; place-items: center; background: radial-gradient(ellipse at center, rgba(201,174,130,.18), transparent 65%); }
.bundle-visual .podium { max-width: 360px; }
.bundle-copy { padding: 64px 64px 64px 20px; }
.bundle-copy .eyebrow { color: var(--bronze-light); display: block; margin-bottom: 18px; }
.bundle-copy h2 { color: #fff; font-size: clamp(30px,3.6vw,46px); margin-bottom: 16px; }
.bundle-copy p { color: rgba(255,255,255,.7); margin-bottom: 26px; max-width: 440px; }
.bundle-list { margin: 0 0 28px; }
.bundle-list li { display: flex; align-items: center; gap: 12px; padding: 9px 0; border-bottom: 1px solid rgba(255,255,255,.1); font-size: 14.5px; color: rgba(255,255,255,.85); }
.bundle-list li svg { width: 18px; height: 18px; stroke: var(--bronze-light); fill: none; stroke-width: 1.5; flex: 0 0 auto; }
.bundle-price { display: flex; align-items: baseline; gap: 14px; margin-bottom: 8px; }
.bundle-price .now { font-family: var(--serif); font-size: 44px; color: #fff; }
.bundle-price .was { font-size: 20px; color: rgba(255,255,255,.45); text-decoration: line-through; }
.bundle-price .save { font-size: 11px; letter-spacing: .12em; text-transform: uppercase; background: var(--bronze); color: #fff; padding: 5px 11px; border-radius: 30px; }
.bundle-note { font-size: 12.5px; color: rgba(255,255,255,.55); margin-bottom: 26px; }
@media (max-width: 980px) {
  .bundle-grid { grid-template-columns: 1fr; }
  .bundle-copy { padding: 10px 30px 48px; }
  .bundle-visual { min-height: 300px; }
}

/* ---------- Yapışkan ürün satın alma çubuğu ---------- */
.sticky-buy {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 45;
  background: rgba(250,247,241,.94); backdrop-filter: blur(12px);
  border-top: 1px solid var(--line); box-shadow: 0 -8px 30px rgba(42,39,34,.08);
  transform: translateY(110%); transition: transform .4s var(--ease);
}
.sticky-buy.show { transform: none; }
.sticky-buy .wrap { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 14px 40px; }
.sticky-buy .sb-info { display: flex; align-items: center; gap: 16px; }
.sticky-buy .sb-thumb { width: 44px; height: 44px; border-radius: 4px; background: linear-gradient(160deg,var(--card-beige),var(--card-beige-2)); flex: 0 0 auto; }
.sticky-buy .sb-name { font-family: var(--serif); font-size: 19px; color: var(--ink); line-height: 1.1; }
.sticky-buy .sb-price { font-size: 13px; color: var(--muted); }
.sticky-buy .btn { padding: 13px 28px; }
@media (max-width: 720px) { .sticky-buy .sb-info .sb-name { font-size: 16px; } .sticky-buy .wrap { padding: 11px 20px; } .sticky-buy .sb-sub { display:none; } }

/* ---------- Feature bar ---------- */
.features {
  background: var(--cream-light); border: 1px solid var(--line-soft);
  border-radius: var(--radius); box-shadow: var(--shadow-sm);
  display: grid; grid-template-columns: repeat(4,1fr);
  margin-top: -46px; position: relative; z-index: 5;
}
.feature { padding: 34px 30px; display: flex; gap: 18px; align-items: flex-start; border-right: 1px solid var(--line-soft); }
.feature:last-child { border-right: none; }
.feature .ic { flex: 0 0 auto; width: 40px; height: 40px; }
.feature .ic svg { width: 40px; height: 40px; stroke: var(--bronze); fill: none; stroke-width: 1; }
.feature h4 { font-family: var(--sans); font-size: 12px; letter-spacing: .14em; text-transform: uppercase; font-weight: 500; margin-bottom: 7px; color: var(--ink); }
.feature p { font-size: 13px; color: var(--muted); line-height: 1.5; }

/* ---------- Sections ---------- */
section { position: relative; }
.section-pad { padding: 100px 0; }
.section-head { max-width: 660px; margin: 0 auto 56px; text-align: center; }
.section-head .eyebrow { display:block; margin-bottom: 18px; }
.section-head h2 { font-size: clamp(32px, 4vw, 52px); margin-bottom: 18px; }
.section-head p { color: var(--ink-soft); font-size: 16px; }

/* ---------- Stats ---------- */
.stats { background: var(--ink); color: #fff; }
.stats .eyebrow { color: var(--bronze-light); }
.stats h2 { color: #fff; }
.stats-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 30px; margin-top: 60px; }
.stat { text-align: center; padding: 0 24px; position: relative; }
.stat:not(:last-child)::after { content:""; position:absolute; right:0; top: 14%; height: 72%; width:1px; background: rgba(255,255,255,.12); }
.stat .num { font-family: var(--serif); font-size: 68px; font-weight: 500; color: var(--bronze-light); line-height: 1; }
.stat .num small { font-size: 30px; }
.stat .st-t { font-size: 13px; letter-spacing: .12em; text-transform: uppercase; margin: 16px 0 10px; color: #fff; font-weight: 400; }
.stat p { font-size: 14px; color: rgba(255,255,255,.6); line-height: 1.55; }

/* ---------- Product cards ---------- */
.prod-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 30px; }
.prod-card {
  background: var(--cream-light); border: 1px solid var(--line-soft); border-radius: var(--radius);
  overflow: hidden; transition: transform .4s var(--ease), box-shadow .4s var(--ease); display:flex; flex-direction: column;
}
.prod-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-md); }
.prod-media { aspect-ratio: 1/1; background: linear-gradient(160deg, var(--card-beige) 0%, var(--card-beige-2) 100%); display:grid; place-items:center; position:relative; }
.prod-media .tag { position:absolute; top: 18px; left: 18px; font-size: 10px; letter-spacing:.16em; text-transform:uppercase; background:#fff; color:var(--bronze-deep); padding: 6px 12px; border-radius: 2px; }
.prod-body { padding: 28px 28px 30px; flex:1; display:flex; flex-direction: column; }
.prod-body .cat { font-size: 10.5px; letter-spacing: .2em; text-transform: uppercase; color: var(--bronze-deep); margin-bottom: 12px; }
.prod-body h3 { font-size: 25px; margin-bottom: 12px; }
.prod-body p { font-size: 14px; color: var(--ink-soft); margin-bottom: 22px; flex:1; }
.prod-foot { display:flex; align-items:center; justify-content: space-between; }
.prod-foot .price { font-family: var(--serif); font-size: 24px; color: var(--ink); }
.prod-link { font-size: 12px; letter-spacing:.16em; text-transform: uppercase; color: var(--ink); display:flex; gap:8px; align-items:center; border-bottom:1px solid var(--bronze); padding-bottom:4px; transition:.25s; }
.prod-link:hover { color: var(--bronze-deep); gap: 12px; }

/* product bottle inside card */
.pbottle { display:flex; flex-direction:column; align-items:center; filter: drop-shadow(0 18px 24px rgba(120,100,70,.2)); }
.pbottle .cap { width: 52px; height: 34px; background: linear-gradient(150deg,var(--bronze-light),var(--bronze-deep)); border-radius: 6px 6px 3px 3px; margin-bottom:-8px; z-index:2; box-shadow:0 3px 8px rgba(120,90,50,.3); }
.pbottle .body { width: 110px; height: 200px; background: linear-gradient(150deg,#FBF8F2,#ECE3D4 65%,#E0D5C2); border-radius: 14px; display:grid; place-items:center; border:1px solid rgba(255,255,255,.6); }
.pbottle.tube .body { width: 80px; height: 230px; border-radius: 10px 10px 34px 34px; }
.pbottle.jar .body { width: 150px; height: 120px; border-radius: 12px; }
.pbottle .body .l1 { font-family: var(--serif); font-size: 17px; }
.pbottle .body .l2 { font-size: 7px; letter-spacing:.2em; text-transform:uppercase; color:var(--muted); margin-top:3px; text-align:center;}

/* ---------- Split / promo ---------- */
.promo-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 30px; }
.promo-card { background: var(--cream-soft); border:1px solid var(--line-soft); border-radius: var(--radius); padding: 44px 36px; transition:.4s var(--ease); }
.promo-card:hover { background: var(--cream-light); box-shadow: var(--shadow-md); transform: translateY(-6px); }
.promo-card .eyebrow { display:block; margin-bottom: 22px; }
.promo-card h3 { font-size: 28px; margin-bottom: 16px; }
.promo-card p { font-size: 14.5px; color: var(--ink-soft); margin-bottom: 26px; }
.text-link { font-size: 12px; letter-spacing:.16em; text-transform:uppercase; display:inline-flex; gap:10px; align-items:center; border-bottom:1px solid var(--bronze); padding-bottom:4px; transition:.25s; }
.text-link:hover { gap: 14px; color: var(--bronze-deep); }

/* ---------- Split feature ---------- */
.split { display:grid; grid-template-columns: 1fr 1fr; gap: 70px; align-items:center; }
.split.rev .split-media { order: 2; }
.split-media { aspect-ratio: 4/3.4; border-radius: var(--radius); background: linear-gradient(160deg,var(--card-beige),var(--card-beige-2)); position:relative; overflow:hidden; display:grid; place-items:center; }
.split-copy .eyebrow { display:block; margin-bottom:18px; }
.split-copy h2 { font-size: clamp(30px,3.6vw,46px); margin-bottom: 22px; }
.split-copy p { color: var(--ink-soft); margin-bottom: 18px; }
.split-list { margin: 26px 0 32px; }
.split-list li { display:flex; gap:14px; align-items:flex-start; padding: 11px 0; border-bottom:1px solid var(--line-soft); font-size: 14.5px; color: var(--ink-soft); }
.split-list li svg { flex:0 0 auto; width:20px; height:20px; stroke: var(--bronze); fill:none; stroke-width:1.4; margin-top:2px; }
.split-list li strong { color: var(--ink); font-weight: 500; }

/* ---------- Ingredient chips ---------- */
.chips { display:flex; flex-wrap:wrap; gap: 10px; margin: 8px 0 0; }
.chip { font-size: 12px; letter-spacing:.04em; padding: 8px 16px; border:1px solid var(--line); border-radius: 30px; color: var(--ink-soft); background: var(--cream-light); }

/* ---------- Steps / routine ---------- */
.steps { display:grid; grid-template-columns: repeat(3,1fr); gap: 30px; counter-reset: s; }
.step { background: var(--cream-light); border:1px solid var(--line-soft); border-radius: var(--radius); padding: 40px 32px; position:relative; }
.step::before { counter-increment:s; content: "0" counter(s); font-family: var(--serif); font-size: 46px; color: var(--bronze-light); display:block; margin-bottom: 16px; }
.step h4 { font-size: 21px; margin-bottom: 12px; }
.step p { font-size: 14px; color: var(--ink-soft); }

/* ---------- Press ---------- */
.press { background: var(--cream-light); border-top:1px solid var(--line-soft); border-bottom:1px solid var(--line-soft); }
.press .wrap { padding: 46px 40px; }
.press .pl { text-align:center; font-size:11px; letter-spacing:.3em; text-transform:uppercase; color:var(--muted); margin-bottom: 30px; }
.press-logos { display:flex; flex-wrap:wrap; justify-content:center; align-items:center; gap: 56px; }
.press-logos span { font-family: var(--serif); font-size: 24px; color: var(--muted); letter-spacing: .04em; opacity:.7; transition:.3s; }
.press-logos span:hover { opacity:1; color: var(--ink); }

/* ---------- Quote / testimonial ---------- */
.quotes { background: var(--cream-soft); }
.quote-grid { display:grid; grid-template-columns: repeat(3,1fr); gap: 30px; }
.quote { background:#fff; border:1px solid var(--line-soft); border-radius: var(--radius); padding: 36px 32px; }
.quote .stars { color: var(--bronze); letter-spacing: 3px; margin-bottom: 18px; font-size: 14px; }
.quote p { font-family: var(--serif); font-size: 20px; line-height: 1.5; color: var(--ink); margin-bottom: 22px; font-style: italic; }
.quote .who { font-size: 12px; letter-spacing:.1em; text-transform:uppercase; color: var(--muted); }

/* ---------- CTA band ---------- */
.cta-band { background: linear-gradient(135deg, var(--ink) 0%, #3a352d 100%); color:#fff; text-align:center; }
.cta-band h2 { color:#fff; font-size: clamp(32px,4vw,50px); margin-bottom: 20px; }
.cta-band p { color: rgba(255,255,255,.7); max-width: 540px; margin: 0 auto 36px; }

/* ---------- Page hero (inner) ---------- */
.page-hero { background: linear-gradient(180deg,var(--cream-light),var(--cream-bg)); padding: 64px 0 56px; text-align:center; border-bottom:1px solid var(--line-soft); }
.breadcrumb { font-size: 11px; letter-spacing:.16em; text-transform:uppercase; color: var(--muted); margin-bottom: 22px; }
.breadcrumb a:hover { color: var(--bronze-deep); }
.breadcrumb span { color: var(--bronze-deep); }
.page-hero h1 { font-size: clamp(38px,5vw,64px); margin-bottom: 18px; }
.page-hero p { color: var(--ink-soft); max-width: 600px; margin: 0 auto; font-size: 16px; }

/* ---------- Product detail ---------- */
.pd-grid { display:grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items:flex-start; }
.pd-media { position: sticky; top: 110px; aspect-ratio: 1/1.05; border-radius: var(--radius); background: linear-gradient(160deg,var(--card-beige),var(--card-beige-2)); display:grid; place-items:center; }
.pd-info .cat { color: var(--bronze-deep); letter-spacing:.2em; text-transform:uppercase; font-size:11px; margin-bottom: 16px; }
.pd-info h1 { font-size: clamp(34px,4vw,48px); margin-bottom: 18px; }
.pd-info .pd-price { font-family: var(--serif); font-size: 32px; color: var(--ink); margin: 6px 0 24px; }
.pd-info .pd-tagline { font-family: var(--serif); font-style: italic; font-size: 22px; color: var(--bronze-deep); margin: 4px 0 16px; line-height: 1.3; }
.pd-info .pd-desc { color: var(--ink-soft); margin-bottom: 28px; }
.pd-rating { display:flex; gap:10px; align-items:center; margin-bottom: 24px; font-size: 13px; color: var(--muted); }
.pd-rating .stars { color: var(--bronze); letter-spacing:2px; }
.pd-buy { display:flex; gap: 14px; margin: 30px 0 36px; flex-wrap:wrap; }
.pd-meta { border-top:1px solid var(--line-soft); padding-top: 26px; }
.pd-meta dl { display:grid; grid-template-columns: 150px 1fr; gap: 12px 20px; font-size: 14px; }
.pd-meta dt { color: var(--muted); letter-spacing:.04em; }
.pd-meta dd { color: var(--ink); }

.acc { border-top:1px solid var(--line-soft); }
.acc-item { border-bottom:1px solid var(--line-soft); }
.acc-q { width:100%; display:flex; justify-content:space-between; align-items:center; padding: 20px 0; font-size: 15px; letter-spacing:.04em; color: var(--ink); text-align:left; }
.acc-q .pm { color: var(--bronze); font-size: 22px; transition: transform .3s; }
.acc-item.open .pm { transform: rotate(45deg); }
.acc-a { max-height:0; overflow:hidden; transition: max-height .4s var(--ease); }
.acc-a p { padding: 0 0 22px; color: var(--ink-soft); font-size: 14.5px; }

/* ---------- Blog ---------- */
.blog-grid { display:grid; grid-template-columns: repeat(3,1fr); gap: 34px; }
.blog-card { background: var(--cream-light); border:1px solid var(--line-soft); border-radius: var(--radius); overflow:hidden; transition:.4s var(--ease); display:flex; flex-direction:column; }
.blog-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.blog-media { aspect-ratio: 16/10; background: linear-gradient(160deg,var(--card-beige),var(--card-beige-2)); position:relative; }
.blog-media .bc { position:absolute; bottom:14px; left:14px; background:#fff; color:var(--bronze-deep); font-size:10px; letter-spacing:.14em; text-transform:uppercase; padding:6px 12px; }
.blog-body { padding: 26px 26px 30px; flex:1; display:flex; flex-direction:column; }
.blog-body .date { font-size: 11.5px; letter-spacing:.1em; text-transform:uppercase; color: var(--muted); margin-bottom: 12px; }
.blog-body h3 { font-size: 22px; margin-bottom: 12px; line-height:1.25; }
.blog-body p { font-size: 14px; color: var(--ink-soft); margin-bottom: 20px; flex:1; }

/* ---------- Article ---------- */
.article { max-width: 760px; margin: 0 auto; }
.article p { color: var(--ink-soft); margin-bottom: 22px; font-size: 16.5px; line-height: 1.8; }
.article h2 { font-size: 32px; margin: 44px 0 18px; }
.article h3 { font-size: 24px; margin: 32px 0 14px; }
.article ul.bul { margin: 0 0 22px 4px; }
.article ul.bul li { position:relative; padding-left: 24px; margin-bottom: 12px; color: var(--ink-soft); }
.article ul.bul li::before { content:""; position:absolute; left:0; top:11px; width:8px; height:8px; border-radius:50%; background: var(--bronze); }
.article blockquote { border-left: 3px solid var(--bronze); padding: 8px 0 8px 28px; margin: 30px 0; font-family: var(--serif); font-style: italic; font-size: 23px; color: var(--ink); }
.article figure { margin: 30px 0; }
.article .article-img { aspect-ratio: 16/9; border-radius: var(--radius); background: linear-gradient(160deg,var(--card-beige),var(--card-beige-2)); }

/* ---------- Forms ---------- */
.form-card { background: var(--cream-light); border:1px solid var(--line-soft); border-radius: var(--radius); padding: 44px; }
.field { margin-bottom: 22px; }
.field label { display:block; font-size: 12px; letter-spacing:.1em; text-transform:uppercase; color: var(--ink-soft); margin-bottom: 9px; }
.field input, .field textarea, .field select {
  width:100%; padding: 14px 16px; border:1px solid var(--line); background:#fff;
  font-family: var(--sans); font-size: 15px; color: var(--ink); border-radius: 2px; transition: border-color .25s;
}
.field input:focus, .field textarea:focus, .field select:focus { outline:none; border-color: var(--bronze); }
.field textarea { min-height: 130px; resize: vertical; }
.row2 { display:grid; grid-template-columns:1fr 1fr; gap: 22px; }

/* ---------- Quiz (skin analysis) ---------- */
.quiz { max-width: 680px; margin: 0 auto; background: var(--cream-light); border:1px solid var(--line-soft); border-radius: var(--radius); padding: 48px; }
.quiz-step { display:none; } .quiz-step.active { display:block; animation: fade .4s var(--ease); }
.quiz-q { font-size: 26px; font-family: var(--serif); margin-bottom: 8px; }
.quiz-sub { color: var(--muted); font-size: 14px; margin-bottom: 28px; }
.opts { display:grid; gap: 12px; }
.opt { border:1px solid var(--line); background:#fff; padding: 18px 20px; border-radius: 3px; text-align:left; font-size: 15px; transition:.2s; display:flex; justify-content:space-between; align-items:center; }
.opt:hover { border-color: var(--bronze); background: var(--cream-soft); }
.opt.sel { border-color: var(--bronze); background: var(--cream-soft); }
.opt .rb { width:18px; height:18px; border-radius:50%; border:1.5px solid var(--line); }
.opt.sel .rb { border-color: var(--bronze); background: var(--bronze); box-shadow: inset 0 0 0 3px #fff; }
.quiz-bar { height: 3px; background: var(--line-soft); border-radius:3px; margin-bottom: 36px; overflow:hidden; }
.quiz-bar i { display:block; height:100%; background: var(--bronze); width: 20%; transition: width .4s var(--ease); }
.quiz-nav { display:flex; justify-content: space-between; margin-top: 30px; }
.quiz-result { text-align:center; display:none; }
.quiz-result.show { display:block; animation: fade .4s var(--ease); }
.score-ring { width: 150px; height: 150px; margin: 0 auto 24px; border-radius:50%; display:grid; place-items:center; background: conic-gradient(var(--bronze) var(--p,85%), var(--line-soft) 0); position:relative; }
.score-ring::before { content:""; position:absolute; inset:12px; background: var(--cream-light); border-radius:50%; }
.score-ring span { position:relative; font-family: var(--serif); font-size: 44px; color: var(--ink); }

@keyframes fade { from { opacity:0; transform: translateY(10px);} to {opacity:1; transform:none;} }

/* ---------- Newsletter ---------- */
.news { display:flex; gap: 12px; max-width: 440px; }
.news input { flex:1; padding: 15px 18px; border:1px solid rgba(255,255,255,.25); background: rgba(255,255,255,.06); color:#fff; font-family: var(--sans); }
.news input::placeholder { color: rgba(255,255,255,.5); }

/* ---------- Footer ---------- */
.site-footer { background: var(--ink); color: rgba(255,255,255,.66); padding: 76px 0 0; }
.foot-grid { display:grid; grid-template-columns: 1.6fr 1fr 1fr 1.4fr; gap: 44px; padding-bottom: 56px; }
.foot-brand .mark { font-family: var(--serif); font-size: 30px; color:#fff; }
.foot-brand .sub { font-size: 8.5px; letter-spacing:.42em; text-transform:uppercase; color: var(--bronze-light); margin: 4px 0 20px; }
.foot-brand p { font-size: 14px; line-height:1.7; max-width: 300px; }
.foot-col h5 { font-family: var(--sans); font-size: 12px; letter-spacing:.16em; text-transform:uppercase; color:#fff; margin-bottom: 20px; font-weight:500; }
.foot-col a { display:block; font-size: 14px; padding: 7px 0; transition: color .2s, padding .2s; }
.foot-col a:hover { color: var(--bronze-light); padding-left: 4px; }
.foot-news h5 { font-family: var(--sans); font-size: 12px; letter-spacing:.16em; text-transform:uppercase; color:#fff; margin-bottom: 14px; font-weight:500; }
.foot-news p { font-size: 13.5px; margin-bottom: 18px; }
.foot-social { display:flex; gap: 16px; margin-top: 24px; }
.foot-social a { width: 38px; height: 38px; border:1px solid rgba(255,255,255,.18); border-radius:50%; display:grid; place-items:center; transition:.25s; }
.foot-social a:hover { background: var(--bronze); border-color: var(--bronze); }
.foot-social svg { width:17px; height:17px; stroke:#fff; fill:none; stroke-width:1.5; }
.foot-bottom { border-top:1px solid rgba(255,255,255,.1); padding: 26px 0; display:flex; justify-content:space-between; flex-wrap:wrap; gap:14px; font-size: 12.5px; letter-spacing:.04em; }
.foot-bottom a:hover { color: var(--bronze-light); }

/* ---------- Reveal animation (progressive enhancement) ----------
   Varsayılan: görünür. JS yoksa içerik her zaman görünür kalır.
   JS, ekran dışı öğelere .pre ekleyip görünürken .in ile açar. */
.reveal { transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.pre { opacity:0; transform: translateY(28px); }
.reveal.in { opacity:1; transform:none; }

/* ---------- Responsive ---------- */
@media (max-width: 1080px) {
  .hero-grid { grid-template-columns: 1fr; gap: 30px; min-height:auto; }
  .hero-visual { min-height: 420px; }
  .features { grid-template-columns: repeat(2,1fr); margin-top: -30px; }
  .feature:nth-child(2) { border-right:none; }
  .feature:nth-child(1),.feature:nth-child(2) { border-bottom:1px solid var(--line-soft); }
  .pd-grid, .split { grid-template-columns: 1fr; gap: 40px; }
  .pd-media { position: static; }
  .split.rev .split-media { order: 0; }
  .foot-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 860px) {
  .wrap { padding: 0 22px; }
  .topbar { display:none; }
  .menu, .nav-actions .desk { display:none; }
  .burger { display:flex; }
  .menu { position: fixed; inset: 0 0 0 auto; width: 80%; max-width: 340px; background: var(--cream-light); flex-direction:column; padding: 90px 34px; gap: 6px; transform: translateX(100%); transition: transform .4s var(--ease); z-index: 60; box-shadow: var(--shadow-md); }
  .menu.open { transform:none; }
  .menu a { font-size: 15px; padding: 14px 0; border-bottom:1px solid var(--line-soft); }
  .stats-grid, .prod-grid, .promo-grid, .steps, .quote-grid, .blog-grid { grid-template-columns: 1fr; }
  .stat:not(:last-child)::after { display:none; }
  .row2 { grid-template-columns: 1fr; }
  .section-pad { padding: 64px 0; }
  .foot-grid { grid-template-columns: 1fr; gap: 32px; }
  .nav-overlay { position:fixed; inset:0; background: rgba(42,39,34,.4); z-index:55; opacity:0; visibility:hidden; transition:.3s; }
  .nav-overlay.show { opacity:1; visibility:visible; }
}
@media (max-width: 560px) {
  .hero-copy h1 { font-size: 40px; }
  .hero-cta { flex-direction: column; }
  .hero-cta .btn { justify-content:center; }
  .quiz, .form-card { padding: 28px 22px; }
}

/* =========================================================
   GERÇEK ÜRÜN GÖRSELLERİ
   ========================================================= */
/* Editoryal yaşam tarzı fotoğrafları — kartı/medyayı tamamen kaplar */
.prod-img, .pd-img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transition: transform .6s var(--ease);
}
.prod-media, .pd-media { overflow: hidden; }
.prod-card:hover .prod-img { transform: scale(1.05); }
.bundle-photo { width:100%; height:100%; object-fit:cover; display:block; }
.bundle-visual { overflow:hidden; min-height:380px; }

/* =========================================================
   TAM GENİŞLİK HERO BANNER
   ========================================================= */
.sr-only {
  position:absolute !important; width:1px; height:1px; padding:0; margin:-1px;
  overflow:hidden; clip:rect(0,0,0,0); white-space:nowrap; border:0;
}
.hero-banner-full { background: var(--cream-light); }
.hbf-wrap {
  width: 100%; max-width: 2172px; margin: 0 auto; position: relative;
  line-height: 0; overflow: hidden;
  aspect-ratio: 2172 / 724;   /* görsel oranına birebir (3:1) — kırpma yok */
  max-height: 660px;
}
.hbf-img {
  width: 100%; height: 100%; display: block;
  object-fit: cover; object-position: center;
}
.hbf-cta {
  display: flex; gap: 16px; justify-content: center; align-items: center;
  padding: 30px 24px 76px; background: var(--cream-light);
}
/* Mobilde tam görsel göster (yana kırpma metni keser) */
@media (max-width: 760px) {
  .hbf-wrap { aspect-ratio: auto; max-height: none; }
  .hbf-img { height: auto; object-fit: contain; }
}
@media (max-width: 560px) {
  .hbf-cta { flex-direction: column; padding: 24px 24px 60px; }
  .hbf-cta .btn { width: 100%; max-width: 320px; justify-content: center; }
}

/* =========================================================
   PROFESYONEL İNCE AYAR KATMANI / Designer Polish Layer
   ========================================================= */

/* 1 — Editoryal kâğıt dokusu (grain) */
body::after {
  content:""; position:fixed; inset:0; z-index:9998; pointer-events:none;
  opacity:.04; mix-blend-mode:multiply;
  background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* 2 — Tipografi inceltme */
h1, h2, h3 { letter-spacing: -.012em; }
.hero-copy h1 { letter-spacing: -.02em; }
.eyebrow { font-weight: 500; }
body { font-size: 16.5px; letter-spacing: .002em; }
.lead, .section-head p, .split-copy p { font-weight: 300; }

/* 3 — Header: biraz daha hava + ince marka kademesi */
.brand .mark { letter-spacing: .015em; }
.menu a { font-size: 12px; letter-spacing: .22em; }
.site-header { border-bottom-color: rgba(220,211,196,.7); }

/* 4 — Butonlar: rafine oran + yumuşak gölge */
.btn { border-radius: 1px; padding: 16px 32px; font-size: 11.5px; letter-spacing: .2em; }
.btn-dark, .btn-bronze { box-shadow: 0 10px 26px rgba(42,39,34,.14); }
.btn-dark:hover, .btn-bronze:hover { box-shadow: 0 16px 34px rgba(149,119,65,.26); }

/* 5 — Kartlar: daha yumuşak köşe + ince çerçeve + zarif yükseliş */
.prod-card, .promo-card, .blog-card, .quote, .step, .features, .form-card, .bundle, .pd-media, .split-media { border-radius: 6px; }
.prod-card, .blog-card { border-color: rgba(220,211,196,.8); }
.prod-card:hover, .blog-card:hover, .promo-card:hover { box-shadow: 0 26px 60px rgba(80,64,40,.13); }

/* 6 — Hero Banner: editoryal kompozisyon */
.hero-banner {
  background: linear-gradient(157deg, #F2EADD 0%, #E8DBC7 46%, #DBC8AC 100%);
  box-shadow: 0 34px 80px rgba(120,98,64,.20), inset 0 1px 0 rgba(255,255,255,.55);
}
.hero-banner::before {
  content:""; position:absolute; inset:0; z-index:1; pointer-events:none;
  background: radial-gradient(115% 78% at 50% 30%, rgba(255,255,255,.42) 0%, transparent 42%),
              radial-gradient(120% 90% at 50% 115%, rgba(95,73,42,.16), transparent 60%);
}
.hero-banner-fallback::after {
  content:""; position:absolute; inset:20px; border:1px solid rgba(150,123,80,.35);
  border-radius:3px; pointer-events:none;
}
.hb-eyebrow { font-size:10.5px; letter-spacing:.4em; }
.hb-mark { letter-spacing:.01em; text-shadow:0 1px 0 rgba(255,255,255,.45); position:relative; }
.hb-mark::after {
  content:"D E R M O C O S M E T I C S"; display:block; margin-top:10px;
  font-family:var(--sans); font-size:9px; letter-spacing:.42em; color:var(--muted); font-weight:400;
}
.hb-line { background: linear-gradient(90deg, transparent, var(--bronze), transparent); width:70px; }
.hb-sub { font-size:19px; }

/* 7 — Premium şişe render: cam/seramik parlaklığı + metalik kapak */
.pbottle .body, .bottle .body {
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.5),
              inset -9px -12px 26px rgba(150,128,95,.20),
              inset 9px 9px 20px rgba(255,255,255,.55);
  position: relative; overflow: hidden;
}
.pbottle .body::before, .bottle .body::before {
  content:""; position:absolute; top:6%; left:14%; width:22%; height:70%;
  background: linear-gradient(180deg, rgba(255,255,255,.6), rgba(255,255,255,0));
  border-radius:50%; filter: blur(3px); transform: rotate(8deg); pointer-events:none;
}
.pbottle .cap, .bottle .cap {
  background: linear-gradient(115deg, #E4CC9E 0%, var(--bronze) 38%, var(--bronze-deep) 70%, #7d6336 100%);
  box-shadow: 0 4px 10px rgba(120,90,50,.34), inset 0 2px 2px rgba(255,255,255,.5);
  position: relative; overflow: hidden;
}
.pbottle .cap::after, .bottle .cap::after {
  content:""; position:absolute; top:0; left:18%; width:14%; height:100%;
  background: rgba(255,255,255,.4); filter: blur(1.5px);
}
.pbottle { filter: drop-shadow(0 22px 30px rgba(120,100,70,.26)); }
.prod-media, .pd-media, .bundle-visual, .split-media {
  background: radial-gradient(120% 100% at 50% 25%, #EFE7D9 0%, var(--card-beige) 55%, var(--card-beige-2) 100%);
}

/* 8 — Bölüm başlıkları & eyebrow ince çizgi süsü */
.section-head .eyebrow { position: relative; display: inline-block; padding-bottom: 4px; }
.section-head .eyebrow::after {
  content:""; position:absolute; left:50%; bottom:-2px; transform:translateX(-50%);
  width:26px; height:1px; background: var(--bronze);
}

/* 9 — Topbar: daha ince, daha lüks */
.topbar { font-size: 10.5px; letter-spacing: .2em; }
.topbar .wrap { padding: 12px 40px; }

/* 10 — Bağlantı & alt çizgi mikro-etkileşim incelmesi */
.text-link, .prod-link { letter-spacing: .18em; font-size: 11.5px; }
.foot-col a { font-size: 13.5px; }

/* 11 — Seçim rengi */
::selection { background: var(--bronze-light); color: var(--ink); }

/* 12 — Görseller yüklenince daha yumuşak geçiş */
img { background: transparent; }

@media (max-width: 560px) {
  .hb-mark::after { font-size: 8px; letter-spacing: .35em; }
  body::after { opacity: .03; }
}
