:root {
  --forest-950: #07170f;
  --forest-900: #0f2e1d;
  --forest-800: #123524;
  --forest-700: #1d4a34;
  --forest-600: #2b6549;
  --cream: #f6f0e6;
  --cream-2: #ede3d2;
  --sand: #d8c7a3;
  --gold: #b89a62;
  --ink: #17221b;
  --muted: #687468;
  --white: #fffaf1;
  --shadow: 0 24px 70px rgba(7, 23, 15, .18);
  --radius-xl: 30px;
  --radius-lg: 22px;
  --radius-md: 16px;
  --max: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at 10% 0%, rgba(43, 101, 73, .16), transparent 30rem),
    linear-gradient(180deg, #fffaf1 0%, var(--cream) 100%);
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  max-width: var(--max);
  margin: 0 auto;
  padding: 1rem 1.2rem;
  backdrop-filter: blur(18px);
}
.site-header::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 84px;
  background: rgba(246, 240, 230, .78);
  border-bottom: 1px solid rgba(15, 46, 29, .08);
  z-index: -1;
}
.brand { display: inline-flex; align-items: center; gap: .8rem; }
.brand-mark {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  flex: 0 0 54px;
  border-radius: 50%;
  overflow: hidden;
  background: #f2e8f0;
  border: 2px solid rgba(15, 46, 29, .12);
  box-shadow: 0 12px 28px rgba(15, 46, 29, .22);
}
.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.08);
}
.brand strong { display: block; font-size: 1rem; letter-spacing: .05em; text-transform: uppercase; }
.brand small { display: block; color: var(--muted); margin-top: .1rem; }
.main-nav { display: flex; align-items: center; gap: .2rem; }
.main-nav a {
  padding: .75rem .9rem;
  border-radius: 999px;
  font-size: .94rem;
  color: var(--forest-800);
  transition: .2s ease;
}
.main-nav a:hover, .main-nav a.active { background: var(--forest-900); color: var(--cream); }
.main-nav a.login-nav {
  width: 42px;
  height: 42px;
  padding: 0;
  display: inline-grid;
  place-items: center;
}
.login-icon,
.login-icon svg {
  width: 20px;
  height: 20px;
  display: block;
}
.login-icon svg { fill: currentColor; }
.nav-toggle { display: none; border: 0; background: transparent; padding: .5rem; }
.nav-toggle span { display: block; width: 25px; height: 2px; margin: 5px 0; background: var(--forest-900); transition: .2s; }

.hero {
  max-width: var(--max);
  margin: 2.5rem auto 0;
  padding: 3rem 1.2rem 5rem;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(300px, .95fr);
  align-items: center;
  gap: 3rem;
}
.hero-copy h1, .page-hero h1, .about-copy h1 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.7rem, 7vw, 6.2rem);
  line-height: .92;
  letter-spacing: -.055em;
  margin: .6rem 0 1.2rem;
  color: var(--forest-950);
}
.lead, .page-hero p, .section-text p, .about-copy p, .forest-panel p {
  font-size: clamp(1.05rem, 2vw, 1.22rem);
  line-height: 1.75;
  color: #415145;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  margin: 0;
  color: var(--sand);
  text-transform: uppercase;
  letter-spacing: .16em;
  font-size: .76rem;
  font-weight: 800;
}
.eyebrow.dark { color: var(--forest-700); }
.eyebrow::before {
  content: "";
  width: 34px;
  height: 1px;
  background: currentColor;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: .8rem; margin-top: 2rem; }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: .9rem 1.15rem;
  border-radius: 999px;
  font-weight: 800;
  border: 1px solid transparent;
  transition: .2s ease;
}
.btn.primary { background: var(--forest-900); color: var(--cream); box-shadow: 0 16px 35px rgba(15, 46, 29, .22); }
.btn.primary:hover { transform: translateY(-2px); background: var(--forest-800); }
.btn.ghost { border-color: rgba(15, 46, 29, .24); color: var(--forest-900); }
.btn.ghost:hover { background: rgba(15, 46, 29, .07); }
.btn.light { background: var(--cream); color: var(--forest-900); }

