/* ════════════════════════════════════════════════════════════
   RIVKA CAKES — WEDDING THEME STYLESHEET
   ════════════════════════════════════════════════════════════ */

*,*::before,*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  /* Wedding Color Palette */
  --primary: #8B7D6B;           /* Warm taupe/brown */
  --primary-dark: #6B5D52;      /* Darker brown */
  --accent: #D4A574;            /* Warm gold */
  --accent-light: #E8C5A0;      /* Light gold */
  --cream: #F5F3EE;             /* Warm cream */
  --cream-light: #FAF8F5;       /* Light cream */
  --peach: #F4E4D7;             /* Soft peach */
  --text: #4A4340;              /* Dark text */
  --text-light: #7A7370;        /* Light text */
  --white: #FFFFFF;
  --border: rgba(139, 125, 107, 0.1);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--cream);
  color: var(--text);
  margin: 0;
  overflow-x: hidden;
}

/* ───────────────── NAVIGATION ───────────────── */
nav {
  position: sticky;
  top: 0;
  z-index: 300;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 32px;
  height: 64px;
  background: rgba(107, 93, 82, 0.97);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 20px rgba(107, 93, 82, 0.3);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  cursor: pointer;
}

.nav-k {
  width: 32px;
  height: 32px;
  background: var(--accent);
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--white);
}

.nav-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  font-weight: 400;
  color: #fff;
}

.nav-title span {
  color: var(--accent-light);
}

.nav-links {
  display: flex;
  gap: 0;
  list-style: none;
}

.nav-links li a {
  display: block;
  padding: 0 16px;
  height: 64px;
  line-height: 64px;
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  color: rgba(255, 255, 255, 0.7);
  transition: color 0.2s, background 0.2s;
  cursor: pointer;
}

.nav-links li a:hover,
.nav-links li a.active {
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 10px;
}

.ai-nav-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 20px;
  padding: 0.45rem 1rem;
  cursor: pointer;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.72rem;
  font-weight: 400;
  color: #fff;
  transition: background 0.2s;
}

.ai-nav-btn:hover {
  background: rgba(255, 255, 255, 0.25);
}

.cart-btn {
  position: relative;
  background: var(--accent);
  border: none;
  border-radius: 20px;
  padding: 0.5rem 1.1rem;
  cursor: pointer;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--white);
  display: flex;
  align-items: center;
  gap: 6px;
  transition: background 0.2s, transform 0.2s;
}

.cart-btn:hover {
  background: var(--accent-light);
  transform: translateY(-1px);
}

.cart-count {
  position: absolute;
  top: -6px;
  right: -6px;
  width: 18px;
  height: 18px;
  background: var(--primary-dark);
  border-radius: 50%;
  font-size: 0.6rem;
  font-weight: 700;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}

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

.ham {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
  background: none;
  border: none;
}

.ham span {
  display: block;
  width: 22px;
  height: 2px;
  background: rgba(255, 255, 255, 0.8);
  transition: all 0.3s;
}

/* ───────────────── PAGES ───────────────── */
.page {
  display: none;
  animation: fadeIn 0.4s ease;
}

.page.active {
  display: block;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ───────────────── HERO ───────────────── */
.hero {
  background:
    linear-gradient(150deg, rgba(107, 93, 82, 0.9) 0%, rgba(139, 125, 107, 0.78) 52%, rgba(74, 67, 64, 0.72) 100%),
    url('assets/images/hero-cake.png') center 42% / cover;
  padding: 60px 32px 72px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle 500px at 10% 60%, rgba(255, 255, 255, 0.07), transparent),
              radial-gradient(circle 350px at 90% 20%, rgba(244, 228, 215, 0.2), transparent);
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 50px;
  padding: 0.4rem 1.1rem;
  margin-bottom: 1.8rem;
  position: relative;
  z-index: 2;
}

.hero-badge-k {
  width: 18px;
  height: 18px;
  background: var(--accent);
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.55rem;
  font-weight: 700;
  color: var(--white);
}

.hero-badge-t {
  font-size: 0.65rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.9);
}

.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(3rem, 9vw, 6.5rem);
  font-weight: 700;
  color: #fff;
  line-height: 0.95;
  position: relative;
  z-index: 2;
  margin-bottom: 0.4rem;
}

.hero h1 em {
  font-style: italic;
  font-weight: 400;
  color: var(--accent-light);
  display: block;
  font-size: 0.58em;
  margin-top: 0.3em;
}

