/* ═══════════════════════════════════════════════════════════════
   Kimchilicious – Handgjord Kimchi & Koreanska Smårätter
   Modern, ljust tema med koreansk karaktär
   ═══════════════════════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+KR:wght@300;400;700&family=Playfair+Display:ital,wght@0,700;1,400&family=Inter:wght@400;500;600;700&display=swap');

/* ── Variabler ── */
:root {
  --red:        #C41E3A;
  --red-dark:   #8B001E;
  --red-light:  #FDEEF1;
  --cream:      #F5EAD8;
  --cream-2:    #FDF7EF;
  --dark:       #1A1A1A;
  --dark-2:     #2C2C2C;
  --white:      #FFFFFF;
  --bg:         #FAFAF7;
  --grey:       #777777;
  --grey-light: #F2EDE8;
  --border:     #E8E0D5;
  --gold:       #C9A45E;
  --success:    #2D6A4F;
  --shadow-sm:  0 1px 4px rgba(0,0,0,0.06);
  --shadow-md:  0 4px 20px rgba(0,0,0,0.09);
  --shadow-lg:  0 8px 40px rgba(0,0,0,0.13);
  --radius:     14px;
  --radius-sm:  8px;
  --tr:         0.22s ease;
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'Inter', 'Noto Sans KR', sans-serif; background: var(--bg); color: var(--dark); min-height: 100vh; line-height: 1.6; }
img  { max-width: 100%; display: block; }
a    { color: inherit; }

/* ── HEADER ─────────────────────────────────────────────────────────────────── */
header {
  background: var(--white);
  position: sticky;
  top: 0;
  z-index: 200;
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}

.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.logo-img-wrap {
  display: flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
}

.logo-img-wrap img {
  height: 52px;
  width: auto;
  object-fit: contain;
}

.header-nav {
  display: flex;
  align-items: center;
  gap: 0.15rem;
  flex: 1;
  justify-content: center;
}

.header-nav a {
  color: var(--grey);
  text-decoration: none;
  padding: 0.5rem 0.9rem;
  border-radius: var(--radius-sm);
  font-size: 0.875rem;
  font-weight: 500;
  transition: color var(--tr), background var(--tr);
  white-space: nowrap;
}

.header-nav a:hover,
.header-nav a.active {
  color: var(--red);
  background: var(--red-light);
}

.header-right {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
}

.cart-btn {
  position: relative;
  background: var(--red);
  color: var(--white);
  border: none;
  border-radius: var(--radius-sm);
  padding: 0.6rem 1.1rem;
  font-size: 0.875rem;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: background var(--tr);
  white-space: nowrap;
}

.cart-btn:hover { background: var(--red-dark); }

.cart-count {
  background: var(--white);
  color: var(--red);
  border-radius: 10px;
  font-size: 0.72rem;
  font-weight: 800;
  padding: 0.1rem 0.45rem;
  min-width: 20px;
  text-align: center;
  line-height: 1.4;
}

.cart-count.hidden { display: none; }

/* ── HERO ─────────────────────────────────────────────────────────────────────── */
#hero {
  background: var(--cream-2);
  border-bottom: 1px solid var(--border);
  padding: 5rem 1.5rem 4.5rem;
  overflow: hidden;
  position: relative;
}

#hero::before {
  content: '';
  position: absolute;
  right: -100px;
  top: -100px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(196,30,58,0.06) 0%, transparent 65%);
  pointer-events: none;
}

.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--red-light);
  color: var(--red);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 0.4rem 1rem;
  border-radius: 20px;
  margin-bottom: 1.25rem;
}

.hero-ko {
  font-family: 'Noto Sans KR', sans-serif;
  font-size: 1rem;
  font-weight: 300;
  color: var(--grey);
  letter-spacing: 3px;
  margin-bottom: 0.4rem;
}

.hero-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  font-weight: 700;
  color: var(--dark);
  line-height: 1.1;
  margin-bottom: 1.25rem;
}

.hero-title em {
  font-style: italic;
  color: var(--red);
}

.hero-desc {
  font-size: 1rem;
  color: var(--grey);
  line-height: 1.75;
  max-width: 440px;
  margin-bottom: 2rem;
}

.hero-cta-group {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  align-items: center;
}