.hero-art {
  position: relative;
  padding: 1rem;
  border-radius: 42px;
  background: linear-gradient(135deg, var(--forest-900), var(--forest-700));
  box-shadow: var(--shadow);
}
.hero-main-img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: 34px;
  border: 10px solid rgba(255, 250, 241, .55);
}

.hero-slider-viewport {
  position: relative;
  overflow: hidden;
  border-radius: 34px;
  border: 10px solid rgba(255, 250, 241, .55);
  background: rgba(255, 250, 241, .28);
}
.hero-slider-track {
  display: flex;
  transition: transform .48s cubic-bezier(.22, .9, .22, 1);
  will-change: transform;
}
.hero-slide {
  position: relative;
  min-width: 100%;
}
.hero-slide img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: 23px;
}
.hero-slide::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 23px;
  background: linear-gradient(180deg, transparent 48%, rgba(7, 23, 15, .66));
  pointer-events: none;
}
.hero-slide-copy {
  position: absolute;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  z-index: 1;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: .9rem;
  color: var(--cream);
}
.hero-slide-copy h3 {
  margin: .15rem 0 .2rem;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.65rem, 4vw, 2.8rem);
  line-height: .95;
  letter-spacing: -.04em;
}
.hero-slide-copy p {
  margin: 0;
  max-width: 300px;
  color: rgba(255, 250, 241, .82);
  line-height: 1.45;
}
.hero-slide-tag {
  display: inline-flex;
  padding: .35rem .6rem;
  border-radius: 999px;
  background: rgba(255, 250, 241, .18);
  border: 1px solid rgba(255, 250, 241, .24);
  color: rgba(255, 250, 241, .88);
  font-size: .72rem;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.hero-slide-link {
  flex: 0 0 auto;
  padding: .72rem .9rem;
  border-radius: 999px;
  background: rgba(255, 250, 241, .92);
  color: var(--forest-900);
  font-size: .82rem;
  font-weight: 900;
  box-shadow: 0 12px 26px rgba(7, 23, 15, .18);
}
.hero-slider-arrow {
  position: absolute;
  top: 50%;
  z-index: 3;
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 250, 241, .34);
  border-radius: 50%;
  background: rgba(255, 250, 241, .88);
  color: var(--forest-900);
  box-shadow: 0 14px 30px rgba(7, 23, 15, .18);
  cursor: pointer;
  transform: translateY(-50%);
  transition: .2s ease;
  font-size: 1.8rem;
  line-height: 1;
}
.hero-slider-arrow:hover { background: var(--cream); transform: translateY(-50%) scale(1.05); }
.hero-slider-prev { left: 1.45rem; }
.hero-slider-next { right: 1.45rem; }
.hero-slider-dots {
  position: absolute;
  left: 50%;
  bottom: 1.55rem;
  z-index: 3;
  display: flex;
  gap: .45rem;
  transform: translateX(-50%);
}
.hero-slider-dot {
  width: 10px;
  height: 10px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 250, 241, .5);
  cursor: pointer;
  transition: .2s ease;
}
.hero-slider-dot.active {
  width: 30px;
  background: var(--cream);
}
.floating-card {
  position: absolute;
  width: max-content;
  max-width: 230px;
  padding: 1rem 1.1rem;
  border-radius: 18px;
  background: rgba(255, 250, 241, .9);
  box-shadow: 0 16px 34px rgba(7, 23, 15, .18);
}
.floating-card span { display: block; color: var(--muted); font-size: .8rem; text-transform: uppercase; letter-spacing: .12em; }
.floating-card strong { display: block; color: var(--forest-900); margin-top: .2rem; }
.top-card { top: 2.2rem; left: -1rem; }
.bottom-card { bottom: 2.2rem; right: -1rem; }

