/* ===== Ella Kager — plain CSS, no build. ===== */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&family=Lato:wght@300;400;700&display=swap');

:root {
  --pink: #d6738a;
  --pink-dark: #b6566f;
  --cream: #fff7f2;
  --ink: #3a2b2f;
  --muted: #7a6a6e;
  --radius: 14px;
  --max: 1000px;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  font-family: 'Lato', system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
}

h1, h2, h3 {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 700;
}

a { color: var(--pink-dark); }

/* ===== Header ===== */
.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.6rem 1.75rem;
  position: sticky;
  top: 0;
  background: rgba(255, 247, 242, 0.95);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid #f0dcd2;
  z-index: 10;
}
.logo-link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
}
.logo-img {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  object-fit: cover;
  display: block;
  flex-shrink: 0;
}
.logo-text {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--pink-dark);
  letter-spacing: 0.02em;
}
.site-header nav a {
  margin-left: 1.5rem;
  text-decoration: none;
  color: var(--ink);
  font-size: 0.9rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.site-header nav a:hover { color: var(--pink-dark); }

/* ===== Hero ===== */
.hero {
  background: linear-gradient(rgba(255,247,242,0.78), rgba(255,227,236,0.68)), url('images/Header_without_text.png') center/cover no-repeat;
  text-align: center;
  padding: 5.5rem 1.5rem;
}
.hero-inner { max-width: 640px; margin: 0 auto; }
.hero h1 { font-size: 2.7rem; margin: 0 0 0.6rem; font-weight: 700; line-height: 1.2; }
.hero p { color: var(--muted); font-size: 1.1rem; margin: 0 0 1.75rem; font-weight: 300; }

/* ===== Buttons ===== */
.btn, button:not(.lang-btn) {
  display: inline-block;
  background: var(--pink);
  color: #fff;
  border: 0;
  border-radius: 999px;
  padding: 0.75rem 1.6rem;
  font-size: 1rem;
  text-decoration: none;
  cursor: pointer;
}
.btn:hover, button:not(.lang-btn):hover { background: var(--pink-dark); }
button:not(.lang-btn):disabled { opacity: 0.6; cursor: default; }

/* ===== Header right group (nav + lang toggle) ===== */
.header-right {
  display: flex;
  align-items: center;
}

/* ===== Language switcher ===== */
.lang-switcher {
  display: flex;
  align-items: center;
  margin-left: 1.25rem;
}
.lang-btn {
  background: transparent;
  color: var(--muted);
  border: 1.5px solid #e6cfc5;
  border-radius: 6px;
  padding: 0.25rem 0.6rem;
  font-family: 'Lato', sans-serif;
  cursor: pointer;
  transition: color 0.12s, border-color 0.12s, background 0.12s;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.1rem;
}
.lang-btn img.emoji { width: 18px; height: 18px; margin: 0; vertical-align: middle; }
.lang-label { font-size: 0.62rem; letter-spacing: 0.08em; line-height: 1; }
.lang-btn:hover { color: var(--pink-dark); border-color: var(--pink); background: rgba(214,115,138,0.06); }
.lang-btn.active { display: none; }

/* ===== Sections ===== */
.section { max-width: var(--max); margin: 0 auto; padding: 3.5rem 1.5rem; }
.section h2 { text-align: center; font-size: 1.9rem; margin-bottom: 0.5rem; }
.section-intro { text-align: center; color: var(--muted); margin: 0 0 2rem; }

/* ===== Cards ===== */
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}
.card {
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 4px 14px rgba(0,0,0,0.06);
  transition: transform 0.18s, box-shadow 0.18s;
  text-decoration: none;
  color: inherit;
  display: block;
}
.card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.11);
}
.card img { width: 100%; height: 200px; object-fit: cover; display: block; }
.card h3 { margin: 1rem 1rem 0.25rem; }
.card p { margin: 0.25rem 1rem; color: var(--muted); font-size: 0.95rem; }
.card .price { color: var(--pink-dark); font-weight: 600; margin-bottom: 1rem; }