.hero-sub {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.05rem;
  margin: 1rem 0 2rem;
  position: relative;
  z-index: 2;
}

.hero-btns {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
  z-index: 2;
}

.btn-white {
  background: #fff;
  color: var(--primary-dark);
  padding: 0.9rem 2rem;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  display: inline-block;
  transition: all 0.2s;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.btn-white:hover {
  background: var(--peach);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.2);
}

.btn-outline-w {
  border: 2px solid rgba(255, 255, 255, 0.6);
  color: #fff;
  padding: 0.9rem 2rem;
  border-radius: 50px;
  background: transparent;
  cursor: pointer;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  display: inline-block;
  transition: all 0.2s;
}

.btn-outline-w:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: #fff;
}

.hero-stats {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 3.5rem;
  position: relative;
  z-index: 2;
}

.hero-stat {
  padding: 0 2rem;
  text-align: center;
  border-right: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-stat:last-child {
  border-right: none;
}

.hero-stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--accent-light);
  line-height: 1;
}

.hero-stat-label {
  font-size: 0.63rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  margin-top: 4px;
}

.hero-wave {
  position: relative;
  z-index: 2;
  margin-top: 3rem;
}

.hero-wave svg {
  display: block;
  width: 100%;
}

/* ───────────────── STRIP ───────────────── */
.strip {
  background: var(--peach);
  padding: 0.8rem 0;
  overflow: hidden;
  white-space: nowrap;
  border-bottom: 1px solid var(--border);
}

.strip-inner {
  display: inline-flex;
  gap: 2.5rem;
  animation: ticker 24s linear infinite;
}

@keyframes ticker {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

.strip-item {
  font-size: 0.66rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--primary);
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 2.5rem;
}

.strip-item::after {
  content: '✦';
  font-size: 0.45rem;
  color: var(--accent);
}

/* ───────────────── SECTION STYLES ───────────────── */
.section {
  padding: 64px 32px;
}

.section-label {
  font-size: 0.63rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 0.6rem;
  display: flex;
  align-items: center;
  gap: 0.7rem;
  justify-content: center;
}

.section-label::before,
.section-label::after {
  content: '';
  height: 1px;
  width: 1.5rem;
  background: var(--accent);
}

.section-label.left {
  justify-content: flex-start;
}

.section-label.left::before {
  display: none;
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.9rem, 4vw, 2.8rem);
  font-weight: 700;
  color: var(--primary-dark);
  text-align: center;
  line-height: 1.1;
}

.section-title.left {
  text-align: left;
}

.section-title em {
  font-style: italic;
  color: var(--accent);
}

.section-sub {
  font-size: 0.9rem;
  color: var(--text-light);
  text-align: center;
  margin-top: 0.6rem;
  line-height: 1.75;
  max-width: 50ch;
  margin-left: auto;
  margin-right: auto;
}

.section-sub.left {
  text-align: left;
  margin-left: 0;
}

/* ───────────────── MENU GRID ───────────────── */
.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  gap: 20px;
  margin-top: 40px;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}

.cake-card {
  background: var(--white);
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--border);
  transition: transform 0.3s cubic-bezier(0.23, 1, 0.32, 1), box-shadow 0.3s;
}

.cake-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(139, 125, 107, 0.15);
}

.cake-img-wrap {
  width: 100%;
  height: 220px;
  position: relative;
  overflow: hidden;
  background: var(--peach);
  display: flex;
  align-items: center;
  justify-content: center;
}

.cake-img-wrap svg,
.cake-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cake-img-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.spinner {
  width: 28px;
  height: 28px;
  border: 2px solid var(--peach);
  border-top-color: var(--primary);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

.gen-label {
  font-size: 0.7rem;
  color: var(--text-light);
}

.pareve-tag {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 2;
  background: var(--primary-dark);
  color: var(--accent-light);
  font-size: 0.58rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 500;
  padding: 0.28rem 0.7rem;
  border-radius: 20px;
}

.cake-body {
  padding: 16px 18px 18px;
}

.cake-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--primary-dark);
  margin-bottom: 0.3rem;
  line-height: 1.25;
}

.cake-name-sub {
  font-style: italic;
  font-weight: 400;
  font-size: 0.88rem;
  color: var(--accent);
}