.section {
  max-width: var(--max);
  margin: 0 auto;
  padding: 5.5rem 1.2rem;
}
.no-pad-top { padding-top: 1rem; }
.cream {
  max-width: none;
  padding-left: max(1.2rem, calc((100vw - var(--max)) / 2 + 1.2rem));
  padding-right: max(1.2rem, calc((100vw - var(--max)) / 2 + 1.2rem));
  background: rgba(237, 227, 210, .52);
}
.split { display: grid; grid-template-columns: 1fr 1.2fr; gap: 3rem; align-items: center; }
.section h2, .forest-panel h2, .process-card h2, .timeline-card h2, .values-grid h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 4vw, 3.7rem);
  line-height: 1;
  letter-spacing: -.04em;
  margin: .55rem 0 1rem;
  color: var(--forest-950);
}
.section-head { display: flex; align-items: end; justify-content: space-between; gap: 1rem; margin-bottom: 1.8rem; }
.section-head h2 { margin: .4rem 0 0; }
.text-link { font-weight: 800; color: var(--forest-700); border-bottom: 1px solid currentColor; }

.art-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.2rem;
}
.art-grid.full { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.art-card {
  overflow: hidden;
  border-radius: var(--radius-xl);
  background: rgba(255, 250, 241, .86);
  border: 1px solid rgba(15, 46, 29, .1);
  box-shadow: 0 16px 45px rgba(7, 23, 15, .08);
  transition: transform .2s ease, box-shadow .2s ease;
}
.art-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.art-image-button { position: relative; display: block; width: 100%; padding: 0; border: 0; background: transparent; cursor: pointer; }
.art-image-button img { width: 100%; aspect-ratio: 1 / 1.12; object-fit: cover; }
.art-status {
  position: absolute;
  top: .85rem;
  left: .85rem;
  padding: .45rem .7rem;
  border-radius: 999px;
  background: rgba(15, 46, 29, .86);
  color: var(--cream);
  font-size: .75rem;
  font-weight: 800;
}
.art-content { padding: 1.1rem; display: grid; gap: 1.1rem; min-height: 260px; }
.art-meta { color: var(--forest-600); font-size: .82rem; font-weight: 800; text-transform: uppercase; letter-spacing: .1em; margin: 0 0 .3rem; }
.art-content h3 { margin: 0 0 .55rem; font-size: 1.25rem; color: var(--forest-950); }
.art-content p { margin: 0; color: var(--muted); line-height: 1.6; }
.art-bottom { display: flex; align-items: center; justify-content: space-between; gap: .8rem; align-self: end; }
.art-bottom strong { color: var(--forest-900); white-space: nowrap; }
.mini-actions { display: flex; gap: .45rem; }
.mini-btn {
  border: 1px solid rgba(15, 46, 29, .16);
  background: transparent;
  color: var(--forest-900);
  border-radius: 999px;
  padding: .55rem .7rem;
  font-size: .84rem;
  font-weight: 800;
  cursor: pointer;
}
.mini-btn.filled { background: var(--forest-900); color: var(--cream); border-color: var(--forest-900); }

/* Özel sipariş kartlarında fiyatı butonların üstüne alır; uzun fiyat ve Gardrops yazıları kesilmez. */
.art-card.is-custom .art-bottom {
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
  gap: .75rem;
}
.art-card.is-custom .art-bottom strong {
  white-space: normal;
  line-height: 1.25;
}
.art-card.is-custom .mini-actions {
  width: 100%;
  flex-wrap: wrap;
}
.art-card.is-custom .mini-btn {
  white-space: nowrap;
}
.art-card.is-custom .mini-btn.filled {
  flex: 1 1 150px;
  text-align: center;
}

.forest-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  border-radius: 38px;
  padding: 3rem;
  background:
    radial-gradient(circle at 80% 20%, rgba(216, 199, 163, .22), transparent 24rem),
    linear-gradient(135deg, var(--forest-950), var(--forest-800));
  color: var(--cream);
  box-shadow: var(--shadow);
}
.forest-panel h2 { color: var(--cream); max-width: 760px; }
.forest-panel p { color: rgba(255, 250, 241, .75); max-width: 720px; }

