/* ── VARIABLEN ─────────────────────────────────────────── */
:root {
  --cream: #faf6f0;
  --warm-white: #fff9f2;
  --sand: #e8ddd0;
  --terra: #c4845a;
  --terra-dark: #a06540;
  --brown: #5c3d2e;
  --text: #3a2a1f;
  --text-light: #8a7060;
  --rope: #d4b896;
}
 
/* ── RESET ─────────────────────────────────────────────── */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'DM Sans', sans-serif;
  background: var(--cream);
  color: var(--text);
  overflow-x: hidden;
}
 
/* ── NAV ───────────────────────────────────────────────── */
nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 1.2rem 3rem;
  display: flex; align-items: center; justify-content: space-between;
  background: rgba(250,246,240,0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(196,132,90,0.15);
}
 
.nav-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  font-weight: 300;
  color: var(--brown);
  letter-spacing: 0.05em;
}
.nav-logo span { color: var(--terra); font-style: italic; }
 
.nav-links {
  display: flex; gap: 2rem; list-style: none; align-items: center;
}
.nav-links a {
  text-decoration: none;
  color: var(--text-light);
  font-size: 0.85rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--terra); }
 
.btn-login {
  background: var(--terra);
  color: white !important;
  padding: 0.5rem 1.3rem;
  border-radius: 50px;
  transition: background 0.2s !important;
}
.btn-login:hover { background: var(--terra-dark) !important; }
 
/* ── USER DROPDOWN ─────────────────────────────────────── */
.user-area { position: relative; }
 
.user-dropdown { display: none; position: relative; }
.user-dropdown.visible { display: block; }
 
.user-avatar {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--terra);
  color: white;
  border: none;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
}
.user-avatar:hover { background: var(--terra-dark); transform: scale(1.05); }
 
.dropdown-menu {
  display: none;
  position: absolute;
  top: calc(100% + 0.6rem);
  right: 0;
  background: var(--warm-white);
  border: 1px solid var(--sand);
  border-radius: 14px;
  padding: 1rem;
  min-width: 180px;
  box-shadow: 0 8px 30px rgba(58,42,31,0.12);
  animation: fadeUp 0.2s ease;
}
.dropdown-menu.open { display: block; }
 
.dropdown-greeting {
  font-size: 0.88rem;
  color: var(--text);
  margin-bottom: 0.6rem;
}
 
.dropdown-menu hr {
  border: none;
  border-top: 1px solid var(--sand);
  margin-bottom: 0.6rem;
}
 
.dropdown-item {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.85rem;
  color: var(--text-light);
  padding: 0.3rem 0;
  cursor: pointer;
  transition: color 0.2s;
}
.dropdown-item:hover { color: var(--terra); }
 
/* ── BUTTONS ───────────────────────────────────────────── */
.btn-primary {
  background: var(--terra);
  color: white;
  border: none;
  padding: 0.85rem 2rem;
  border-radius: 50px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  transition: background 0.2s, transform 0.15s;
}
.btn-primary:hover { background: var(--terra-dark); transform: translateY(-1px); }
 
.btn-ghost {
  background: transparent;
  color: var(--brown);
  border: 1.5px solid var(--sand);
  padding: 0.85rem 2rem;
  border-radius: 50px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.9rem;
  font-weight: 400;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  transition: border-color 0.2s, transform 0.15s;
}
.btn-ghost:hover { border-color: var(--terra); transform: translateY(-1px); }
 
/* ── HERO ──────────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding-top: 72px;
}
 
.hero-text {
  display: flex; flex-direction: column; justify-content: center;
  padding: 5rem 4rem 5rem 6rem;
  animation: fadeUp 0.9s ease both;
}
 
.hero-tag {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--terra);
  margin-bottom: 1.5rem;
}
 
.hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(3rem, 5vw, 4.5rem);
  font-weight: 300;
  line-height: 1.1;
  color: var(--brown);
  margin-bottom: 1.5rem;
}
.hero-title em { font-style: italic; color: var(--terra); }
 
.hero-sub {
  font-size: 1rem;
  color: var(--text-light);
  line-height: 1.7;
  max-width: 400px;
  margin-bottom: 2.5rem;
}
 
.hero-buttons { display: flex; gap: 1rem; flex-wrap: wrap; }
 
/* ── SLIDESHOW ─────────────────────────────────────────── */
.hero-slideshow {
  position: relative;
  overflow: hidden;
  background: var(--sand);
}
 
.slide {
  position: absolute; inset: 0;
  opacity: 0;
  transition: opacity 1.2s ease;
  display: flex; align-items: center; justify-content: center;
}
.slide.active { opacity: 1; }
 