.cake-desc {
  font-size: 0.8rem;
  font-weight: 300;
  color: var(--text-light);
  line-height: 1.6;
  margin-bottom: 12px;
}

.cake-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--peach);
  padding-top: 12px;
}

.cake-price {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--primary);
}

.cake-size {
  font-size: 0.68rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--text-light);
}

.add-btn {
  background: var(--primary);
  border: none;
  border-radius: 20px;
  padding: 0.5rem 1.1rem;
  cursor: pointer;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #fff;
  transition: background 0.2s, transform 0.15s;
}

.add-btn:hover {
  background: var(--primary-dark);
  transform: translateY(-1px);
}

/* ───────────────── PROCESS ───────────────── */
.process-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
  margin-top: 36px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.p-step {
  background: #fff;
  padding: 28px 22px;
  border-radius: 16px;
  border: 1px solid var(--border);
  transition: transform 0.25s, box-shadow 0.25s;
}

.p-step:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(139, 125, 107, 0.12);
}

.p-num {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: rgba(139, 125, 107, 0.12);
  line-height: 1;
  margin-bottom: 10px;
}

.p-icon {
  font-size: 1.5rem;
  display: block;
  margin-bottom: 8px;
}

.p-title {
  font-family: 'Playfair Display', serif;
  font-size: 0.98rem;
  font-weight: 700;
  color: var(--primary-dark);
  margin-bottom: 0.4rem;
}

.p-text {
  font-size: 0.78rem;
  font-weight: 300;
  color: var(--text-light);
  line-height: 1.6;
}

/* EVENTS */
.events-preview {
  background: var(--cream-light);
}

.event-preview-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  max-width: 1000px;
  margin: 38px auto 0;
  border: 1px solid var(--border);
  border-radius: 18px;
  overflow: hidden;
  background: var(--border);
}

.event-preview-item {
  min-height: 132px;
  padding: 24px;
  border: 0;
  background: rgba(255, 255, 255, 0.86);
  cursor: pointer;
  font-family: inherit;
  text-align: left;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 28px;
  color: var(--primary-dark);
  transition: background 0.2s, color 0.2s;
}

.event-preview-item:hover {
  background: var(--primary-dark);
  color: #fff;
}

.event-preview-item span {
  font-size: 0.66rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 700;
}

.event-preview-item strong {
  font-family: 'Playfair Display', serif;
  font-size: 1.22rem;
  font-weight: 700;
  line-height: 1.15;
}

.events-hero {
  background:
    linear-gradient(135deg, rgba(107, 93, 82, 0.94), rgba(139, 125, 107, 0.82)),
    url('assets/images/bar-mitzvah-event.png') center / cover;
  color: #fff;
  padding: 64px 32px 76px;
}

.events-hero-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(300px, 0.65fr);
  gap: 48px;
  align-items: end;
}

.events-hero .section-label {
  color: var(--accent-light);
}

.events-hero .section-label::after {
  background: rgba(255, 255, 255, 0.35);
}

.events-hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.7rem, 6vw, 5.3rem);
  line-height: 0.98;
  font-weight: 700;
  max-width: 760px;
  margin-top: 16px;
}

.events-hero p {
  color: rgba(255, 255, 255, 0.76);
  line-height: 1.75;
  max-width: 58ch;
  margin-top: 20px;
}

.events-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.events-hero-panel {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 18px;
  padding: 24px;
  backdrop-filter: blur(10px);
}

.events-panel-label {
  font-size: 0.64rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent-light);
  margin-bottom: 12px;
}

.events-panel-row {
  padding: 16px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.events-panel-row span {
  display: block;
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 6px;
}

.events-panel-row strong {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem;
  line-height: 1.25;
  color: #fff;
}

.events-page {
  background: var(--cream);
}

.occasion-list {
  max-width: 1060px;
  margin: 42px auto 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.occasion-item {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 26px;
  display: grid;
  grid-template-columns: 160px 58px minmax(0, 1fr) auto;
  align-items: center;
  gap: 26px;
  box-shadow: 0 10px 30px rgba(107, 93, 82, 0.06);
}

.occasion-photo {
  height: 128px;
  border-radius: 14px;
  overflow: hidden;
  background: var(--cream);
}

.occasion-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.occasion-number {
  font-family: 'Playfair Display', serif;
  font-size: 2.7rem;
  color: rgba(139, 125, 107, 0.18);
  line-height: 1;
}

.occasion-kicker {
  display: block;
  font-size: 0.63rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 8px;
}

.occasion-body h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.55rem;
  color: var(--primary-dark);
  margin: 0;
}

.occasion-body p {
  color: var(--text-light);
  font-size: 0.88rem;
  font-weight: 300;
  line-height: 1.65;
  max-width: 68ch;
  margin: 8px 0 0;
}

.occasion-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}