.hero-image-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 220px 160px;
  gap: 12px;
}

.hero-img-card {
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
}

.hero-img-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.hero-img-card:hover img { transform: scale(1.04); }

.hero-img-card.tall {
  grid-row: span 2;
}

.hero-img-label {
  position: absolute;
  bottom: 0.75rem;
  left: 0.75rem;
  background: rgba(255,255,255,0.9);
  backdrop-filter: blur(8px);
  padding: 0.25rem 0.65rem;
  border-radius: 20px;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--dark);
}

/* ── TRUST BAR ── */
.trust-bar {
  background: var(--dark);
  color: rgba(255,255,255,0.75);
  padding: 0.9rem 1.5rem;
}

.trust-bar-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.82rem;
  font-weight: 500;
  white-space: nowrap;
}

.trust-item span:first-child { font-size: 1.1rem; }

/* ── SEKTIONER ── */
section { padding: 4.5rem 1.5rem; }

.section-inner { max-width: 1200px; margin: 0 auto; }

.section-label {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 0.6rem;
}

.section-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(1.7rem, 3.5vw, 2.4rem);
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 0.6rem;
  line-height: 1.2;
}

.section-subtitle {
  color: var(--grey);
  font-size: 1rem;
  line-height: 1.7;
  max-width: 500px;
}

.section-header { margin-bottom: 2.5rem; }
.section-header.center { text-align: center; }
.section-header.center .section-subtitle { margin: 0 auto; }

/* ── KNAPPAR ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  padding: 0.75rem 1.75rem;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  text-decoration: none;
  transition: all var(--tr);
  white-space: nowrap;
}

.btn-primary { background: var(--red); color: var(--white); }
.btn-primary:hover { background: var(--red-dark); transform: translateY(-1px); }
.btn-primary:active { transform: scale(0.97); }

.btn-outline {
  background: transparent;
  color: var(--red);
  border: 1.5px solid var(--red);
}
.btn-outline:hover { background: var(--red-light); }

.btn-dark { background: var(--dark); color: var(--white); }
.btn-dark:hover { background: var(--dark-2); }

.btn-ghost { background: var(--grey-light); color: var(--dark); }
.btn-ghost:hover { background: var(--border); }

.btn-danger { background: #d9534f; color: var(--white); }
.btn-danger:hover { background: #b52b27; }

.btn-sm { padding: 0.5rem 1rem; font-size: 0.8rem; }

/* ── FILTER TABS ── */
.filter-tabs {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}

.filter-tab {
  padding: 0.5rem 1.2rem;
  border: 1.5px solid var(--border);
  background: var(--white);
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  color: var(--grey);
  transition: all var(--tr);
}

.filter-tab:hover { border-color: var(--red); color: var(--red); }
.filter-tab.active { background: var(--red); border-color: var(--red); color: var(--white); }

/* ── PRODUKTGRID ── */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.75rem;
}

.product-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  transition: transform var(--tr), box-shadow var(--tr);
  display: flex;
  flex-direction: column;
}

.product-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.product-card.hidden { display: none; }

.product-image {
  height: 200px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.product-card:hover .product-image img { transform: scale(1.05); }

.product-image-fallback {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
  filter: drop-shadow(0 4px 12px rgba(0,0,0,0.3));
}

.product-tag {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  background: var(--red);
  color: var(--white);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  padding: 0.22rem 0.6rem;
  border-radius: 10px;
  text-transform: uppercase;
  z-index: 1;
}

.product-tag.vegan { background: var(--success); }
.product-tag.ny    { background: var(--gold); color: var(--dark); }

.product-body {
  padding: 1.25rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.product-name {
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--dark);
  margin-bottom: 0.15rem;
}

.product-name-ko {
  font-family: 'Noto Sans KR', sans-serif;
  font-size: 0.78rem;
  font-weight: 300;
  color: var(--grey);
  margin-bottom: 0.6rem;
}

.product-desc {
  font-size: 0.83rem;
  color: #666;
  line-height: 1.55;
  flex: 1;
  margin-bottom: 1rem;
}

.product-sizes {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.size-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
}

.size-label {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--dark);
}

.size-price {
  font-weight: 700;
  font-size: 1rem;
  color: var(--gold);
}