.slide-1 { background: linear-gradient(135deg, #e8d5c0 0%, #d4b896 50%, #c49a72 100%); }
.slide-2 { background: linear-gradient(135deg, #c9b49a 0%, #b89870 50%, #d4a878 100%); }
.slide-3 { background: linear-gradient(135deg, #dfc9ae 0%, #c8a882 50%, #b8906a 100%); }
 
.slide-pattern {
  width: 80%;
  max-width: 360px;
  aspect-ratio: 3/4;
}
.slide-pattern svg { width: 100%; height: 100%; opacity: 0.35; }
 
.slide-caption {
  position: absolute;
  bottom: 2rem; left: 2rem; right: 2rem;
  color: white;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  font-style: italic;
  font-weight: 300;
  text-shadow: 0 2px 20px rgba(0,0,0,0.3);
}
 
.slide-dots {
  position: absolute;
  bottom: 1.5rem; right: 2rem;
  display: flex; gap: 0.5rem;
}
.dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: rgba(255,255,255,0.4);
  cursor: pointer;
  transition: background 0.2s;
}
.dot.active { background: white; }
 
/* ── SECTIONS ──────────────────────────────────────────── */
.section { padding: 7rem 6rem; }
 
.section-tag {
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--terra);
  font-weight: 500;
  margin-bottom: 1rem;
}
 
.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 300;
  color: var(--brown);
  margin-bottom: 1.5rem;
  line-height: 1.2;
}
 
/* ── ABOUT ─────────────────────────────────────────────── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
 
.about-text p {
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 1.2rem;
  font-size: 0.95rem;
}
 
.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-top: 2rem;
}
 
.feature-card {
  background: var(--warm-white);
  border: 1px solid var(--sand);
  border-radius: 16px;
  padding: 1.5rem;
  transition: transform 0.2s, box-shadow 0.2s;
}
.feature-card:hover { transform: translateY(-3px); box-shadow: 0 8px 30px rgba(92,61,46,0.08); }
.feature-card h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--brown);
  margin-bottom: 0.3rem;
}
.feature-card p { font-size: 0.8rem; color: var(--text-light); line-height: 1.5; }
 
.about-visual { position: relative; }
 
.about-img-placeholder {
  width: 100%;
  aspect-ratio: 4/5;
  background: linear-gradient(160deg, var(--sand) 0%, var(--rope) 100%);
  border-radius: 24px;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
  position: relative;
}
.about-img-placeholder::before {
  content: '';
  position: absolute; inset: 0;
  background: repeating-linear-gradient(45deg, transparent, transparent 20px, rgba(255,255,255,0.08) 20px, rgba(255,255,255,0.08) 21px);
}
.about-img-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  font-style: italic;
  color: white;
  text-align: center;
  padding: 2rem;
  text-shadow: 0 2px 10px rgba(0,0,0,0.2);
}
 
.about-badge {
  position: absolute;
  bottom: -1rem; right: -1rem;
  background: var(--terra);
  color: white;
  border-radius: 50%;
  width: 110px; height: 110px;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center;
  box-shadow: 0 4px 20px rgba(196,132,90,0.4);
}
.about-badge span:first-child {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem;
  font-weight: 300;
  line-height: 1;
}
.about-badge span:last-child {
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: 0.9;
}
 
/* ── STORE SECTION ─────────────────────────────────────── */
.store-section {
  background: var(--warm-white);
  padding: 5rem 6rem;
  border-top: 1px solid var(--sand);
  border-bottom: 1px solid var(--sand);
}
 
.store-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
  max-width: 900px;
  margin: 3rem auto 0;
}
 
.store-info-block h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--brown);
  margin-bottom: 1rem;
}
.store-info-block p, .store-info-block address {
  font-style: normal;
  color: var(--text-light);
  line-height: 1.8;
  font-size: 0.9rem;
}
 
.insta-link {
  display: inline-flex; align-items: center; gap: 0.6rem;
  margin-top: 1.5rem;
  color: var(--terra);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.9rem;
  transition: gap 0.2s;
}
.insta-link:hover { gap: 0.9rem; }
 
.insta-icon {
  width: 36px; height: 36px;
  background: linear-gradient(135deg, #f58529, #dd2a7b, #8134af);
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
} 
/* ── CONTACT ───────────────────────────────────────────── */
.contact-section {
  padding: 7rem 6rem;
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}
 
.contact-intro {
  color: var(--text-light);
  line-height: 1.7;
  font-size: 0.95rem;
}
 
.contact-form {
  margin-top: 3rem;
  text-align: left;
  display: flex; flex-direction: column; gap: 1.2rem;
}
 
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
 
.form-group { display: flex; flex-direction: column; gap: 0.4rem; }
 
.form-group label {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-light);
}
 
