:root {
  --bg: #fbf7f3;
  --cream: #f4ebe1;
  --ink: #2a201c;
  --ink-soft: #5a4a42;
  --muted: #8a786e;
  --rose: #b9456b;
  --rose-deep: #8f2f51;
  --gold: #b08a4b;
  --line: #e8ddd1;
  --white: #ffffff;
  --shadow: 0 8px 30px rgba(60, 30, 20, 0.08);
  --shadow-lg: 0 20px 60px rgba(60, 30, 20, 0.15);
  --radius: 14px;
  --radius-lg: 22px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  font-size: 18px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: -0.01em;
  margin: 0 0 0.5em;
}
h1 { font-size: clamp(2.4rem, 6vw, 4rem); line-height: 1.05; }
h2 { font-size: clamp(2rem, 4vw, 2.8rem); line-height: 1.15; }
h3 { font-size: 1.4rem; }

p { margin: 0 0 1em; }
a { color: var(--rose-deep); text-decoration: none; }
a:hover { text-decoration: underline; }

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

/* ---- Topbar ---- */
.topbar {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(251, 247, 243, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 20px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--ink);
}
.brand-mark {
  font-size: 32px;
  color: var(--rose);
}
.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.brand-name {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 700;
  font-size: 28px;
  color: var(--ink);
}
.brand-sub {
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 2px;
}
.nav {
  display: flex;
  gap: 28px;
}
.nav a {
  color: var(--ink-soft);
  font-weight: 500;
  font-size: 17px;
  text-decoration: none;
  padding: 8px 4px;
}
.nav a:hover { color: var(--rose-deep); }

.cart-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--ink);
  color: var(--white);
  border: none;
  border-radius: 999px;
  padding: 12px 20px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  font-family: inherit;
  transition: background 0.2s;
}
.cart-btn:hover { background: var(--rose-deep); }
.cart-count {
  background: var(--rose);
  color: var(--white);
  border-radius: 999px;
  min-width: 24px;
  height: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  padding: 0 7px;
}

/* ---- Hero ---- */
.hero {
  padding: 70px 0 90px;
  background:
    radial-gradient(ellipse at top right, #f9e0d2 0%, transparent 55%),
    radial-gradient(ellipse at bottom left, #f1dfe6 0%, transparent 55%),
    var(--bg);
}
.hero-inner {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 60px;
  align-items: center;
}
.eyebrow {
  color: var(--rose-deep);
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-size: 13px;
  margin-bottom: 18px;
}
.lead {
  font-size: 20px;
  color: var(--ink-soft);
  max-width: 540px;
  margin: 18px 0 30px;
}
.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}
.trust {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  color: var(--ink-soft);
  font-size: 16px;
  font-weight: 500;
}
.trust li::before { color: var(--rose); }

.hero-image {
  position: relative;
  aspect-ratio: 1 / 1.05;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  background: var(--cream);
}
.hero-photo {
  position: absolute;
  inset: 0;
  background-image: url('https://images.unsplash.com/photo-1561181286-d3fee7d55364?auto=format&fit=crop&w=1200&q=80');
  background-size: cover;
  background-position: center;
}

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 999px;
  padding: 16px 30px;
  font-size: 17px;
  font-weight: 600;
  font-family: inherit;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.15s, box-shadow 0.2s, background 0.2s;
  line-height: 1.2;
}
.btn:hover { transform: translateY(-2px); text-decoration: none; }
.btn-primary {
  background: var(--rose-deep);
  color: var(--white);
  box-shadow: 0 6px 20px rgba(143, 47, 81, 0.3);
}
.btn-primary:hover { background: #7a2545; box-shadow: 0 10px 28px rgba(143, 47, 81, 0.4); }
.btn-primary:disabled {
  background: var(--muted);
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
  opacity: 0.6;
}
.btn-ghost {
  background: var(--white);
  color: var(--ink);
  border: 1.5px solid var(--line);
}
.btn-ghost:hover { border-color: var(--ink); background: var(--cream); }
.btn-block { display: flex; width: 100%; }
.btn-lg { padding: 18px 30px; font-size: 18px; }

/* ---- Sections ---- */
section { padding: 80px 0; }
.section-head {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 50px;
}
.section-head p { color: var(--ink-soft); font-size: 18px; }

/* ---- Products ---- */
.products { background: var(--white); }
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 28px;
}
.card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.2s, box-shadow 0.2s;
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.card-photo {
  aspect-ratio: 4 / 3;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  background-color: #fff;
}
.card-body {
  padding: 22px 22px 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.card h3 {
  margin: 0 0 8px;
  font-size: 1.5rem;
}
.card p {
  color: var(--ink-soft);
  font-size: 15.5px;
  margin: 0 0 18px;
  flex: 1;
}
.card-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}
.price {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 700;
  font-size: 1.7rem;
  color: var(--rose-deep);
}
.add-btn {
  background: var(--ink);
  color: var(--white);
  border: none;
  border-radius: 999px;
  padding: 12px 22px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  font-family: inherit;
  transition: background 0.2s;
}
.add-btn:hover { background: var(--rose-deep); }
.add-btn.added { background: var(--gold); }