.link-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: .9rem;
}
.link-grid.large { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.link-card {
  display: grid;
  gap: .35rem;
  min-height: 190px;
  padding: 1.2rem;
  border-radius: var(--radius-lg);
  background: var(--white);
  border: 1px solid rgba(15, 46, 29, .1);
  transition: .2s ease;
}
.link-card:hover { transform: translateY(-4px); background: var(--forest-900); color: var(--cream); }
.link-card span { color: var(--gold); font-size: .78rem; font-weight: 900; text-transform: uppercase; letter-spacing: .12em; }
.link-card h3 { margin: .4rem 0 0; font-size: 1.25rem; }
.link-card p { margin: 0; font-weight: 800; color: var(--forest-700); }
.link-card small { color: var(--muted); line-height: 1.55; }
.link-card:hover p, .link-card:hover small { color: rgba(255,250,241,.75); }

.page-hero {
  max-width: 900px;
  margin: 0 auto;
  padding: 5rem 1.2rem 3rem;
  text-align: center;
}
.page-hero .eyebrow { justify-content: center; color: var(--forest-700); }
.page-hero .eyebrow::before { display: none; }
.filter-bar { display: flex; justify-content: center; flex-wrap: wrap; gap: .7rem; margin-bottom: 1.5rem; }
.filter {
  border: 1px solid rgba(15, 46, 29, .16);
  border-radius: 999px;
  background: rgba(255, 250, 241, .6);
  color: var(--forest-900);
  padding: .75rem 1rem;
  font-weight: 800;
  cursor: pointer;
}
.filter.active, .filter:hover { background: var(--forest-900); color: var(--cream); }
.gallery-note { text-align: center; color: var(--muted); margin-top: 1.5rem; }

.art-dialog {
  width: min(980px, calc(100vw - 2rem));
  border: 0;
  border-radius: 34px;
  padding: 0;
  background: var(--white);
  color: var(--ink);
  box-shadow: var(--shadow);
}
.art-dialog::backdrop { background: rgba(7, 23, 15, .72); backdrop-filter: blur(4px); }
.dialog-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  z-index: 2;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 0;
  background: var(--forest-900);
  color: var(--cream);
  font-size: 1.6rem;
  cursor: pointer;
}
.dialog-body { display: grid; grid-template-columns: .95fr 1fr; }
.dialog-body img { width: 100%; height: 100%; max-height: 680px; object-fit: cover; }
.dialog-copy { padding: 3rem; display: grid; align-content: center; }
.dialog-copy h2 { font-family: Georgia, serif; font-size: clamp(2.3rem, 5vw, 4.6rem); line-height: .95; margin: .6rem 0 1rem; }
.dialog-copy p { color: var(--muted); line-height: 1.75; }
dl { display: grid; gap: .55rem; margin: 1rem 0 1.5rem; }
dl div { display: flex; justify-content: space-between; gap: 1rem; border-bottom: 1px solid rgba(15, 46, 29, .08); padding-bottom: .55rem; }
dt { color: var(--muted); } dd { margin: 0; font-weight: 800; color: var(--forest-900); }

.timeline-section { display: grid; grid-template-columns: 1.1fr .9fr; gap: 1.2rem; }
.timeline-section.single-card { grid-template-columns: minmax(0, 720px); justify-content: center; }
.timeline-card, .process-card, .values-grid article, details {
  border-radius: var(--radius-xl);
  background: var(--white);
  border: 1px solid rgba(15, 46, 29, .1);
  box-shadow: 0 18px 45px rgba(7, 23, 15, .07);
  padding: 1.6rem;
}
.timeline-card.forest { background: var(--forest-900); color: var(--cream); }
.timeline-card.forest h2 { color: var(--cream); }
.timeline-card p, .process-card p, .values-grid p, details p { color: var(--muted); line-height: 1.7; }
.timeline-card.forest p { color: rgba(255,250,241,.75); }
.date-pill { display: inline-flex; border-radius: 999px; background: var(--cream-2); color: var(--forest-900); padding: .45rem .7rem; font-weight: 900; font-size: .78rem; }
.light-pill { background: rgba(255,250,241,.16); color: var(--cream); }
.clean-list { margin: 1rem 0 0; padding-left: 1.2rem; line-height: 1.8; color: var(--forest-700); }

.process-grid, .values-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 1rem; }
.process-card span { display: inline-flex; color: var(--gold); font-weight: 900; letter-spacing: .12em; }
.process-card h2, .values-grid h2, .timeline-card h2 { font-size: clamp(1.5rem, 3vw, 2.3rem); letter-spacing: -.035em; }
.values-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }

.about-hero {
  max-width: var(--max);
  margin: 0 auto;
  padding: 5rem 1.2rem;
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 3rem;
  align-items: center;
}
.about-image { padding: .8rem; border-radius: 38px; background: var(--forest-900); box-shadow: var(--shadow); transform: rotate(-1.5deg); }
.about-image img { border-radius: 30px; aspect-ratio: 4 / 5; object-fit: cover; }

.faq-grid { display: grid; gap: .85rem; }
summary { cursor: pointer; font-weight: 900; color: var(--forest-900); }

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  max-width: var(--max);
  margin: 2rem auto 0;
  padding: 2rem 1.2rem 3rem;
  color: var(--muted);
  border-top: 1px solid rgba(15, 46, 29, .1);
}
.site-footer strong { color: var(--forest-900); }
.site-footer p { margin: .25rem 0 0; }

.reveal { opacity: 0; transform: translateY(18px); transition: opacity .65s ease, transform .65s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.delay-1 { transition-delay: .1s; }
.delay-2 { transition-delay: .18s; }
.delay-3 { transition-delay: .26s; }

@media (max-width: 980px) {
  .hero, .split, .about-hero, .timeline-section { grid-template-columns: 1fr; }
  .hero { padding-top: 2rem; }
  .art-grid, .art-grid.full, .link-grid, .link-grid.large { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .process-grid, .values-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .forest-panel { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 760px) {
  .site-header { padding: .85rem 1rem; }
  .nav-toggle { display: block; }
  .main-nav {
    position: absolute;
    top: calc(100% + .3rem);
    left: 1rem;
    right: 1rem;
    display: grid;
    gap: .25rem;
    padding: .7rem;
    border-radius: 24px;
    background: rgba(255, 250, 241, .98);
    border: 1px solid rgba(15, 46, 29, .1);
    box-shadow: var(--shadow);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition: .2s ease;
  }
  .main-nav.open { opacity: 1; pointer-events: auto; transform: translateY(0); }
  .main-nav a { border-radius: 16px; }
  .brand small { display: none; }
  .hero { margin-top: .5rem; padding-bottom: 3rem; }
  .hero-copy h1, .page-hero h1, .about-copy h1 { font-size: clamp(2.5rem, 14vw, 4.2rem); }
  .section { padding: 3.5rem 1rem; }
  .page-hero { padding: 3.5rem 1rem 2rem; }
  .art-grid, .art-grid.full, .link-grid, .link-grid.large, .process-grid, .values-grid { grid-template-columns: 1fr; }
  .section-head { align-items: flex-start; flex-direction: column; }
  .forest-panel { border-radius: 28px; padding: 1.4rem; }
  .dialog-body { grid-template-columns: 1fr; }
  .dialog-body img { max-height: 48vh; }
  .dialog-copy { padding: 1.4rem; }
  .hero-art { padding: .65rem; border-radius: 30px; }
  .hero-slider-viewport { border-width: 7px; border-radius: 25px; }
  .hero-slide img, .hero-slide::after { border-radius: 18px; }
  .hero-slide-copy {
    left: .75rem;
    right: .75rem;
    bottom: .75rem;
    display: grid;
    align-items: start;
  }
  .hero-slide-copy p { display: none; }
  .hero-slide-link { width: max-content; padding: .62rem .78rem; }
  .hero-slider-arrow { width: 38px; height: 38px; font-size: 1.55rem; }
  .hero-slider-prev { left: .95rem; }
  .hero-slider-next { right: .95rem; }
  .hero-slider-dots { bottom: 1.1rem; }
  .top-card { left: .7rem; }
  .bottom-card { right: .7rem; }
  .site-footer { flex-direction: column; }
}


/* Admin panel */
.admin-page {
  background:
    radial-gradient(circle at 5% 5%, rgba(184, 154, 98, .18), transparent 26rem),
    linear-gradient(180deg, #fffaf1 0%, var(--cream) 100%);
}
.admin-hero { padding-bottom: 2rem; }
.admin-shell { max-width: 1320px; padding-top: 2rem; }
.admin-notice {
  max-width: 560px;
  margin: 0 auto 1rem;
  padding: .75rem .95rem;
  border-radius: 18px;
  border: 1px solid rgba(15, 46, 29, .12);
  background: rgba(255, 250, 241, .85);
  color: var(--forest-900);
  font-weight: 800;
  line-height: 1.5;
}
.admin-notice.success { background: rgba(29, 74, 52, .10); border-color: rgba(29, 74, 52, .2); }
.admin-notice.error { background: rgba(140, 45, 35, .10); border-color: rgba(140, 45, 35, .22); color: #74261f; }
.admin-login-card,
.admin-card,
.admin-toolbar {
  border-radius: var(--radius-xl);
  background: rgba(255, 250, 241, .9);
  border: 1px solid rgba(15, 46, 29, .1);
  box-shadow: 0 18px 45px rgba(7, 23, 15, .08);
}
.admin-login-card {
  max-width: 560px;
  margin: 0 auto;
  padding: 1.5rem;
}
.admin-login-card h2,
.admin-section-title h2 {
  margin: 0 0 .4rem;
  font-family: Georgia, "Times New Roman", serif;
  color: var(--forest-950);
  font-size: clamp(1.6rem, 3vw, 2.35rem);
  letter-spacing: -.035em;
}
.admin-login-card p,
.admin-section-title p,
.admin-product-card p,
.admin-product-card small {
  color: var(--muted);
  line-height: 1.55;
}
.admin-login-card code {
  padding: .12rem .35rem;
  border-radius: 8px;
  background: rgba(15, 46, 29, .08);
}
.admin-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem;
  margin-bottom: 1rem;
}
.admin-toolbar span { display: block; color: var(--muted); font-size: .8rem; font-weight: 800; text-transform: uppercase; letter-spacing: .1em; }
.admin-toolbar strong { color: var(--forest-950); }
.admin-toolbar-actions { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: .55rem; }
.admin-toolbar-actions .btn { min-height: 42px; padding: .68rem .86rem; font-size: .86rem; cursor: pointer; }
.file-btn { cursor: pointer; }
.danger-soft { color: #782b22; border-color: rgba(120, 43, 34, .25); }
.admin-grid {
  display: grid;
  grid-template-columns: minmax(320px, .95fr) minmax(420px, 1.05fr);
  gap: 1rem;
  align-items: start;
}
.admin-card { padding: 1.2rem; }
.admin-form { display: grid; gap: .9rem; text-align: left; }
.admin-form.compact { margin-top: 1rem; }
.admin-form label { display: grid; gap: .38rem; color: var(--forest-900); font-weight: 900; }
.admin-form input,
.admin-form select,
.admin-form textarea {
  width: 100%;
  border: 1px solid rgba(15, 46, 29, .16);
  border-radius: 16px;
  background: rgba(255, 255, 255, .72);
  color: var(--ink);
  padding: .85rem .9rem;
  outline: none;
  transition: .18s ease;
}
.admin-form textarea { resize: vertical; min-height: 98px; }
.admin-form input:focus,
.admin-form select:focus,
.admin-form textarea:focus {
  border-color: var(--forest-700);
  box-shadow: 0 0 0 4px rgba(29, 74, 52, .11);
}
.two-col { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: .8rem; }
.three-col { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: .8rem; }
.upload-box {
  padding: .9rem;
  border: 1px dashed rgba(15, 46, 29, .25);
  border-radius: 18px;
  background: rgba(237, 227, 210, .36);
}
.upload-box small { color: var(--muted); font-weight: 700; }

.image-upload-box input[type="file"] {
  padding: .75rem;
  background: rgba(255, 255, 255, .55);
  cursor: pointer;
}
.field-hint {
  color: var(--muted);
  font-weight: 700;
  line-height: 1.45;
}
.image-preview {
  width: 100%;
  max-height: 330px;
  object-fit: cover;
  border-radius: 20px;
  border: 1px solid rgba(15, 46, 29, .12);
  background: var(--cream-2);
}
.check-row {
  display: flex !important;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: .6rem !important;
}
.check-row input { width: auto; }
.row-title {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1rem;
}
.row-title > strong {
  flex: 0 0 auto;
  display: inline-flex;
  padding: .45rem .7rem;
  border-radius: 999px;
  background: var(--forest-900);
  color: var(--cream);
  font-size: .78rem;
}
.product-list { display: grid; gap: .8rem; }
.admin-product-card {
  display: grid;
  grid-template-columns: 112px 1fr;
  gap: .9rem;
  padding: .75rem;
  border-radius: 22px;
  background: rgba(237, 227, 210, .35);
  border: 1px solid rgba(15, 46, 29, .08);
}
.admin-product-card.is-hidden { opacity: .62; }
.admin-product-card img {
  width: 112px;
  height: 112px;
  object-fit: cover;
  border-radius: 18px;
  background: var(--cream-2);
}
.admin-product-head {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: .8rem;
}
.admin-product-head strong { color: var(--forest-950); font-size: 1.02rem; }
.admin-product-head span {
  flex: 0 0 auto;
  padding: .32rem .55rem;
  border-radius: 999px;
  background: rgba(15, 46, 29, .86);
  color: var(--cream);
  font-size: .72rem;
  font-weight: 900;
}
.admin-product-card p { margin: .3rem 0 .15rem; }
.admin-product-card small { display: block; }
.admin-card-actions { display: flex; flex-wrap: wrap; gap: .4rem; margin-top: .7rem; }
.admin-card-actions button {
  border: 1px solid rgba(15, 46, 29, .16);
  border-radius: 999px;
  background: rgba(255, 250, 241, .78);
  color: var(--forest-900);
  padding: .48rem .62rem;
  font-weight: 900;
  cursor: pointer;
}
.admin-card-actions button:disabled { opacity: .35; cursor: not-allowed; }
.admin-card-actions button.danger { color: #782b22; border-color: rgba(120, 43, 34, .24); }
.muted-box {
  margin: 0;
  padding: 1rem;
  border-radius: 18px;
  background: rgba(237, 227, 210, .45);
  color: var(--muted);
}
@media (max-width: 980px) {
  .admin-grid { grid-template-columns: 1fr; }
  .admin-toolbar { align-items: flex-start; flex-direction: column; }
  .admin-toolbar-actions { justify-content: flex-start; }
}
@media (max-width: 760px) {
  .two-col, .three-col { grid-template-columns: 1fr; }
  .admin-product-card { grid-template-columns: 82px 1fr; }
  .admin-product-card img { width: 82px; height: 82px; }
  .admin-product-head { display: grid; }
  .admin-toolbar-actions .btn { width: 100%; }
  .admin-toolbar-actions { width: 100%; }
}


.login-status {
  margin: .85rem 0 0;
  padding: .85rem 1rem;
  border-radius: 16px;
  font-weight: 700;
  line-height: 1.35;
  background: rgba(20, 71, 49, .08);
  color: var(--forest);
  border: 1px solid rgba(20, 71, 49, .14);
}
.login-status.error {
  background: rgba(120, 31, 22, .08);
  color: #781f16;
  border-color: rgba(120, 31, 22, .2);
}
.login-status.success {
  background: rgba(20, 71, 49, .1);
  color: var(--forest);
  border-color: rgba(20, 71, 49, .18);
}

.field-hint {
  display: block;
  margin-top: .35rem;
  color: var(--muted);
  font-weight: 700;
  line-height: 1.45;
}

/* Mobile contact heading fix */
.page-hero h1 {
  overflow-wrap: break-word;
  word-break: normal;
  hyphens: auto;
}

@media (max-width: 760px) {
  .page-hero {
    max-width: 100%;
    overflow: hidden;
  }
  .page-hero h1 {
    font-size: clamp(2rem, 10.5vw, 3.15rem);
    line-height: 1.02;
    letter-spacing: -.035em;
    max-width: 100%;
  }
}

@media (max-width: 380px) {
  .page-hero h1 {
    font-size: clamp(1.85rem, 9.6vw, 2.55rem);
    letter-spacing: -.025em;
  }
}