.occasion-tags span {
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: 999px;
  color: var(--primary-dark);
  font-size: 0.68rem;
  padding: 0.42rem 0.7rem;
}

.occasion-action {
  justify-self: end;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  max-width: 210px;
  padding: 0.74rem 1rem;
  border-radius: 999px;
  background: var(--primary);
  color: #fff;
  text-decoration: none;
  font-size: 0.74rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-align: center;
  transition: background 0.2s, transform 0.2s;
}

.occasion-action:hover {
  background: var(--primary-dark);
  transform: translateY(-1px);
}

.events-note {
  max-width: 1060px;
  margin: 28px auto 0;
  padding: 24px 28px;
  border-radius: 16px;
  background: var(--peach);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.events-note-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--primary-dark);
}

.events-note p {
  color: var(--text-light);
  font-size: 0.86rem;
  line-height: 1.6;
  margin-top: 4px;
}

.events-note .btn-white {
  flex-shrink: 0;
}

/* ABOUT PAGE */
.about-hero {
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
  padding: 60px 32px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.about-hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 700;
  color: #fff;
  position: relative;
  z-index: 2;
}

.about-hero h1 em {
  font-style: italic;
  color: var(--accent-light);
  display: block;
  font-size: 0.7em;
}

.about-hero p {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.8);
  margin-top: 1rem;
  position: relative;
  z-index: 2;
  max-width: 50ch;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}

.about-wave {
  position: relative;
  z-index: 2;
  margin-top: 3rem;
}

.about-wave svg {
  display: block;
  width: 100%;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
  max-width: 1000px;
  margin: 0 auto;
}

.about-img-box {
  background: linear-gradient(145deg, var(--peach), var(--cream-light));
  border-radius: 20px;
  aspect-ratio: 4 / 5;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 6rem;
  position: relative;
  overflow: hidden;
}

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

.about-accent {
  position: absolute;
  bottom: -1.5rem;
  right: -1.5rem;
  background: var(--primary-dark);
  color: #fff;
  padding: 1.6rem;
  border-radius: 14px;
  min-width: 160px;
}

.about-accent-num {
  font-family: 'Playfair Display', serif;
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--accent-light);
  line-height: 1;
}

.about-accent-label {
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  margin-top: 0.3rem;
}

.about-text {
  font-size: 0.95rem;
  font-weight: 300;
  color: var(--text-light);
  line-height: 1.85;
  margin: 1.2rem 0;
}

.about-text strong {
  font-weight: 500;
  color: var(--primary-dark);
}

.kosher-box {
  background: var(--peach);
  border-left: 3px solid var(--accent);
  border-radius: 0 10px 10px 0;
  padding: 1.2rem 1.4rem;
  margin: 1.4rem 0;
}

.kosher-box-title {
  font-size: 0.68rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 500;
  margin-bottom: 0.4rem;
}

.kosher-box p {
  font-size: 0.85rem;
  font-weight: 300;
  color: var(--text-light);
  line-height: 1.6;
}

.feat-list {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  margin-top: 1.2rem;
}

.feat-item {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.feat-dot {
  width: 8px;
  height: 8px;
  flex-shrink: 0;
  background: var(--primary);
  border-radius: 50%;
}

.feat-text {
  font-size: 0.88rem;
  color: var(--text-light);
}

/* ───────────────── CONTACT PAGE ───────────────── */
.contact-hero {
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
  padding: 60px 32px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.contact-hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.2rem, 6vw, 4rem);
  font-weight: 700;
  color: #fff;
  position: relative;
  z-index: 2;
}

.contact-hero p {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.8);
  margin-top: 0.8rem;
  position: relative;
  z-index: 2;
}

.contact-wave {
  position: relative;
  z-index: 2;
  margin-top: 3rem;
}

.contact-wave svg {
  display: block;
  width: 100%;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  max-width: 1000px;
  margin: 0 auto;
}

.contact-info-card {
  background: #fff;
  border-radius: 16px;
  padding: 2rem;
  border: 1px solid var(--border);
  margin-bottom: 16px;
}