/* ---- How ---- */
.how { background: var(--cream); }
.steps {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  counter-reset: step;
}
.steps li {
  background: var(--white);
  padding: 36px 28px;
  border-radius: var(--radius-lg);
  text-align: center;
  box-shadow: var(--shadow);
}
.step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--rose-deep);
  color: var(--white);
  font-family: 'Cormorant Garamond', serif;
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 18px;
}
.steps h3 { margin-bottom: 8px; }
.steps p { color: var(--ink-soft); margin: 0; }

/* ---- Contact ---- */
.contact { background: var(--white); }
.contact-inner {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 50px;
  align-items: start;
}
.contact-list {
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 18px;
}
.contact-list li {
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
  color: var(--ink-soft);
}
.contact-list strong { color: var(--ink); margin-right: 10px; }
.contact-card {
  background: var(--cream);
  border-radius: var(--radius-lg);
  padding: 36px;
  text-align: center;
}

/* ---- Footer ---- */
.footer {
  background: var(--ink);
  color: #d8c8be;
  padding: 30px 0;
  text-align: center;
}
.footer p { margin: 4px 0; font-size: 15px; }
.footer .small { color: var(--muted); font-size: 13px; }

/* ---- Drawer (cart) ---- */
.drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: 420px;
  max-width: 100%;
  height: 100%;
  background: var(--white);
  z-index: 100;
  box-shadow: var(--shadow-lg);
  transform: translateX(100%);
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
}
.drawer.open { transform: translateX(0); }
.drawer-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 24px;
  border-bottom: 1px solid var(--line);
}
.drawer-head h2 { margin: 0; font-size: 1.7rem; }
.drawer-body { flex: 1; overflow-y: auto; padding: 20px 24px; }
.drawer-foot {
  padding: 20px 24px 26px;
  border-top: 1px solid var(--line);
  background: var(--bg);
}
.icon-btn {
  background: transparent;
  border: none;
  font-size: 22px;
  cursor: pointer;
  padding: 6px 10px;
  border-radius: 8px;
  color: var(--ink-soft);
}
.icon-btn:hover { background: var(--cream); }

.cart-item {
  display: flex;
  gap: 14px;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
  align-items: center;
}
.cart-item-photo {
  width: 70px;
  height: 70px;
  border-radius: 12px;
  background-size: cover;
  background-position: center;
  flex-shrink: 0;
}
.cart-item-info { flex: 1; min-width: 0; }
.cart-item-info h4 {
  margin: 0 0 4px;
  font-size: 16px;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
}
.cart-item-info .price { font-size: 16px; }
.qty {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.qty button {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  border: 1px solid var(--line);
  background: var(--white);
  font-size: 18px;
  font-weight: 600;
  cursor: pointer;
}
.qty button:hover { background: var(--cream); }
.qty span { min-width: 24px; text-align: center; font-weight: 600; }
.remove-btn {
  background: transparent;
  border: none;
  color: var(--muted);
  cursor: pointer;
  font-size: 13px;
  margin-top: 4px;
  padding: 0;
  text-decoration: underline;
}
.remove-btn:hover { color: var(--rose-deep); }

.empty {
  text-align: center;
  color: var(--muted);
  padding: 40px 20px;
}

.total-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 16px;
  font-size: 18px;
}
.total-row strong {
  font-family: 'Cormorant Garamond', serif;
  font-size: 28px;
  color: var(--rose-deep);
}
.total-row.big strong { font-size: 32px; }