.size-price::after { content: ' kr'; font-size: 0.78rem; font-weight: 400; color: var(--grey); }

.btn-add-cart {
  background: var(--red);
  color: var(--white);
  border: none;
  padding: 0.45rem 0.9rem;
  border-radius: 6px;
  font-size: 0.78rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--tr);
  white-space: nowrap;
}

.btn-add-cart:hover { background: var(--red-dark); }
.btn-add-cart:active { transform: scale(0.95); }

/* ── CART DRAWER ── */
.cart-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.45);
  z-index: 300;
  backdrop-filter: blur(3px);
}

.cart-overlay.open { display: block; }

.cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(420px, 100vw);
  background: var(--white);
  z-index: 301;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.3s ease;
  box-shadow: -8px 0 40px rgba(0,0,0,0.15);
}

.cart-overlay.open .cart-drawer { transform: translateX(0); }

.cart-header {
  padding: 1.25rem 1.5rem;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.cart-header h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  font-weight: 700;
}

.cart-close {
  background: none;
  border: none;
  font-size: 1.3rem;
  cursor: pointer;
  color: var(--grey);
  padding: 0.2rem;
  line-height: 1;
  transition: color var(--tr);
}
.cart-close:hover { color: var(--dark); }

.cart-items {
  flex: 1;
  overflow-y: auto;
  padding: 1rem 1.5rem;
}

.cart-empty {
  text-align: center;
  padding: 3rem 1rem;
  color: var(--grey);
}

.cart-empty-icon { font-size: 3rem; margin-bottom: 0.75rem; }

.cart-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.9rem 0;
  border-bottom: 1px solid var(--grey-light);
}

.cart-item:last-child { border-bottom: none; }

.cart-item-emoji {
  font-size: 2rem;
  flex-shrink: 0;
  background: var(--grey-light);
  width: 48px;
  height: 48px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cart-item-info { flex: 1; min-width: 0; }

.cart-item-name {
  font-weight: 600;
  font-size: 0.88rem;
  color: var(--dark);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.cart-item-size {
  font-size: 0.75rem;
  color: var(--grey);
}

.cart-item-price {
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--gold);
  flex-shrink: 0;
}

.cart-qty-controls {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  flex-shrink: 0;
}

.qty-btn {
  width: 26px;
  height: 26px;
  border: 1.5px solid var(--border);
  background: var(--white);
  border-radius: 50%;
  font-size: 0.85rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: var(--dark);
  transition: all var(--tr);
  flex-shrink: 0;
}
.qty-btn:hover { border-color: var(--red); color: var(--red); }

.qty-num { font-size: 0.85rem; font-weight: 600; min-width: 18px; text-align: center; }

.cart-footer {
  padding: 1.25rem 1.5rem;
  border-top: 1px solid var(--border);
}

.cart-total-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 1rem;
}

.cart-total-label { font-size: 0.85rem; color: var(--grey); font-weight: 500; }

.cart-total-price {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--dark);
}

/* ── CHECKOUT MODAL ── */
.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  z-index: 400;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  backdrop-filter: blur(4px);
}

.modal-overlay.open { display: flex; }

.modal {
  background: var(--white);
  border-radius: var(--radius);
  width: 100%;
  max-width: 560px;
  max-height: 92vh;
  overflow-y: auto;
  box-shadow: var(--shadow-lg);
  animation: modalIn 0.25s ease;
}

@keyframes modalIn {
  from { transform: translateY(20px) scale(0.97); opacity: 0; }
  to   { transform: translateY(0) scale(1); opacity: 1; }
}

.modal-header {
  padding: 1.5rem 1.75rem 1rem;
  border-bottom: 1px solid var(--grey-light);
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
}

.modal-header h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--dark);
}

.modal-close {
  background: none;
  border: none;
  font-size: 1.3rem;
  cursor: pointer;
  color: var(--grey);
  padding: 0.2rem;
  line-height: 1;
  flex-shrink: 0;
  transition: color var(--tr);
}
.modal-close:hover { color: var(--dark); }

.modal-body   { padding: 1.5rem 1.75rem; }
.modal-footer { padding: 1rem 1.75rem 1.5rem; display: flex; flex-direction: column; gap: 0.6rem; }