/* ===== About ===== */
.about { max-width: 900px; }
.about-inner {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}
.about-photo {
  width: 220px;
  height: 300px;
  border-radius: 16px;
  object-fit: cover;
  object-position: center top;
  display: block;
  flex-shrink: 0;
  box-shadow: 0 4px 16px rgba(0,0,0,0.10);
  margin: 0;
}
@media (max-width: 640px) {
  .about-inner { flex-direction: column; align-items: center; }
  .about-photo { margin: 0 auto 1.5rem; }
  .about { text-align: center; }
}

/* ===== Pricing ===== */
#pricing { display: none; }
.price-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
  margin-top: 1.5rem;
}
.price-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 1.25rem 1.5rem;
  box-shadow: 0 4px 14px rgba(0,0,0,0.06);
}
.price-card h3 { margin: 0 0 1rem; font-size: 1rem; }
.price-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.88rem;
}
.price-table th {
  text-align: left;
  padding: 0.35rem 0.5rem;
  color: var(--muted);
  font-weight: 700;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-bottom: 2px solid #f0dcd2;
}
.price-table td {
  padding: 0.35rem 0.5rem;
  border-bottom: 1px solid #f5ede8;
}
.price-note {
  font-size: 0.82rem;
  color: var(--muted);
  margin: 0.75rem 0 0;
}
.price-card > p { color: var(--muted); font-size: 0.9rem; margin: 0 0 0.25rem; }

/* ===== Contact form ===== */
.contact { max-width: 520px; }
.contact > p { color: var(--muted); margin-top: -0.5rem; margin-bottom: 1.5rem; }
form label { display: block; margin-bottom: 1rem; font-weight: 600; }
form input, form select, form textarea {
  width: 100%;
  margin-top: 0.35rem;
  padding: 0.7rem;
  border: 1px solid #e6cfc5;
  border-radius: 8px;
  font: inherit;
  font-weight: 400;
  background: #fff;
}
form textarea { resize: vertical; }
.cf-turnstile { margin: 0.5rem 0 1rem; }
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; opacity: 0; }
.form-msg { padding: 0.75rem 1rem; border-radius: 8px; }
.form-msg.ok   { background: #e7f6ec; color: #226e3e; }
.form-msg.err  { background: #fdeaea; color: #a32626; }
.form-msg.warn { background: #fef9e7; color: #7d6608; }
select.field-error, input.field-error {
  border-color: #c0392b !important;
  box-shadow: 0 0 0 3px rgba(192,57,43,0.12);
}
form input[type="file"] { padding: 0.35rem; }

/* ===== Layers diagram ===== */
.layers-diagram {
  display: block;
  max-width: 360px;
  width: 100%;
  margin: 1.75rem auto 2.25rem;
  padding: 1.25rem;
  background: #fff;
  border-radius: var(--radius);
  box-shadow: 0 2px 10px rgba(0,0,0,0.07);
  border: 1px solid #f0dcd2;
}

/* ===== Gallery pages ===== */
.gallery-header { margin-bottom: 2rem; }
.gallery-header h2 { text-align: left; margin-bottom: 0.5rem; }
.gallery-header p { color: var(--muted); margin: 0; }
.back-link {
  display: inline-block;
  margin-bottom: 1rem;
  font-size: 0.95rem;
  text-decoration: none;
  color: var(--muted);
}
.back-link:hover { color: var(--pink-dark); }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1rem;
}
.gallery-grid img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: var(--radius);
  display: block;
  transition: opacity 0.15s;
}
.gallery-grid img:hover { opacity: 0.88; }

/* ===== Social links ===== */
.social-links {
  display: flex;
  justify-content: center;
  gap: 1.25rem;
  margin-bottom: 0.75rem;
}
.social-links a {
  color: var(--muted);
  display: flex;
  align-items: center;
  transition: color 0.15s;
}
.social-links a:hover { color: var(--pink-dark); }

/* ===== Customise / order flow ===== */
.order-form { max-width: 720px; }
.order-form > h2 { text-align: left; }
.order-form > p { margin-top: 0; }

.form-section {
  background: #fff;
  border-radius: var(--radius);
  padding: 1.5rem;
  margin-bottom: 1.5rem;
  box-shadow: 0 2px 10px rgba(0,0,0,0.06);
}
.form-section h3 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.05rem;
  margin: 0 0 1.1rem;
}
.form-section h3 .opt {
  font-family: 'Lato', sans-serif;
  font-weight: 400;
  font-size: 0.8rem;
  color: var(--muted);
  margin-left: 0.4rem;
}