.backdrop {
  position: fixed;
  inset: 0;
  background: rgba(20, 10, 5, 0.45);
  z-index: 90;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}
.backdrop.show { opacity: 1; pointer-events: auto; }

/* ---- Modal ---- */
.modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: none;
  align-items: flex-start;
  justify-content: center;
  padding: 40px 16px;
  overflow-y: auto;
  background: rgba(20, 10, 5, 0.55);
}
.modal.open { display: flex; }
.modal-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px;
  max-width: 540px;
  width: 100%;
  position: relative;
  box-shadow: var(--shadow-lg);
  margin: auto;
}
.modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
}
.lead-sm { color: var(--ink-soft); font-size: 16px; margin-bottom: 24px; }
.modal-card h2 { margin-bottom: 8px; }

form label {
  display: block;
  margin-bottom: 16px;
  font-weight: 600;
  color: var(--ink);
  font-size: 15.5px;
}
form input,
form textarea {
  display: block;
  width: 100%;
  margin-top: 6px;
  padding: 14px 16px;
  font-size: 17px;
  font-family: inherit;
  border: 1.5px solid var(--line);
  border-radius: 12px;
  background: var(--bg);
  color: var(--ink);
  transition: border-color 0.2s;
}
form input:focus,
form textarea:focus {
  outline: none;
  border-color: var(--rose-deep);
  background: var(--white);
}
form textarea { resize: vertical; }

.iban-box {
  background: linear-gradient(135deg, #fff 0%, #faf3ec 100%);
  border: 1.5px solid var(--gold);
  border-radius: var(--radius);
  padding: 24px;
  margin: 20px 0 24px;
}
.iban-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px dashed var(--line);
  gap: 16px;
}
.iban-row:last-of-type { border-bottom: none; }
.iban-label { color: var(--muted); font-size: 14px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.06em; }
.iban-val { color: var(--ink); font-weight: 600; text-align: right; }
.iban-num {
  font-family: 'Courier New', monospace;
  letter-spacing: 0.06em;
  font-size: 15px;
  word-break: break-all;
}
.copied {
  text-align: center;
  color: var(--gold);
  font-weight: 600;
  margin: 10px 0 0;
}

.order-summary {
  background: var(--bg);
  border-radius: var(--radius);
  padding: 20px;
  margin-bottom: 22px;
}
.order-summary h3 {
  margin: 0 0 14px;
  font-size: 1.2rem;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
}
.summary-line {
  display: flex;
  justify-content: space-between;
  padding: 6px 0;
  color: var(--ink-soft);
  font-size: 15.5px;
}
.summary-line + .total-row { border-top: 1px solid var(--line); padding-top: 12px; margin-top: 8px; margin-bottom: 0; }

.success { text-align: center; padding: 16px 8px; }
.success-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--white);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 44px;
  margin: 0 auto 18px;
}

/* ============================================================
   MOBİL — ferah, hava boşluğu bol, tek sütun akış (öncelik)
   ============================================================ */