/* Stegvisning */
.checkout-steps {
  display: flex;
  margin-bottom: 1.75rem;
  gap: 0;
}

.checkout-step {
  flex: 1;
  text-align: center;
  padding: 0.6rem 0;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--grey);
  border-bottom: 2px solid var(--border);
  transition: all var(--tr);
}

.checkout-step.active {
  color: var(--red);
  border-bottom-color: var(--red);
}

.checkout-step.done {
  color: var(--success);
  border-bottom-color: var(--success);
}

/* Formulärfält */
.form-group { margin-bottom: 1rem; }

.form-label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: #555;
  margin-bottom: 0.35rem;
}

.form-label .req { color: var(--red); margin-left: 2px; }

.form-input, .form-select, .form-textarea {
  width: 100%;
  padding: 0.7rem 0.9rem;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 0.92rem;
  font-family: inherit;
  color: var(--dark);
  background: var(--white);
  transition: border-color var(--tr);
  outline: none;
}

.form-input:focus, .form-select:focus, .form-textarea:focus {
  border-color: var(--red);
}

.form-textarea { resize: vertical; min-height: 75px; }
.form-error    { color: #d9534f; font-size: 0.78rem; margin-top: 0.3rem; }

/* Upphämtningsplatser – visuella kort */
.location-groups { display: flex; flex-direction: column; gap: 1.25rem; }

.location-city-label {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--grey);
  margin-bottom: 0.5rem;
}

.location-cards {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.location-card {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.85rem 1rem;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all var(--tr);
  background: var(--white);
}

.location-card:hover { border-color: var(--red); background: var(--red-light); }
.location-card.selected { border-color: var(--red); background: var(--red-light); }

.location-radio {
  width: 18px;
  height: 18px;
  border: 2px solid var(--border);
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--tr);
}

.location-card.selected .location-radio {
  border-color: var(--red);
  background: var(--red);
}

.location-card.selected .location-radio::after {
  content: '';
  width: 7px;
  height: 7px;
  background: var(--white);
  border-radius: 50%;
}

.location-info { flex: 1; }
.location-name { font-weight: 700; font-size: 0.9rem; color: var(--dark); }
.location-addr { font-size: 0.78rem; color: var(--grey); margin-top: 0.1rem; }
.location-meta { font-size: 0.75rem; color: var(--red); font-weight: 500; margin-top: 0.2rem; }

/* Betalmetod */
.payment-options {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.payment-option {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 1rem 1.1rem;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all var(--tr);
}

.payment-option:hover { border-color: var(--red); background: var(--red-light); }
.payment-option.selected { border-color: var(--red); background: var(--red-light); }

.payment-icon { font-size: 1.6rem; flex-shrink: 0; }

.payment-title { font-weight: 700; font-size: 0.9rem; color: var(--dark); }
.payment-desc  { font-size: 0.75rem; color: var(--grey); margin-top: 0.1rem; }

/* Ordersummering */
.order-summary-list {
  background: var(--bg);
  border-radius: var(--radius-sm);
  padding: 1rem 1.1rem;
  border: 1px solid var(--border);
  margin-bottom: 1rem;
}

.order-summary-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.85rem;
  padding: 0.3rem 0;
  color: var(--dark);
}

.order-summary-total {
  display: flex;
  justify-content: space-between;
  font-weight: 700;
  font-size: 1rem;
  padding: 0.5rem 0 0;
  margin-top: 0.4rem;
  border-top: 1px solid var(--border);
}

/* Bekräftelse */
.confirm-icon    { text-align: center; font-size: 3.5rem; margin-bottom: 0.75rem; }
.confirm-heading { text-align: center; font-family: 'Playfair Display', serif; font-size: 1.4rem; font-weight: 700; color: var(--success); margin-bottom: 0.4rem; }
.confirm-sub     { text-align: center; font-size: 0.88rem; color: var(--grey); margin-bottom: 1.25rem; line-height: 1.6; }

.email-preview {
  background: #f8f9fa;
  border: 1px solid #dee2e6;
  border-radius: var(--radius-sm);
  padding: 1.1rem;
  margin-bottom: 1rem;
  font-size: 0.8rem;
  line-height: 1.7;
  color: #444;
}

.email-subject {
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--dark);
  margin-bottom: 0.6rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid #dee2e6;
}