.form-group input,
.form-group textarea {
  background: var(--warm-white);
  border: 1.5px solid var(--sand);
  border-radius: 10px;
  padding: 0.8rem 1rem;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.9rem;
  color: var(--text);
  outline: none;
  transition: border-color 0.2s;
  resize: none;
}
.form-group input:focus,
.form-group textarea:focus { border-color: var(--terra); }
.form-group textarea { min-height: 130px; }
.form-submit { align-self: flex-start; }
 
.success-msg {
  display: none;
  background: #f0faf5;
  border: 1px solid #a8d8bc;
  color: #2d6a4f;
  padding: 1rem 1.5rem;
  border-radius: 10px;
  font-size: 0.9rem;
}
 
/* ── FOOTER ────────────────────────────────────────────── */
footer {
  background: var(--brown);
  color: rgba(255,255,255,0.6);
  padding: 3rem 6rem;
  display: flex;
  align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 1rem;
}
.footer-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  font-weight: 300;
  color: white;
}
.footer-logo span { font-style: italic; color: var(--terra); }
footer p { font-size: 0.8rem; }
.footer-links { display: flex; gap: 1.5rem; font-size: 0.8rem; }
footer a { color: rgba(255,255,255,0.5); text-decoration: none; transition: color 0.2s; }
footer a:hover { color: var(--terra); }
 
/* ── MODALS ────────────────────────────────────────────── */
.modal-overlay {
  display: none;
  position: fixed; inset: 0;
  background: rgba(58,42,31,0.4);
  backdrop-filter: blur(6px);
  z-index: 200;
  align-items: center; justify-content: center;
  overflow-y: auto;
  padding: 2rem;
}
.modal-overlay.open { display: flex; }
 
.modal {
  background: var(--warm-white);
  border-radius: 24px;
  padding: 2.5rem;
  width: 90%; max-width: 420px;
  position: relative;
  animation: fadeUp 0.3s ease;
  box-shadow: 0 20px 60px rgba(58,42,31,0.2);
  margin: auto;
}
 
.modal-legal {
  max-width: 560px;
}
 
.modal-close {
  position: absolute; top: 1.2rem; right: 1.2rem;
  background: none; border: none;
  font-size: 1.3rem; cursor: pointer;
  color: var(--text-light);
  line-height: 1;
}
.modal-close:hover { color: var(--terra); }
 
.modal-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem;
  font-weight: 300;
  color: var(--brown);
  margin-bottom: 0.3rem;
}
 
.modal-sub {
  font-size: 0.85rem;
  color: var(--text-light);
  margin-bottom: 2rem;
}
 
.modal-tabs {
  display: flex;
  border: 1.5px solid var(--sand);
  border-radius: 50px;
  margin-bottom: 2rem;
  overflow: hidden;
}
.modal-tab {
  flex: 1;
  padding: 0.55rem;
  border: none;
  background: transparent;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.85rem;
  cursor: pointer;
  color: var(--text-light);
  border-radius: 50px;
  transition: all 0.2s;
}
.modal-tab.active { background: var(--terra); color: white; }
 
.modal-form { display: flex; flex-direction: column; gap: 1rem; }
.modal-form input {
  background: var(--cream);
  border: 1.5px solid var(--sand);
  border-radius: 10px;
  padding: 0.75rem 1rem;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.9rem;
  color: var(--text);
  outline: none;
  transition: border-color 0.2s;
  width: 100%;
}
.modal-form input:focus { border-color: var(--terra); }
 
.auth-error {
  color: #c0392b;
  font-size: 0.85rem;
  min-height: 1.2em;
}
 
/* ── LEGAL CONTENT ─────────────────────────────────────── */
.legal-content {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  max-height: 60vh;
  overflow-y: auto;
  padding-right: 0.5rem;
  font-size: 0.88rem;
  color: var(--text);
  line-height: 1.7;
  margin-top: 1.5rem;
}
.legal-content strong { color: var(--brown); }
.legal-note {
  background: #fdf3e7;
  border-left: 3px solid var(--terra);
  padding: 0.7rem 1rem;
  border-radius: 0 8px 8px 0;
  font-size: 0.8rem;
  color: var(--text-light);
}
 
/* ── ANIMATIONS ────────────────────────────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
 
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }
 
/* ── RESPONSIVE ────────────────────────────────────────── */
@media (max-width: 900px) {
  nav { padding: 1rem 1.5rem; }
  .nav-links { gap: 1rem; }
  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-slideshow { height: 50vw; min-height: 300px; }
  .hero-text { padding: 3rem 2rem; }
  .section { padding: 4rem 2rem; }
  .about-grid { grid-template-columns: 1fr; gap: 2rem; }
  .store-section { padding: 4rem 2rem; }
  .store-grid { grid-template-columns: 1fr; gap: 2rem; }
  .contact-section { padding: 4rem 2rem; }
  .form-row { grid-template-columns: 1fr; }
  footer { padding: 2rem; flex-direction: column; text-align: center; }
  .footer-links { justify-content: center; }
}