@media (max-width: 860px) {
  body { font-size: 17px; line-height: 1.7; }

  .container { padding: 0 22px; }

  /* Üst bar */
  .topbar-inner { padding: 16px 20px; }
  .nav { display: none; }
  .cart-label { display: none; }
  .cart-btn { padding: 12px 16px; }

  /* Hero */
  .hero {
    padding: 36px 0 56px;
  }
  .hero-inner { grid-template-columns: 1fr; gap: 36px; }
  .hero-image {
    order: -1;
    aspect-ratio: 4 / 3;
    border-radius: 20px;
  }
  .eyebrow { font-size: 12px; letter-spacing: 0.22em; margin-bottom: 14px; }
  .hero-text h1 { font-size: 2.3rem; line-height: 1.1; }
  .lead { font-size: 17px; line-height: 1.65; margin: 20px 0 28px; }
  .hero-actions {
    flex-direction: column;
    gap: 12px;
    margin-bottom: 32px;
  }
  .hero-actions .btn { width: 100%; padding: 18px 24px; font-size: 17px; }
  .trust {
    flex-direction: column;
    gap: 12px;
    font-size: 15.5px;
  }
  .trust li { padding-left: 4px; }

  /* Section spacing */
  section { padding: 64px 0; }
  .section-head { margin-bottom: 40px; }
  .section-head h2 { font-size: 2rem; line-height: 1.2; }
  .section-head p { font-size: 16.5px; line-height: 1.65; }

  /* Products — tek sütun, geniş kartlar */
  .grid {
    grid-template-columns: 1fr;
    gap: 22px;
  }
  .card {
    border-radius: 20px;
  }
  .card-photo {
    aspect-ratio: 5 / 4;
  }
  .card-body {
    padding: 24px 22px 26px;
  }
  .card h3 { font-size: 1.5rem; margin-bottom: 10px; }
  .card p {
    font-size: 15.5px;
    line-height: 1.65;
    margin-bottom: 22px;
  }
  .card-foot {
    flex-direction: column;
    align-items: stretch;
    gap: 14px;
  }
  .price { font-size: 1.9rem; }
  .add-btn {
    width: 100%;
    padding: 16px 22px;
    font-size: 16px;
  }

  /* Steps — tek sütun ferah */
  .steps {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .steps li {
    padding: 32px 26px;
    border-radius: 20px;
    text-align: left;
    display: grid;
    grid-template-columns: auto 1fr;
    column-gap: 20px;
    row-gap: 4px;
    align-items: start;
  }
  .step-num {
    grid-row: span 2;
    width: 52px;
    height: 52px;
    margin: 0;
    font-size: 24px;
  }
  .steps h3 { margin: 0; font-size: 1.35rem; align-self: center; }
  .steps p { font-size: 15.5px; line-height: 1.6; grid-column: 2; }

  /* Contact */
  .contact-inner { grid-template-columns: 1fr; gap: 28px; }
  .contact-list { font-size: 17px; }
  .contact-list li { padding: 16px 0; }
  .contact-card {
    padding: 32px 26px;
    border-radius: 20px;
  }

  /* Drawer */
  .drawer { width: 100%; }
  .drawer-head { padding: 22px 22px; }
  .drawer-body { padding: 22px; }
  .drawer-foot { padding: 22px 22px 26px; }

  /* Modal */
  .modal { padding: 0; align-items: stretch; }
  .modal-card {
    padding: 28px 24px 32px;
    border-radius: 0;
    min-height: 100vh;
    margin: 0;
    max-width: none;
  }
  .modal-card h2 { font-size: 1.9rem; }
  .modal-close { top: 16px; right: 16px; font-size: 24px; }

  form label { font-size: 15px; margin-bottom: 18px; }
  form input,
  form textarea {
    padding: 16px 16px;
    font-size: 17px;
    border-radius: 14px;
  }

  /* IBAN */
  .iban-box {
    padding: 22px 20px;
    margin: 22px 0 26px;
    border-radius: 16px;
  }
  .iban-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    padding: 12px 0;
  }
  .iban-val { text-align: left; }
  .iban-num { font-size: 15px; line-height: 1.5; }

  .order-summary {
    padding: 22px 20px;
    border-radius: 16px;
  }
  .total-row { font-size: 17px; }
  .total-row strong { font-size: 26px; }
  .total-row.big strong { font-size: 30px; }

  /* Buttons mobile — daha büyük dokunma */
  .btn { padding: 18px 26px; font-size: 17px; }
  .btn-lg { padding: 20px 26px; font-size: 18px; }
}

/* Küçük telefonlar */
@media (max-width: 480px) {
  .container { padding: 0 18px; }
  .topbar-inner { padding: 14px 18px; }
  .brand-name { font-size: 22px; }
  .brand-sub { font-size: 10px; letter-spacing: 0.22em; }
  .brand-mark { font-size: 24px; }
  .brand { gap: 10px; }

  .hero { padding: 28px 0 48px; }
  .hero-text h1 { font-size: 2rem; }
  .lead { font-size: 16.5px; }
  .section-head h2 { font-size: 1.8rem; }
  .section-head p { font-size: 16px; }
  section { padding: 56px 0; }

  .card-body { padding: 22px 20px 24px; }
  .card h3 { font-size: 1.35rem; }

  .steps li {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 28px 22px;
  }
  .steps li .step-num {
    grid-row: auto;
    margin: 0 auto 14px;
  }
  .steps li h3 { text-align: center; }
  .steps li p { grid-column: auto; text-align: center; }

  .contact-card { padding: 28px 22px; }
}