.contact-info-icon {
  font-size: 1.6rem;
  margin-bottom: 0.8rem;
  display: block;
}

.contact-info-label {
  font-size: 0.65rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--primary);
  font-weight: 500;
  margin-bottom: 0.4rem;
}

.contact-info-val {
  font-size: 0.95rem;
  color: var(--primary-dark);
  font-weight: 400;
  line-height: 1.5;
}

.contact-info-val a {
  color: var(--primary);
  text-decoration: none;
}

.contact-info-val a:hover {
  text-decoration: underline;
}

.order-box {
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
  border-radius: 16px;
  padding: 2rem;
}

.order-box-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  font-style: italic;
  font-weight: 700;
  color: var(--accent-light);
  margin-bottom: 0.5rem;
}

.order-box-sub {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.65;
  margin-bottom: 1.6rem;
}

.wa-btn-full {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  background: #25D366;
  border: none;
  border-radius: 30px;
  padding: 1rem;
  cursor: pointer;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.82rem;
  font-weight: 500;
  color: #fff;
  text-decoration: none;
  transition: background 0.2s, transform 0.2s;
  margin-bottom: 0.8rem;
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.3);
}

.wa-btn-full:hover {
  background: #1eb85a;
  transform: translateY(-1px);
}

.ph-btn-full {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 30px;
  padding: 1rem;
  cursor: pointer;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.82rem;
  font-weight: 400;
  color: #fff;
  text-decoration: none;
  transition: background 0.2s;
  background: transparent;
}

.ph-btn-full:hover {
  background: rgba(255, 255, 255, 0.1);
}

.map-placeholder {
  background: var(--peach);
  border-radius: 16px;
  height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 16px;
  border: 1px solid var(--border);
  font-size: 0.85rem;
  color: var(--text-light);
  text-align: center;
  padding: 1rem;
  line-height: 1.6;
}

/* ───────────────── FAQ PAGE ───────────────── */
.faq-list {
  max-width: 740px;
  margin: 3rem auto 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.faq-item {
  background: #fff;
  border-radius: 10px;
  border: 1px solid transparent;
  transition: border-color 0.25s;
  overflow: hidden;
}

.faq-item.open {
  border-color: var(--peach);
}

.faq-q {
  width: 100%;
  background: none;
  border: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.2rem 1.5rem;
  cursor: pointer;
  text-align: left;
  gap: 1rem;
}

.faq-q-text {
  font-size: 0.93rem;
  font-weight: 500;
  color: var(--primary-dark);
}

.faq-q-icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  background: var(--peach);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  color: var(--primary);
  transition: transform 0.3s, background 0.2s;
}

.faq-item.open .faq-q-icon {
  transform: rotate(45deg);
  background: var(--primary);
  color: #fff;
}

.faq-a {
  font-size: 0.86rem;
  font-weight: 300;
  color: var(--text-light);
  line-height: 1.75;
  padding: 0 1.5rem 1.2rem;
  display: none;
}

.faq-item.open .faq-a {
  display: block;
}

/* ───────────────── CTA BAND ───────────────── */
.cta-band {
  background: linear-gradient(135deg, var(--primary-dark), var(--primary), #9B8D7E);
  padding: 56px 32px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-band h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  font-weight: 700;
  font-style: italic;
  color: #fff;
  margin-bottom: 0.6rem;
  position: relative;
  z-index: 2;
}

.cta-band p {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 2rem;
  position: relative;
  z-index: 2;
}

.cta-band-btns {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
  z-index: 2;
}

.wa-big {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #25D366;
  color: #fff;
  text-decoration: none;
  padding: 1rem 2rem;
  border-radius: 30px;
  font-size: 0.85rem;
  font-weight: 500;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
  transition: all 0.2s;
}

.wa-big:hover {
  background: #1eb85a;
  transform: translateY(-2px);
}

.ph-big {
  display: flex;
  align-items: center;
  gap: 8px;
  border: 2px solid rgba(255, 255, 255, 0.4);
  color: #fff;
  text-decoration: none;
  padding: 1rem 2rem;
  border-radius: 30px;
  font-size: 0.85rem;
  transition: background 0.2s;
}

.ph-big:hover {
  background: rgba(255, 255, 255, 0.1);
}

/* ───────────────── FOOTER ───────────────── */
footer {
  background: var(--primary-dark);
  padding: 44px 32px 24px;
}

.footer-social-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  max-width: 1100px;
  margin: 0 auto 2rem;
  padding-bottom: 1.7rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-social-links {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
  flex-wrap: wrap;
}

.footer-social-link {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  text-decoration: none;
  transition: transform 0.2s, background 0.2s, border-color 0.2s, box-shadow 0.2s;
}

.footer-social-link svg {
  width: 19px;
  height: 19px;
  fill: currentColor;
}

.footer-social-link:hover,
.footer-social-link:focus-visible {
  background: var(--accent);
  border-color: transparent;
  box-shadow: 0 8px 24px rgba(193, 154, 107, 0.28);
  color: #fff;
  outline: none;
  transform: translateY(-2px);
}

.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  max-width: 1100px;
  margin: 0 auto;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-brand {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.2rem;
}

.footer-brand span {
  color: var(--accent-light);
}

.footer-tagline {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 1rem;
}

.footer-desc {
  font-size: 0.82rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.4);
  line-height: 1.7;
  max-width: 28ch;
}