.test-note {
  text-align: center;
  font-size: 0.75rem;
  color: var(--grey);
  font-style: italic;
  padding: 0.5rem;
  background: #fff3cd;
  border-radius: 4px;
  margin-top: 0.5rem;
}

/* ── OM OSS ── */
#about { background: var(--white); }

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-img-stack {
  position: relative;
  height: 420px;
}

.about-img-main, .about-img-accent {
  position: absolute;
  border-radius: var(--radius);
  overflow: hidden;
}

.about-img-main {
  width: 80%;
  height: 100%;
  top: 0;
  left: 0;
}

.about-img-main img { width: 100%; height: 100%; object-fit: cover; }

.about-img-accent {
  width: 55%;
  height: 200px;
  bottom: -30px;
  right: -20px;
  border: 5px solid var(--white);
  box-shadow: var(--shadow-md);
}

.about-img-accent img { width: 100%; height: 100%; object-fit: cover; }

.about-badge {
  background: var(--cream);
  border-radius: var(--radius);
  padding: 1.25rem;
  margin-top: 1.5rem;
  border-left: 3px solid var(--red);
}

.about-badge-text {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 1rem;
  color: var(--dark-2);
  line-height: 1.6;
}

.about-badge-author {
  font-size: 0.78rem;
  color: var(--grey);
  margin-top: 0.4rem;
}

/* ── SYSTERRESTAURANG / K BAP-LÄNK ── */
#sister {
  background: var(--cream-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.sister-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}

.sister-text .section-title { font-size: 1.6rem; }

.sister-logo-preview {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  background: var(--dark);
  padding: 1.25rem 1.75rem;
  border-radius: var(--radius);
  flex-shrink: 0;
  text-decoration: none;
  transition: all var(--tr);
}

.sister-logo-preview:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }

.sister-logo-mark {
  background: var(--red);
  color: var(--white);
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 700;
  width: 48px;
  height: 48px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.sister-logo-name { font-family: 'Playfair Display', serif; font-size: 1.2rem; font-weight: 700; color: var(--white); }
.sister-logo-ko   { font-family: 'Noto Sans KR', sans-serif; font-size: 0.7rem; font-weight: 300; color: var(--gold); letter-spacing: 1px; margin-top: 0.1rem; }

/* ── KONTAKT ── */
#contact { background: var(--white); }

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  margin-top: 0.5rem;
}

.contact-card {
  background: var(--bg);
  border-radius: var(--radius);
  padding: 1.75rem 1.5rem;
  text-align: center;
  border: 1px solid var(--border);
  transition: all var(--tr);
}

.contact-card:hover {
  border-color: var(--red);
  background: var(--red-light);
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}

.contact-icon  { font-size: 1.8rem; margin-bottom: 0.6rem; display: block; }
.contact-label { font-size: 0.72rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1.5px; color: var(--grey); margin-bottom: 0.3rem; }
.contact-value { font-size: 0.95rem; font-weight: 600; color: var(--dark); }
.contact-value a { color: var(--red); text-decoration: none; }
.contact-value a:hover { text-decoration: underline; }
.contact-note  { font-size: 0.75rem; color: var(--grey); margin-top: 0.25rem; }

/* ── FOOTER ── */
footer {
  background: var(--dark);
  color: rgba(255,255,255,0.45);
  padding: 3rem 1.5rem 2rem;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 2rem;
  align-items: start;
  margin-bottom: 2rem;
}

.footer-logo-wrap img { height: 56px; opacity: 0.9; }

.footer-tagline {
  font-family: 'Noto Sans KR', sans-serif;
  font-size: 0.78rem;
  color: var(--gold);
  letter-spacing: 2px;
  margin-top: 0.5rem;
}

.footer-links { display: flex; flex-direction: column; gap: 0.4rem; align-items: flex-end; }
.footer-links a { color: rgba(255,255,255,0.55); text-decoration: none; font-size: 0.85rem; transition: color var(--tr); }
.footer-links a:hover { color: var(--white); }

.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(255,255,255,0.08);
  font-size: 0.8rem;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.5rem;
}