.no-idea-box {
  background: var(--cream);
  border: 1px solid #f0dcd2;
  border-radius: 10px;
  padding: 0.9rem 1.1rem;
  margin-bottom: 1.1rem;
  font-size: 0.88rem;
  line-height: 1.6;
}

.flavour-category {
  border-bottom: 1px solid #f0dcd2;
  margin-bottom: 0.15rem;
}
.flavour-category summary {
  cursor: pointer;
  font-weight: 600;
  font-size: 0.88rem;
  padding: 0.55rem 0;
  list-style: none;
  color: var(--ink);
  user-select: none;
}
.flavour-category summary::-webkit-details-marker { display: none; }
.flavour-category summary::before { content: '+ '; color: var(--pink-dark); font-weight: 700; }
.flavour-category[open] summary::before { content: '− '; }

.check-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(155px, 1fr));
  gap: 0.3rem 0.75rem;
  padding: 0.4rem 0 0.75rem;
}
.check-grid label {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  font-weight: 400;
  font-size: 0.88rem;
  margin: 0;
  cursor: pointer;
}
.check-grid input[type="checkbox"] {
  width: auto;
  margin: 0;
  flex-shrink: 0;
  accent-color: var(--pink-dark);
}
.surcharge { font-size: 0.75rem; color: var(--muted); }

.occasion-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.occasion-btn {
  background: var(--cream);
  border: 1.5px solid #e6cfc5;
  border-radius: 999px;
  padding: 0.4rem 1rem;
  font-size: 0.88rem;
  font-family: 'Lato', sans-serif;
  cursor: pointer;
  color: var(--ink);
  transition: background 0.12s, border-color 0.12s, color 0.12s;
}
.occasion-btn:hover {
  background: var(--pink);
  border-color: var(--pink);
  color: #fff;
}
.occasion-btn.active {
  background: var(--pink-dark);
  border-color: var(--pink-dark);
  color: #fff;
}

.pickup-row { display: flex; gap: 1rem; flex-wrap: wrap; }
.pickup-row label { flex: 1; min-width: 180px; }
.pickup-address { font-size: 0.85rem; color: var(--muted); margin: 0.75rem 0 0; }

.emergency-link {
  display: inline-block;
  margin-top: 0.75rem;
  font-size: 0.88rem;
  color: var(--pink-dark);
  text-decoration: underline;
  cursor: pointer;
}

.deposit-notice {
  background: #f0f7ef;
  border-left: 3px solid #4a9e6a;
  border-radius: 6px;
  padding: 0.85rem 1rem;
  font-size: 0.88rem;
  color: #2d5e3e;
  margin: 1.5rem 0;
  line-height: 1.6;
}

/* ===== Lightbox ===== */
.lb-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.88);
  align-items: center;
  justify-content: center;
  z-index: 200;
  cursor: zoom-out;
}
.lb-overlay.active { display: flex; }
.lb-overlay img {
  max-width: 92vw;
  max-height: 90vh;
  object-fit: contain;
  border-radius: 8px;
  cursor: default;
  box-shadow: 0 8px 40px rgba(0,0,0,0.5);
}
.lb-close {
  position: absolute;
  top: 1rem;
  right: 1.25rem;
  background: transparent !important;
  color: #fff !important;
  font-size: 2.5rem;
  border: none;
  cursor: pointer;
  line-height: 1;
  padding: 0.25rem 0.5rem;
  opacity: 0.75;
  box-shadow: none !important;
}
.lb-close:hover { background: rgba(255,255,255,0.1) !important; opacity: 1; }