.footer-col-h {
  font-size: 0.62rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent-light);
  font-weight: 500;
  margin-bottom: 10px;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.footer-links a,
.footer-links span {
  font-size: 0.82rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.45);
  text-decoration: none;
}

.footer-links a:hover {
  color: var(--accent-light);
}

.footer-bottom {
  max-width: 1100px;
  margin: 0 auto;
  padding-top: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
}

.footer-copy {
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.25);
}

.kosher-f {
  display: flex;
  align-items: center;
  gap: 7px;
}

.kosher-f-k {
  width: 22px;
  height: 22px;
  background: var(--accent);
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.55rem;
  font-weight: 700;
  color: var(--white);
}

.kosher-f-t {
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.3);
}

/* ───────────────── CART DRAWER ───────────────── */
.cart-overlay {
  position: fixed;
  inset: 0;
  background: rgba(139, 125, 107, 0.3);
  z-index: 500;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}

.cart-overlay.open {
  opacity: 1;
  pointer-events: all;
}

.cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(440px, 100vw);
  background: #fff;
  z-index: 600;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.23, 1, 0.32, 1);
  display: flex;
  flex-direction: column;
}

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

.cart-hdr {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 22px;
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
}

.cart-hdr-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: #fff;
}

.cart-close {
  background: rgba(255, 255, 255, 0.2);
  border: none;
  cursor: pointer;
  font-size: 1rem;
  color: #fff;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  transition: background 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cart-close:hover {
  background: rgba(255, 255, 255, 0.35);
}

.cart-body {
  flex: 1;
  overflow-y: auto;
  padding: 20px 22px;
}

.cart-empty {
  text-align: center;
  padding: 48px 0;
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 1.1rem;
  color: var(--text-light);
}

.cart-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid var(--peach);
}

.cart-item-thumb {
  width: 56px;
  height: 56px;
  border-radius: 8px;
  overflow: hidden;
  flex-shrink: 0;
  background: var(--peach);
}

.cart-item-thumb svg,
.cart-item-thumb img {
  width: 56px;
  height: 56px;
  object-fit: cover;
}

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

.cart-item-name {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--primary-dark);
  line-height: 1.3;
}

.cart-item-price {
  font-size: 0.78rem;
  color: var(--text-light);
  margin-top: 2px;
}

.cart-item-qty {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 6px;
}

.qty-btn {
  width: 26px;
  height: 26px;
  border: 1px solid var(--peach);
  background: none;
  border-radius: 50%;
  cursor: pointer;
  font-size: 0.9rem;
  color: var(--primary);
  transition: background 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.qty-btn:hover {
  background: var(--peach);
}

.qty-val {
  font-size: 0.85rem;
  font-weight: 500;
  min-width: 20px;
  text-align: center;
}

.cart-item-del {
  background: none;
  border: none;
  cursor: pointer;
  font-size: 0.8rem;
  color: rgba(139, 125, 107, 0.3);
  padding: 4px;
  transition: color 0.2s;
  margin-left: 4px;
}

.cart-item-del:hover {
  color: var(--primary);
}

.cart-field {
  margin-top: 14px;
}

.cart-field label {
  font-size: 0.65rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--primary);
  font-weight: 500;
  display: block;
  margin-bottom: 6px;
}