/* ── TOAST ── */
#toast {
  display: none;
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  background: var(--dark);
  color: var(--white);
  padding: 0.9rem 1.4rem;
  border-radius: var(--radius-sm);
  font-size: 0.88rem;
  font-weight: 500;
  box-shadow: var(--shadow-lg);
  z-index: 9999;
  animation: slideIn 0.28s ease;
  max-width: 340px;
  border-left: 3px solid var(--red);
}

@keyframes slideIn {
  from { transform: translateX(100px); opacity: 0; }
  to   { transform: translateX(0); opacity: 1; }
}

/* ── ADMIN ─────────────────────────────────────────────────────────────────── */
.admin-wrapper { max-width: 800px; margin: 2.5rem auto; padding: 0 1.5rem; }

.admin-card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  padding: 1.75rem;
  margin-bottom: 1.5rem;
  border: 1px solid var(--border);
}

.admin-card h2 {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 1.25rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--grey-light);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logout-btn {
  background: none;
  border: 1px solid var(--border);
  padding: 0.3rem 0.75rem;
  border-radius: var(--radius-sm);
  font-size: 0.78rem;
  cursor: pointer;
  color: var(--grey);
  transition: all var(--tr);
  font-family: inherit;
}
.logout-btn:hover { background: var(--grey-light); color: var(--dark); }

.login-form label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: #555;
  margin-bottom: 0.35rem;
}

.login-form input {
  width: 100%;
  padding: 0.7rem 0.9rem;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 1rem;
  margin-bottom: 1rem;
  outline: none;
  transition: border-color var(--tr);
  font-family: inherit;
}
.login-form input:focus { border-color: var(--red); }

.admin-location-row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--grey-light);
  flex-wrap: wrap;
}

.admin-location-row:last-child { border-bottom: none; }

.location-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.25rem 0.65rem;
  border-radius: 12px;
  font-size: 0.75rem;
  font-weight: 700;
  flex-shrink: 0;
}

.pill-active   { background: #d4edda; color: #155724; }
.pill-inactive { background: #f8d7da; color: #721c24; }

.admin-loc-name { font-weight: 700; font-size: 0.9rem; flex: 1; min-width: 120px; }
.admin-loc-meta { font-size: 0.75rem; color: var(--grey); flex: 2; }

.admin-product-row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--grey-light);
  flex-wrap: wrap;
}

.admin-product-row:last-child { border-bottom: none; }
.admin-product-emoji { font-size: 1.5rem; flex-shrink: 0; }
.admin-product-name  { font-weight: 700; font-size: 0.9rem; flex: 1; min-width: 120px; }
.admin-product-stock { display: flex; align-items: center; gap: 0.4rem; flex-shrink: 0; }
.admin-product-stock input { width: 60px; padding: 0.35rem 0.5rem; border: 1.5px solid var(--border); border-radius: var(--radius-sm); font-size: 0.85rem; text-align: center; font-family: inherit; outline: none; }
.admin-product-stock input:focus { border-color: var(--red); }

.order-row {
  padding: 0.85rem 0;
  border-bottom: 1px solid var(--grey-light);
  font-size: 0.83rem;
}
.order-row:last-child { border-bottom: none; }
.order-id   { font-weight: 700; color: var(--red); }
.order-meta { color: var(--grey); font-size: 0.75rem; margin-top: 0.2rem; }

.success-msg { color: var(--success); font-size: 0.82rem; font-weight: 600; min-height: 1.2rem; margin-top: 0.5rem; text-align: center; }
.error-msg   { color: #d9534f; font-size: 0.82rem; min-height: 1.2rem; }

#login-section {}
#admin-section { display: none; }

/* ── RESPONSIVT ─────────────────────────────────────────────────────────────── */
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; gap: 2rem; }
  .hero-image-grid { grid-template-rows: 180px 130px; }
  .about-grid { grid-template-columns: 1fr; }
  .about-img-stack { height: 280px; }
  .footer-inner { grid-template-columns: 1fr; }
  .footer-links { align-items: flex-start; }
  .sister-inner { flex-direction: column; }
}

@media (max-width: 640px) {
  .header-nav { display: none; }
  .header-inner { height: 60px; }
  .hero-image-grid { display: none; }
  section { padding: 3rem 1.25rem; }
  .product-grid { grid-template-columns: 1fr; }
  .admin-location-row, .admin-product-row { flex-direction: column; align-items: flex-start; }
}