/* ===== Mobile ===== */
@media (max-width: 600px) {
  .logo-text { display: none; }
  .logo-img { width: 46px; height: 46px; }
  .site-header { padding: 0.5rem 0.9rem; }
  .site-header nav a { margin-left: 0.6rem; font-size: 0.78rem; letter-spacing: 0.02em; }
  .lang-switcher { margin-left: 0.65rem; }
  .lang-btn { padding: 0.18rem 0.38rem; }
  .lang-btn img.emoji { width: 14px; height: 14px; }
  .lang-label { font-size: 0.55rem; }

  .hero { padding: 3.5rem 1.25rem; }
  .hero h1 { font-size: 2rem; }
  .hero p { font-size: 0.95rem; }

  .section { padding: 2.5rem 1.1rem; }
  .section h2 { font-size: 1.6rem; }

  .gallery-grid { grid-template-columns: repeat(auto-fill, minmax(140px, 1fr)); gap: 0.6rem; }

  .check-grid { grid-template-columns: 1fr 1fr; }

  .form-section { padding: 1rem; }
  .pickup-row label { min-width: 140px; }
}

/* ===== Footer contact row ===== */
.footer-contact {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  justify-content: center;
  margin: 0.9rem 0 0.1rem;
}
.footer-contact a {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  color: var(--muted);
  font-size: 0.82rem;
  text-decoration: none;
}
.footer-contact a:hover { color: var(--ink); }

/* ===== Basket ===== */
.basket-row {
  display: flex; align-items: flex-start; justify-content: space-between;
  gap: 1rem; padding: 0.6rem 0; border-bottom: 1px solid #f0dcd2;
}
.basket-row:last-child { border-bottom: none; }
.basket-row-info { flex: 1; font-size: 0.93rem; }
.basket-row-actions { display: flex; gap: 0.4rem; flex-shrink: 0; }
.basket-edit, .basket-remove {
  font-size: 0.8rem; padding: 0.2rem 0.6rem; border-radius: 6px;
  border: 1.5px solid; cursor: pointer; font-family: 'Lato', sans-serif;
  background: transparent;
}
.basket-edit   { border-color: var(--pink); color: var(--pink); }
.basket-remove { border-color: #c0392b;  color: #c0392b; }
.basket-edit:hover   { background: var(--pink); color: #fff; }
.basket-remove:hover { background: #c0392b; color: #fff; }

button.btn-secondary {
  background: #f5e6ea; border: 1.5px solid #e4bfc8;
  color: var(--pink-dark); border-radius: 999px; padding: 0.75rem 1.6rem;
  font-size: 1rem;
}
button.btn-secondary:hover { background: #edcdd6; border-color: var(--pink); color: var(--pink-dark); }

.submit-row {
  display: flex; gap: 0.75rem; flex-wrap: wrap; align-items: center;
}

/* ===== Order item checklist ===== */
.order-items { display: flex; flex-direction: column; gap: 0.15rem; }
.oi-label {
  display: flex; align-items: center; gap: 0.65rem;
  cursor: pointer; padding: 0.35rem 0; font-weight: 500;
  user-select: none;
}
.oi-label:hover { color: var(--pink-dark); }
.oi-check {
  width: 17px; height: 17px; flex-shrink: 0;
  accent-color: var(--pink-dark); cursor: pointer;
}
.oi-detail { padding: 0.4rem 0 0.5rem 1.65rem; }
.oi-detail select,
.oi-detail input[type="text"] { margin-bottom: 0.25rem; }

/* ===== Footer ===== */
.site-footer {
  text-align: center;
  padding: 2rem 1.5rem;
  color: var(--muted);
  border-top: 1px solid #f0dcd2;
  margin-top: 2rem;
}