.cart-field input,
.cart-field textarea {
  width: 100%;
  background: var(--cream-light);
  border: 1px solid rgba(139, 125, 107, 0.15);
  border-radius: 10px;
  padding: 10px 12px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.85rem;
  color: var(--text);
  outline: none;
  transition: border-color 0.25s;
}

.cart-field input:focus,
.cart-field textarea:focus {
  border-color: var(--primary);
}

.cart-field input::placeholder,
.cart-field textarea::placeholder {
  color: rgba(74, 67, 64, 0.3);
}

.cart-field textarea {
  resize: vertical;
  min-height: 80px;
}

.cart-ftr {
  padding: 16px 22px;
  border-top: 2px solid var(--peach);
  background: var(--cream-light);
}

.cart-total-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}

.cart-total-label {
  font-size: 0.8rem;
  color: var(--text-light);
}

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

.send-wa-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  background: #25D366;
  border: none;
  border-radius: 30px;
  padding: 1rem;
  cursor: pointer;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.82rem;
  font-weight: 500;
  color: #fff;
  text-decoration: none;
  transition: background 0.2s, transform 0.2s;
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.3);
}

.send-wa-btn:hover {
  background: #1eb85a;
  transform: translateY(-1px);
}

.cart-disc {
  font-size: 0.66rem;
  color: rgba(74, 67, 64, 0.4);
  text-align: center;
  margin-top: 8px;
  line-height: 1.5;
}

/* ───────────────── AI CHAT ───────────────── */
.ai-overlay {
  position: fixed;
  inset: 0;
  background: rgba(139, 125, 107, 0.35);
  z-index: 700;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}

.ai-overlay.open {
  opacity: 1;
  pointer-events: all;
}

.ai-panel {
  position: fixed;
  bottom: 0;
  right: 0;
  width: min(420px, 100vw);
  height: min(620px, 90vh);
  background: #fff;
  z-index: 800;
  border-radius: 20px 0 0 0;
  box-shadow: 0 -8px 60px rgba(139, 125, 107, 0.25);
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.ai-panel.open {
  transform: translateY(0);
}

.ai-panel-hdr {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 18px;
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
  flex-shrink: 0;
}

.ai-avatar {
  width: 38px;
  height: 38px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.ai-hdr-info {
  flex: 1;
}

.ai-hdr-name {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
}

.ai-hdr-status {
  font-size: 0.68rem;
  color: rgba(255, 255, 255, 0.7);
  display: flex;
  align-items: center;
  gap: 4px;
}

.ai-hdr-dot {
  width: 6px;
  height: 6px;
  background: #4ade80;
  border-radius: 50%;
}

.ai-close {
  background: rgba(255, 255, 255, 0.2);
  border: none;
  cursor: pointer;
  font-size: 0.9rem;
  color: #fff;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}

.ai-close:hover {
  background: rgba(255, 255, 255, 0.35);
}

.ai-messages {
  flex: 1;
  overflow-y: auto;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  background: var(--cream-light);
}

.ai-msg {
  max-width: 85%;
  padding: 10px 14px;
  border-radius: 16px;
  font-size: 0.85rem;
  line-height: 1.6;
  animation: msgIn 0.3s ease;
}

@keyframes msgIn {
  from {
    opacity: 0;
    transform: translateY(6px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.ai-msg.bot {
  background: #fff;
  color: var(--text);
  border-bottom-left-radius: 4px;
  align-self: flex-start;
  box-shadow: 0 2px 8px rgba(139, 125, 107, 0.08);
}

.ai-msg.user {
  background: var(--primary);
  color: #fff;
  border-bottom-right-radius: 4px;
  align-self: flex-end;
}

.ai-msg.typing {
  background: #fff;
  align-self: flex-start;
  padding: 12px 16px;
}

.ai-dots {
  display: flex;
  gap: 4px;
  align-items: center;
}

.ai-dot {
  width: 7px;
  height: 7px;
  background: var(--accent);
  border-radius: 50%;
  animation: dotPulse 1.2s ease-in-out infinite;
}

.ai-dot:nth-child(2) {
  animation-delay: 0.2s;
}

.ai-dot:nth-child(3) {
  animation-delay: 0.4s;
}

@keyframes dotPulse {
  0%, 60%, 100% {
    transform: scale(1);
    opacity: 0.5;
  }
  30% {
    transform: scale(1.3);
    opacity: 1;
  }
}

.ai-quick {
  padding: 8px 16px;
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  background: var(--cream-light);
  border-top: 1px solid rgba(139, 125, 107, 0.08);
}

.ai-quick-btn {
  background: #fff;
  border: 1px solid rgba(139, 125, 107, 0.2);
  border-radius: 20px;
  padding: 0.35rem 0.85rem;
  font-size: 0.72rem;
  color: var(--primary);
  cursor: pointer;
  transition: all 0.2s;
  font-family: 'DM Sans', sans-serif;
}

.ai-quick-btn:hover {
  background: var(--primary);
  color: #fff;
}

.ai-input-row {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
  background: #fff;
  border-top: 1px solid rgba(139, 125, 107, 0.08);
  flex-shrink: 0;
}

.ai-input {
  flex: 1;
  border: 1px solid rgba(139, 125, 107, 0.2);
  border-radius: 20px;
  padding: 0.6rem 1rem;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.85rem;
  color: var(--text);
  outline: none;
  transition: border-color 0.25s;
  background: var(--cream-light);
}

.ai-input:focus {
  border-color: var(--primary);
}

.ai-input::placeholder {
  color: rgba(74, 67, 64, 0.35);
}

.ai-send {
  width: 36px;
  height: 36px;
  background: var(--primary);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 0.2s, transform 0.15s;
}

.ai-send:hover {
  background: var(--primary-dark);
  transform: scale(1.05);
}

.ai-send svg {
  width: 16px;
  height: 16px;
  fill: #fff;
}

/* Floating AI button */
.ai-fab {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 600;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  box-shadow: 0 6px 24px rgba(139, 125, 107, 0.4);
  transition: transform 0.3s, box-shadow 0.3s;
  animation: fabPulse 3s ease-in-out infinite;
}

.ai-fab:hover {
  transform: scale(1.1);
  box-shadow: 0 10px 32px rgba(139, 125, 107, 0.5);
}

@keyframes fabPulse {
  0%, 100% {
    box-shadow: 0 6px 24px rgba(139, 125, 107, 0.4);
  }
  50% {
    box-shadow: 0 6px 32px rgba(212, 165, 116, 0.6);
  }
}

.ai-fab.hidden {
  display: none;
}

.ai-fab-badge {
  position: absolute;
  top: -2px;
  right: -2px;
  width: 16px;
  height: 16px;
  background: #4ade80;
  border-radius: 50%;
  border: 2px solid #fff;
}

/* ───────────────── TOAST ───────────────── */
.toast {
  position: fixed;
  bottom: 100px;
  left: 50%;
  transform: translateX(-50%) translateY(30px);
  background: var(--primary-dark);
  color: #fff;
  padding: 0.75rem 1.4rem;
  border-radius: 30px;
  font-size: 0.85rem;
  z-index: 999;
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  pointer-events: none;
  white-space: nowrap;
  box-shadow: 0 4px 20px rgba(139, 125, 107, 0.3);
  opacity: 0;
}

.toast.show {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
}

/* ───────────────── RESPONSIVE ───────────────── */
@media (max-width: 800px) {
  nav {
    padding: 0 16px;
  }

  .nav-links {
    display: none;
  }

  .ham {
    display: flex;
  }

  .nav-links.mob-open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 64px;
    left: 0;
    right: 0;
    background: rgba(107, 93, 82, 0.98);
    padding: 8px 0;
  }

  .nav-links.mob-open li a {
    height: 48px;
    line-height: 48px;
    padding: 0 24px;
  }

  .about-grid,
  .contact-grid,
  .events-hero-inner,
  .event-preview-row {
    grid-template-columns: 1fr;
  }

  .events-hero {
    padding: 52px 20px 62px;
  }

  .event-preview-item {
    min-height: 96px;
  }

  .occasion-item {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .occasion-photo {
    height: 190px;
  }

  .occasion-action {
    justify-self: stretch;
    max-width: none;
  }

  .events-note {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer-social-top {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer-social-links {
    justify-content: flex-start;
  }

  .footer-inner {
    grid-template-columns: 1fr 1fr;
  }

  .section {
    padding: 48px 20px;
  }

  .hero {
    padding: 48px 20px 60px;
  }
}

@media (max-width: 500px) {
  .footer-social-link {
    width: 40px;
    height: 40px;
  }

  .footer-inner {
    grid-template-columns: 1fr;
  }

  .hero-stat {
    padding: 0 1rem;
  }
}
