/* ══════════════════════════════════════════════
   Little Taste of Heaven — Pink Bakery Theme
   ══════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Great+Vibes&family=Fraunces:ital,opsz,wght@0,9..144,400;0,9..144,500;0,9..144,600;0,9..144,700;1,9..144,400&family=Poppins:wght@300;400;500;600;700&display=swap');

/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  /* Unified warm rose palette — one family, no clashing */
  --pink:        #d4738b;
  --pink-hover:  #bf6179;
  --pink-deep:   #a8506a;
  --pink-light:  #e8b0c2;
  --pink-pale:   #fdf4f7;
  --pink-bg:     #faf6f7;
  --white:       #ffffff;
  --cream:       #fdfbf9;
  /* High-contrast text */
  --text-dark:   #2c1e25;
  --text-body:   #3e2a34;
  --text-mid:    #5e3f50;
  --text-light:  #8d6a7a;
  --gold:        #c9a04e;
  --shadow:      rgba(120, 60, 80, 0.10);
  --shadow-lg:   rgba(120, 60, 80, 0.18);
  --radius:      16px;
  --radius-sm:   10px;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Poppins', 'Segoe UI', sans-serif;
  color: var(--text-body);
  background-color: #f7f3f4;
  background-image: none;
  line-height: 1.85;
  font-size: 17px;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  position: relative;
}
/* Content sits above the canvas but without stacking contexts that trap the navbar */
#bg-canvas { z-index: 0; }
body > *:not(#bg-canvas):not(.modal-overlay):not(.lightbox) { position: relative; }

a { color: var(--pink); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--pink-hover); }

p { margin-bottom: 16px; }
p:last-child { margin-bottom: 0; }

h1, h2, h3 {
  font-family: 'Great Vibes', cursive;
  color: var(--text-dark);
  font-weight: 400;
  line-height: 1.35;
  padding-top: 0.12em;
}
h4 {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
}

img { max-width: 100%; height: auto; display: block; }

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 32px;
}

/* ══════════════════════════════════════════════
   NAVIGATION — Compact, no-wrap design
   ══════════════════════════════════════════════ */
.navbar {
  background: linear-gradient(135deg, #c9697e 0%, #a8506a 100%);
  padding: 0;
  position: sticky;
  top: 0;
  z-index: 99999;
  box-shadow: 0 3px 18px rgba(120, 60, 80, 0.2);
}
.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 66px;
  gap: 16px;
}

/* Brand */
.navbar-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--white);
  font-family: 'Great Vibes', cursive;
  font-size: 1.45rem;
  text-decoration: none;
  white-space: nowrap;
  flex-shrink: 0;
}
.navbar-brand:hover { color: white; }
.navbar-brand img {
  height: 40px;
  width: 40px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.45);
  object-fit: cover;
}

/* Nav links — compact, no wrapping */
.nav-links {
  display: flex;
  list-style: none;
  gap: 2px;
  align-items: center;
  flex-shrink: 1;
  flex-wrap: nowrap;
}
.nav-links li { flex-shrink: 0; }
.nav-links a {
  color: rgba(255,255,255,0.92);
  padding: 8px 13px;
  border-radius: 8px;
  font-size: 0.85rem;
  font-weight: 500;
  font-family: 'Poppins', sans-serif;
  transition: background 0.2s, color 0.2s;
  text-decoration: none;
  white-space: nowrap;
  display: block;
  letter-spacing: 0.01em;
}
.nav-links a:hover,
.nav-links a.active {
  background: rgba(255,255,255,0.18);
  color: #fff;
}

/* Sign In button */
.nav-auth-btn {
  background: var(--white) !important;
  color: var(--pink-deep) !important;
  font-weight: 600 !important;
  border-radius: 22px !important;
  padding: 7px 20px !important;
  font-size: 0.82rem !important;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  transition: transform 0.15s, box-shadow 0.15s, background 0.15s !important;
}
.nav-auth-btn:hover {
  background: var(--cream) !important;
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(0,0,0,0.15) !important;
}

/* Nav Dropdown */
.nav-dropdown { position: relative; }
/* Invisible bridge so hover isn't lost when crossing the gap to the menu */
.nav-dropdown::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  height: 14px;
  background: transparent;
  pointer-events: none;
}
.nav-dropdown:hover::after { pointer-events: auto; }
.nav-dropdown .dropdown-menu {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  position: absolute;
  top: calc(100% + 10px);
  left: 50%;
  transform: translateX(-50%) translateY(-4px);
  background: white;
  border-radius: var(--radius-sm);
  min-width: 200px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.18);
  z-index: 9999;
  padding: 8px 0;
  border: 1px solid rgba(233, 30, 140, 0.1);
  transition: opacity 0.18s ease, visibility 0.18s ease, transform 0.2s ease;
  transition-delay: 0s, 0s, 0s;
}
.nav-dropdown:hover .dropdown-menu,
.nav-dropdown:focus-within .dropdown-menu,
.nav-dropdown .dropdown-menu:hover {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}
.nav-dropdown:not(:hover):not(:focus-within) .dropdown-menu {
  transition-delay: 0.25s, 0.25s, 0s;
}
.nav-dropdown .dropdown-menu a {
  display: block;
  padding: 10px 22px;
  font-size: 0.88rem;
  color: var(--text-body);
  border-radius: 0;
  font-family: 'Poppins', sans-serif;
}
.nav-dropdown .dropdown-menu a:hover {
  background: var(--pink-pale);
  color: var(--pink);
}

/* Mobile toggle */
.nav-toggle {
  display: none;
  background: none;
  border: 2px solid rgba(255,255,255,0.3);
  color: white;
  font-size: 1.3rem;
  cursor: pointer;
  padding: 4px 10px;
  border-radius: 8px;
  transition: border-color 0.2s;
}
.nav-toggle:hover { border-color: rgba(255,255,255,0.6); }

/* Responsive: collapse nav on smaller screens */
@media (max-width: 1024px) {
  .nav-toggle { display: block; }
  .nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 66px;
    left: 0;
    right: 0;
    background: linear-gradient(180deg, #a8506a 0%, #c9697e 100%);
    padding: 16px 20px;
    gap: 2px;
    box-shadow: 0 12px 32px rgba(0,0,0,0.2);
  }
  .nav-links.open { display: flex; }
  .nav-links a {
    padding: 12px 20px;
    font-size: 0.95rem;
    border-radius: 10px;
  }
  .nav-dropdown .dropdown-menu {
    position: static;
    transform: none;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    background: rgba(255,255,255,0.08);
    box-shadow: none;
    border: none;
    border-radius: 10px;
    margin: 4px 0 4px 12px;
    padding: 4px 0;
  }
  .nav-dropdown .dropdown-menu a {
    color: rgba(255,255,255,0.85);
    font-size: 0.9rem;
    padding: 10px 20px;
  }
  .nav-dropdown .dropdown-menu a:hover {
    background: rgba(255,255,255,0.12);
    color: white;
  }
}

/* ── Logged-in user in nav ── */
.nav-user {
  display: flex;
  align-items: center;
  gap: 8px;
  color: white;
  font-size: 0.82rem;
  font-weight: 500;
}
.nav-user img {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.4);
}
.nav-user .logout-btn {
  background: rgba(255,255,255,0.18);
  color: white;
  border: none;
  padding: 5px 12px;
  border-radius: 16px;
  font-size: 0.75rem;
  cursor: pointer;
  font-family: 'Poppins', sans-serif;
  transition: background 0.2s;
}
.nav-user .logout-btn:hover { background: rgba(255,255,255,0.3); }

/* ══════════════════════════════════════════════
   HERO SECTION
   ══════════════════════════════════════════════ */
.hero {
  background: linear-gradient(135deg, #d4738b 0%, #b85d75 45%, #9c4a60 100%);
  color: white;
  text-align: center;
  padding: 90px 28px 110px;
  position: relative;
  overflow: hidden;
  border-radius: 0 0 50% 50% / 0 0 40px 40px;
  margin-bottom: -20px;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,0.07) 1px, transparent 1px);
  background-size: 24px 24px;
}
.hero-content { position: relative; z-index: 1; }
.hero-logo {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  border: 4px solid rgba(255,255,255,0.4);
  margin: 0 auto 24px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.25);
  animation: heroLogoFloat 4s ease-in-out infinite;
}
@keyframes heroLogoFloat {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-8px); }
}
.hero h1 {
  font-size: clamp(2.8rem, 9vw, 5rem);
  color: white;
  margin-bottom: 14px;
  text-shadow: 0 3px 16px rgba(0,0,0,0.25);
  padding-top: 0.2em;
  line-height: 1.3;
}
.hero p {
  font-size: clamp(1.05rem, 2.5vw, 1.3rem);
  max-width: 620px;
  margin: 0 auto 36px;
  opacity: 0.93;
  line-height: 1.8;
}
.hero-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}
.hero-cta {
  display: inline-block;
  background: white;
  color: var(--pink);
  padding: 14px 40px;
  border-radius: 30px;
  font-weight: 600;
  font-size: 1rem;
  font-family: 'Poppins', sans-serif;
  text-decoration: none;
  box-shadow: 0 6px 24px rgba(0,0,0,0.2);
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
}
.hero-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 36px rgba(0,0,0,0.3);
  color: var(--pink);
  text-decoration: none;
}
.hero-cta-outline {
  background: transparent;
  color: white;
  border: 2px solid rgba(255,255,255,0.6);
  box-shadow: none;
}
.hero-cta-outline:hover {
  background: rgba(255,255,255,0.15);
  color: white;
  border-color: white;
  box-shadow: 0 6px 24px rgba(0,0,0,0.15);
}

/* ── Page Hero (inner pages) ── */
.page-hero {
  background: linear-gradient(135deg, #d4738b 0%, #b85d75 45%, #9c4a60 100%);
  color: white;
  text-align: center;
  padding: 52px 28px 70px;
  position: relative;
  overflow: hidden;
  border-radius: 0 0 50% 50% / 0 0 35px 35px;
  margin-bottom: -15px;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,0.06) 1px, transparent 1px);
  background-size: 24px 24px;
}
.page-hero h1 {
  position: relative;
  font-size: clamp(2.4rem, 7vw, 3.8rem);
  color: white;
  margin-bottom: 10px;
  text-shadow: 0 3px 12px rgba(0,0,0,0.2);
  padding-top: 0.2em;
  line-height: 1.3;
}
.page-hero p {
  position: relative;
  max-width: 640px;
  margin: 0 auto;
  font-size: 1rem;
  opacity: 0.92;
  line-height: 1.8;
}

/* ── Announcement Bar ── */
.announce-bar {
  background: #9c4a60;
  color: white;
  text-align: center;
  padding: 12px 28px;
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.02em;
}

/* ══════════════════════════════════════════════
   PAGE SECTIONS
   ══════════════════════════════════════════════ */
.section {
  padding: 72px 0;
}
.section-title {
  font-size: clamp(2.4rem, 5vw, 3.4rem);
  text-align: center;
  margin-bottom: 12px;
  color: var(--text-dark);
  padding-top: 0.2em;
  overflow: visible;
}
.section-sub {
  text-align: center;
  color: var(--text-mid);
  margin-bottom: 40px;
  font-size: 1.08rem;
  line-height: 1.8;
  max-width: 620px;
  margin-left: auto;
  margin-right: auto;
}
.divider {
  width: 70px;
  height: 3px;
  background: linear-gradient(90deg, var(--pink-light), var(--pink));
  margin: 0 auto 48px;
  border-radius: 2px;
}

/* ══════════════════════════════════════════════
   CARDS
   ══════════════════════════════════════════════ */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(300px, 100%), 1fr));
  gap: 32px;
}
.card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 4px 24px var(--shadow);
  transition: transform 0.25s, box-shadow 0.25s;
}
.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 40px var(--shadow-lg);
}
img.card-img,
.card-img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  background: linear-gradient(135deg, var(--pink-pale), var(--cream));
  display: block;
}
div.card-img {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3.5rem;
}
.card-body {
  padding: 26px;
}
.card-body h3 {
  font-size: 1.7rem;
  margin-bottom: 10px;
}
.card-body p {
  color: var(--text-mid);
  font-size: 0.94rem;
  line-height: 1.75;
}

/* ══════════════════════════════════════════════
   MENU PAGE
   ══════════════════════════════════════════════ */
.menu-category {
  background: var(--white);
  border-radius: var(--radius);
  margin-bottom: 14px;
  box-shadow: 0 3px 14px var(--shadow);
  overflow: hidden;
  transition: box-shadow 0.2s;
}
.menu-category:hover { box-shadow: 0 6px 24px var(--shadow-lg); }
.menu-category-header {
  padding: 22px 30px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background 0.2s;
}
.menu-category-header:hover { background: var(--pink-pale); }
.menu-category-header h3 {
  font-size: 1.9rem;
  margin: 0;
}
.menu-category-header .chevron {
  font-size: 1.1rem;
  color: var(--pink);
  transition: transform 0.3s;
}
.menu-category.open .chevron { transform: rotate(180deg); }
.menu-items {
  display: none;
  padding: 0 30px 24px;
  border-top: 1px solid var(--pink-pale);
}
.menu-category.open .menu-items { display: block; }
.menu-item {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 14px 0;
  border-bottom: 1px dashed rgba(233, 30, 140, 0.12);
}
.menu-item:last-child { border-bottom: none; }
.menu-item-name { font-weight: 500; font-size: 0.98rem; }
.menu-item-desc {
  font-size: 0.85rem;
  color: var(--text-light);
  margin-top: 3px;
}
.menu-item-price {
  font-weight: 600;
  color: var(--pink);
  white-space: nowrap;
  margin-left: 20px;
  font-size: 0.95rem;
}

/* Menu link cards (category page) */
a.menu-category {
  display: block;
  text-decoration: none;
  text-align: center;
  padding: 28px 24px;
  border-left: 4px solid var(--pink);
}
a.menu-category:hover {
  background: var(--pink-pale);
  border-left-color: var(--pink-hover);
}
a.menu-category h2 {
  font-size: clamp(1.6rem, 4vw, 2.2rem);
  margin: 0;
  transition: color 0.2s;
}
a.menu-category:hover h2 { color: var(--pink); }

/* ══════════════════════════════════════════════
   PRODUCT DETAIL PAGE
   ══════════════════════════════════════════════ */
.product-page {
  background: var(--white);
  border-radius: var(--radius);
  padding: 44px 44px;
  box-shadow: 0 4px 24px var(--shadow);
  max-width: 840px;
  margin: 0 auto;
}
.product-page h2 { font-size: 2.4rem; margin-bottom: 8px; }
.product-page .price-note {
  color: var(--pink);
  font-weight: 600;
  font-size: 1rem;
  margin-bottom: 28px;
  padding: 12px 18px;
  background: var(--pink-pale);
  border-radius: var(--radius-sm);
  display: inline-block;
}
.product-page h4 {
  font-size: 0.95rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--pink);
  margin: 28px 0 12px;
  border-bottom: 2px solid var(--pink-pale);
  padding-bottom: 8px;
}
.product-page p, .product-page li {
  color: var(--text-body);
  font-size: 1rem;
  line-height: 1.85;
}
.product-page ul { list-style: none; padding: 0; }
.product-page ul li {
  padding: 5px 0 5px 22px;
  position: relative;
}
.product-page ul li::before {
  content: '\2665';
  position: absolute;
  left: 0;
  color: var(--pink-light);
  font-size: 0.7rem;
  top: 8px;
}
.product-page .cta-link {
  display: inline-block;
  margin-top: 32px;
  background: var(--pink);
  color: white;
  padding: 12px 32px;
  border-radius: 26px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: background 0.2s, transform 0.15s;
  box-shadow: 0 4px 16px rgba(168, 80, 106, 0.3);
}
.product-page .cta-link:hover {
  background: var(--pink-hover);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(168, 80, 106, 0.4);
}

/* ══════════════════════════════════════════════
   ABOUT PAGE
   ══════════════════════════════════════════════ */
.about-content {
  background: var(--white);
  border-radius: var(--radius);
  padding: 48px 44px;
  box-shadow: 0 4px 24px var(--shadow);
  max-width: 840px;
  margin: 0 auto;
}
@media (max-width: 768px) { .about-content { padding: 32px 24px; } }
.about-content h2 {
  font-size: 2.6rem;
  margin-bottom: 20px;
}
.about-content p {
  margin-bottom: 20px;
  line-height: 1.9;
  color: var(--text-body);
  font-size: 1.04rem;
}

/* ══════════════════════════════════════════════
   CONTACT PAGE
   ══════════════════════════════════════════════ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  max-width: 860px;
  margin: 0 auto;
}
@media (max-width: 768px) { .contact-grid { grid-template-columns: 1fr; } }
.contact-info, .contact-form {
  background: var(--white);
  border-radius: var(--radius);
  padding: 40px;
  box-shadow: 0 4px 24px var(--shadow);
}
.contact-info h3, .contact-form h3 {
  font-size: 1.9rem;
  margin-bottom: 18px;
}
.contact-info p {
  margin-bottom: 14px;
  color: var(--text-body);
  font-size: 0.95rem;
  line-height: 1.8;
}
.contact-info .info-label {
  font-weight: 600;
  color: var(--text-dark);
}

/* ══════════════════════════════════════════════
   FORMS
   ══════════════════════════════════════════════ */
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--text-mid);
  letter-spacing: 0.01em;
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 13px 18px;
  border: 1.5px solid #e0c0d4;
  border-radius: var(--radius-sm);
  font-family: inherit;
  font-size: 0.96rem;
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
  background: white;
  color: var(--text-dark);
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--pink);
  box-shadow: 0 0 0 3px rgba(214, 27, 126, 0.08);
}
.form-group textarea { resize: vertical; min-height: 130px; }
.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--text-light);
  opacity: 0.7;
}

.btn-submit {
  background: var(--pink);
  color: white;
  border: none;
  padding: 13px 36px;
  border-radius: 30px;
  font-size: 0.98rem;
  font-weight: 600;
  cursor: pointer;
  font-family: inherit;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  box-shadow: 0 4px 16px rgba(168, 80, 106, 0.3);
}
.btn-submit:hover {
  background: var(--pink-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(168, 80, 106, 0.4);
}

/* ══════════════════════════════════════════════
   AUTH MODAL
   ══════════════════════════════════════════════ */
.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: 2000;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(3px);
}
.modal-overlay.active { display: flex; }
.modal {
  background: var(--white);
  border-radius: 18px;
  padding: 40px 36px;
  width: 92%;
  max-width: 420px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.25);
  position: relative;
  animation: modalIn 0.3s ease-out;
}
@keyframes modalIn {
  from { transform: translateY(24px) scale(0.97); opacity: 0; }
  to   { transform: translateY(0) scale(1);       opacity: 1; }
}
.modal-close {
  position: absolute;
  top: 16px;
  right: 20px;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--text-light);
  transition: color 0.2s;
}
.modal-close:hover { color: var(--text-dark); }
.modal h2 {
  font-size: 2.1rem;
  text-align: center;
  margin-bottom: 24px;
}
.modal .form-group input {
  background: var(--pink-pale);
}
.modal .form-group input:focus { background: white; }

/* Social login buttons */
.social-btns {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 20px;
}
.social-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  font-size: 0.92rem;
  font-weight: 600;
  font-family: inherit;
  cursor: pointer;
  border: 1.5px solid #ddd;
  transition: background 0.2s, border-color 0.2s, transform 0.15s;
  text-decoration: none;
}
.social-btn svg { width: 20px; height: 20px; flex-shrink: 0; }
.social-btn.google { background: white; color: #333; }
.social-btn.google:hover { background: #f5f5f5; border-color: #bbb; transform: translateY(-1px); }
.social-btn.facebook { background: #1877f2; color: white; border-color: #1877f2; }
.social-btn.facebook:hover { background: #166fe0; transform: translateY(-1px); }

.auth-divider {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 22px 0;
  color: var(--text-light);
  font-size: 0.84rem;
}
.auth-divider::before,
.auth-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: #e0c0d4;
}
.auth-toggle {
  text-align: center;
  margin-top: 18px;
  font-size: 0.88rem;
  color: var(--text-light);
}
.auth-toggle a { font-weight: 600; cursor: pointer; }
.auth-error {
  background: #fef2f2;
  color: #b91c1c;
  padding: 11px 16px;
  border-radius: var(--radius-sm);
  font-size: 0.88rem;
  margin-bottom: 16px;
  display: none;
}

/* ══════════════════════════════════════════════
   GALLERY
   ══════════════════════════════════════════════ */
.gallery-section {
  margin-bottom: 48px;
  background: var(--white);
  border-radius: var(--radius);
  padding: 36px;
  box-shadow: 0 4px 20px var(--shadow);
}
.gallery-section h2 {
  font-size: clamp(1.9rem, 4vw, 2.5rem);
  margin-bottom: 6px;
}
.gallery-section > p {
  font-size: 0.92rem;
  color: var(--text-mid);
  margin-bottom: 22px;
}
.gallery-section > p a { font-weight: 600; }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(210px, 100%), 1fr));
  gap: 16px;
}
.gallery-grid img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: 0 4px 18px var(--shadow);
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  background: var(--pink-pale);
  border: 3px solid var(--white);
}
.gallery-grid img:hover {
  transform: scale(1.06) translateY(-4px);
  box-shadow: 0 14px 40px var(--shadow-lg);
  border-color: var(--pink-light);
}
.gallery-grid .coming-soon {
  grid-column: 1 / -1;
  text-align: center;
  padding: 44px 24px;
  color: var(--text-light);
  font-style: italic;
  font-size: 0.98rem;
  background: var(--pink-pale);
  border-radius: var(--radius-sm);
}

/* ── Lightbox ── */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.92);
  z-index: 3000;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  backdrop-filter: blur(6px);
  padding: 24px;
}
.lightbox.active { display: flex; }
.lightbox img {
  max-width: 92vw;
  max-height: 92vh;
  border-radius: var(--radius);
  box-shadow: 0 16px 80px rgba(0,0,0,0.6);
  object-fit: contain;
}
.lightbox-close {
  position: absolute;
  top: 20px;
  right: 28px;
  color: white;
  font-size: 2.4rem;
  cursor: pointer;
  opacity: 0.7;
  transition: opacity 0.2s, transform 0.2s;
  z-index: 10;
  background: none;
  border: none;
}
.lightbox-close:hover { opacity: 1; transform: scale(1.1); }

/* ── Image Grid (seasonal, etc.) ── */
.image-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(220px, 100%), 1fr));
  gap: 16px;
  margin: 24px 0;
}
.image-grid img {
  width: 100%;
  border-radius: var(--radius-sm);
  box-shadow: 0 3px 14px var(--shadow);
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
}
.image-grid img:hover {
  transform: scale(1.03);
  box-shadow: 0 8px 28px var(--shadow-lg);
}

/* ══════════════════════════════════════════════
   WORKSHOPS
   ══════════════════════════════════════════════ */
.workshop-block {
  background: var(--white);
  border-radius: var(--radius);
  padding: 40px;
  box-shadow: 0 4px 24px var(--shadow);
  margin-bottom: 32px;
}
.workshop-block h2 { font-size: 2.4rem; margin-bottom: 12px; }
.workshop-block h3 { font-size: 1.6rem; margin: 24px 0 12px; }
.workshop-block p, .workshop-desc {
  color: var(--text-body);
  font-size: 0.96rem;
  line-height: 1.85;
  margin-bottom: 14px;
}
.workshop-details { margin-bottom: 16px; }
.workshop-details p { margin-bottom: 6px; }
.workshop-cover { margin-bottom: 20px; }
.workshop-cover img {
  width: 100%;
  max-height: 400px;
  object-fit: cover;
  border-radius: var(--radius-sm);
  box-shadow: 0 4px 20px var(--shadow);
}
.workshop-info ul {
  list-style: none;
  padding: 0;
}
.workshop-info ul li {
  padding: 5px 0 5px 22px;
  position: relative;
  font-size: 0.95rem;
  color: var(--text-body);
}
.workshop-info ul li::before {
  content: '\2665';
  position: absolute;
  left: 0;
  color: var(--pink-light);
  font-size: 0.7rem;
  top: 8px;
}
.workshop-addon {
  background: var(--pink-pale);
  border-radius: var(--radius-sm);
  padding: 16px 20px;
  margin: 20px 0;
}
.workshop-addon p { margin: 0; font-size: 0.92rem; }
.workshop-signup {
  display: inline-block;
  margin-top: 12px;
  padding: 12px 36px;
  border-radius: 30px;
  font-size: 0.98rem;
  text-decoration: none;
  font-weight: 600;
  font-family: 'Poppins', sans-serif;
}
.workshop-images {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(200px, 100%), 1fr));
  gap: 14px;
  margin-top: 20px;
}
.workshop-images img {
  width: 100%;
  border-radius: var(--radius-sm);
  box-shadow: 0 3px 14px var(--shadow);
}

/* ══════════════════════════════════════════════
   CUSTOM QUOTE
   ══════════════════════════════════════════════ */
.quote-page {
  background: var(--white);
  border-radius: var(--radius);
  padding: 44px 40px;
  box-shadow: 0 4px 20px var(--shadow);
  max-width: 680px;
  margin: 0 auto;
}
@media (max-width: 600px) { .quote-page { padding: 32px 24px; } }
.quote-page h2 { font-size: 2.4rem; margin-bottom: 18px; }
.quote-page p {
  color: var(--text-body);
  line-height: 1.85;
  margin-bottom: 18px;
  font-size: 0.95rem;
}

/* ══════════════════════════════════════════════
   TESTIMONIALS
   ══════════════════════════════════════════════ */
.testimonial {
  background: var(--pink-pale);
  border-left: 4px solid var(--pink-light);
  padding: 22px 28px;
  border-radius: 0 var(--radius) var(--radius) 0;
  margin-bottom: 18px;
  font-size: 0.98rem;
  color: var(--text-body);
  font-style: italic;
  line-height: 1.85;
}
.testimonial .sig {
  font-style: normal;
  font-weight: 600;
  color: var(--pink);
  margin-top: 8px;
  display: block;
  font-size: 0.88rem;
}

/* ══════════════════════════════════════════════
   NOTICE BAR & FOOTER
   ══════════════════════════════════════════════ */
.notice-bar {
  background: var(--cream);
  text-align: center;
  padding: 14px 28px;
  font-size: 0.88rem;
  color: var(--text-mid);
  border-top: 1px solid rgba(233, 30, 140, 0.08);
  margin-top: 48px;
}
.footer {
  background: linear-gradient(135deg, #b85d75 0%, #9c4a60 100%);
  color: rgba(255,255,255,0.9);
  text-align: center;
  padding: 36px 28px;
}
.footer a { color: white; }
.footer a:hover { text-decoration: underline; color: white; }
.footer-brand {
  font-family: 'Great Vibes', cursive;
  font-size: 1.7rem;
  color: white;
  display: block;
  margin-bottom: 10px;
}
.footer-links {
  display: flex;
  justify-content: center;
  gap: 22px;
  margin-bottom: 14px;
  flex-wrap: wrap;
  font-size: 0.9rem;
}
.footer-copy {
  font-size: 0.8rem;
  opacity: 0.65;
}

/* ══════════════════════════════════════════════
   SHOWCASE GRID (Homepage)
   ══════════════════════════════════════════════ */
.showcase-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
@media (max-width: 768px) { .showcase-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .showcase-grid { grid-template-columns: 1fr; } }
.showcase-item {
  text-decoration: none;
  color: inherit;
  display: block;
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 6px 28px var(--shadow);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  text-align: center;
}
.showcase-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 56px var(--shadow-lg);
  color: inherit;
}
.showcase-img-wrap {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 3;
}
.showcase-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.showcase-item:hover .showcase-img-wrap img {
  transform: scale(1.1);
}
.showcase-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(168, 64, 104, 0.75), transparent 55%);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: 22px;
  opacity: 0;
  transition: opacity 0.35s;
}
.showcase-item:hover .showcase-overlay { opacity: 1; }
.showcase-overlay span {
  color: white;
  font-weight: 600;
  font-size: 0.88rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 10px 26px;
  border: 2px solid rgba(255,255,255,0.7);
  border-radius: 26px;
  backdrop-filter: blur(6px);
  background: rgba(255,255,255,0.08);
}
.showcase-item h3 {
  font-size: 1.8rem;
  margin: 22px 24px 8px;
  color: var(--text-dark);
}
.showcase-item p {
  font-size: 0.96rem;
  color: var(--text-mid);
  margin: 0 24px 26px;
  line-height: 1.75;
}

/* ══════════════════════════════════════════════
   FEATURE BANNER (Seasonal)
   ══════════════════════════════════════════════ */
.feature-banner {
  display: flex;
  align-items: center;
  gap: 40px;
  background: var(--white);
  border-radius: var(--radius);
  padding: 40px;
  box-shadow: 0 4px 24px var(--shadow);
  overflow: hidden;
}
@media (max-width: 700px) {
  .feature-banner { flex-direction: column; text-align: center; padding: 32px 24px; }
}
.feature-img {
  flex-shrink: 0;
}
.feature-img img {
  width: 240px;
  border-radius: 18px;
  box-shadow: 0 8px 32px var(--shadow-lg);
  transition: transform 0.4s ease;
}
.feature-banner:hover .feature-img img {
  transform: rotate(-2deg) scale(1.05);
}
.feature-text { flex: 1; min-width: 0; }
.feature-badge {
  display: inline-block;
  background: linear-gradient(135deg, var(--pink), var(--pink-deep));
  color: white;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 5px 16px;
  border-radius: 20px;
  margin-bottom: 14px;
}
.feature-text h2 {
  font-size: clamp(2rem, 4vw, 2.8rem);
  margin-bottom: 12px;
}
.feature-text p {
  font-size: 1.02rem;
  line-height: 1.85;
  color: var(--text-body);
  margin-bottom: 24px;
}

/* ══════════════════════════════════════════════
   BUTTONS
   ══════════════════════════════════════════════ */
.btn-pink {
  display: inline-block;
  background: var(--pink);
  color: white;
  padding: 12px 32px;
  border-radius: 30px;
  font-weight: 600;
  font-size: 0.95rem;
  font-family: 'Poppins', sans-serif;
  text-decoration: none;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  box-shadow: 0 4px 16px rgba(168, 80, 106, 0.3);
}
.btn-pink:hover {
  background: var(--pink-hover);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(168, 80, 106, 0.4);
  text-decoration: none;
}
.btn-lg { padding: 14px 40px; font-size: 1rem; }

/* ══════════════════════════════════════════════
   FEATURES ROW (Why Choose Us)
   ══════════════════════════════════════════════ */
.features-row {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(220px, 100%), 1fr));
  gap: 24px;
}
.feature-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px 24px;
  text-align: center;
  box-shadow: 0 4px 20px var(--shadow);
  border-top: 4px solid var(--pink);
  transition: transform 0.25s, box-shadow 0.25s;
}
.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 40px var(--shadow-lg);
}
.feature-icon {
  font-size: 2.8rem;
  margin-bottom: 14px;
  display: block;
}
.feature-card h3 {
  font-size: 1.5rem;
  margin-bottom: 10px;
}
.feature-card p {
  font-size: 0.96rem;
  color: var(--text-body);
  line-height: 1.75;
}

/* ══════════════════════════════════════════════
   FANCY IMAGE FRAME
   ══════════════════════════════════════════════ */
.fancy-image-frame {
  display: inline-block;
  padding: 10px;
  background: var(--white);
  border-radius: 22px;
  box-shadow: 0 12px 48px var(--shadow-lg);
  position: relative;
}
.fancy-image-frame::before {
  content: '';
  position: absolute;
  inset: -6px;
  border-radius: 28px;
  border: 2px dashed var(--pink-light);
  pointer-events: none;
  opacity: 0.6;
}
.fancy-image-frame img {
  border-radius: 16px;
  max-width: 500px;
  width: 100%;
}

/* ══════════════════════════════════════════════
   WHITE SECTION VARIANT
   ══════════════════════════════════════════════ */
.section-white {
  background: #fdfbfb;
  border-top: 1px solid rgba(168, 80, 106, 0.06);
  border-bottom: 1px solid rgba(168, 80, 106, 0.06);
}

/* ══════════════════════════════════════════════
   SCROLL ANIMATIONS
   ══════════════════════════════════════════════ */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ══════════════════════════════════════════════
   STORE — Product Grid
   ══════════════════════════════════════════════ */
.category-filter {
  display: flex; flex-wrap: wrap; gap: 8px; justify-content: center; margin-bottom: 32px;
}
.cat-btn {
  padding: 8px 20px; border: 2px solid var(--pink-light); border-radius: 30px;
  background: var(--white); color: var(--pink-deep); font-family: 'Poppins', sans-serif;
  font-size: 0.9rem; cursor: pointer; transition: all 0.2s;
}
.cat-btn:hover, .cat-btn.active {
  background: var(--pink); color: var(--white); border-color: var(--pink);
}
.store-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 28px;
}
.product-card {
  background: var(--white); border-radius: var(--radius); overflow: hidden;
  box-shadow: 0 4px 20px var(--shadow); transition: transform 0.25s, box-shadow 0.25s;
}
.product-card:hover { transform: translateY(-4px); box-shadow: 0 10px 36px var(--shadow-lg); }
.product-card.out-of-stock { opacity: 0.6; }
.product-img-wrap {
  position: relative; aspect-ratio: 4/3; overflow: hidden; background: var(--pink-pale);
}
.product-img-wrap img { width: 100%; height: 100%; object-fit: cover; }
.oos-overlay {
  position: absolute; inset: 0; display: flex; align-items: center; justify-content: center;
  background: rgba(44, 30, 37, 0.55); color: var(--white); font-weight: 700; font-size: 1.1rem;
  letter-spacing: 1px; text-transform: uppercase;
}
.discount-badge {
  position: absolute; top: 10px; right: 10px; background: var(--gold); color: var(--white);
  font-size: 0.75rem; font-weight: 700; padding: 4px 10px; border-radius: 20px;
  font-family: 'Poppins', sans-serif;
}
.product-info { padding: 22px 24px 22px; }
.product-info h3 {
  font-family: 'Fraunces', 'Georgia', serif;
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--text-dark);
  letter-spacing: -0.01em;
  line-height: 1.25;
  margin-bottom: 10px;
  font-variation-settings: "opsz" 48, "SOFT" 30;
}
.product-desc {
  font-family: 'Poppins', sans-serif;
  font-size: 0.92rem;
  color: var(--text-mid);
  line-height: 1.6;
  margin-bottom: 16px;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}
.product-price {
  font-family: 'Fraunces', 'Georgia', serif;
  font-size: 1.55rem;
  font-weight: 600;
  color: var(--pink-deep);
  margin-bottom: 4px;
  letter-spacing: -0.02em;
  font-variation-settings: "opsz" 72;
}
.product-min {
  font-family: 'Poppins', sans-serif;
  font-size: 0.8rem;
  color: var(--text-light);
  margin-bottom: 12px;
}
.product-cart-row { display: flex; align-items: center; gap: 12px; margin-top: 10px; }
.qty-control { display: flex; align-items: center; border: 1px solid var(--pink-light); border-radius: 8px; overflow: hidden; }
.qty-control button {
  width: 34px; height: 34px; border: none; background: var(--pink-pale); color: var(--pink-deep);
  font-size: 1.1rem; cursor: pointer; transition: background 0.15s;
}
.qty-control button:hover { background: var(--pink-light); }
.qty-control input, .qty-input {
  width: 46px; height: 34px; border: none; text-align: center; font-size: 0.95rem;
  font-family: 'Poppins', sans-serif; color: var(--text-dark); background: var(--white);
  -moz-appearance: textfield;
}
.qty-control input::-webkit-outer-spin-button,
.qty-control input::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }
.add-to-cart-btn { flex: 1; padding: 8px 14px; font-size: 0.88rem; }

/* ══════════════════════════════════════════════
   CART PAGE
   ══════════════════════════════════════════════ */
.cart-empty { text-align: center; padding: 60px 20px; }
.cart-empty h3 { font-size: 1.3rem; margin-bottom: 10px; }
.cart-items { display: flex; flex-direction: column; gap: 16px; margin-bottom: 28px; }
.cart-item {
  display: flex; align-items: center; gap: 16px; background: var(--white);
  border-radius: var(--radius-sm); padding: 16px; box-shadow: 0 2px 12px var(--shadow);
  position: relative;
}
.cart-item-img { width: 80px; height: 80px; border-radius: 10px; object-fit: cover; flex-shrink: 0; }
.cart-item-info { flex: 1; min-width: 0; }
.cart-item-info h4 {
  font-family: 'Fraunces', 'Georgia', serif;
  font-size: 1.15rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  line-height: 1.3;
  margin-bottom: 4px;
  color: var(--text-dark);
}
.cart-item-price { font-size: 0.88rem; color: var(--text-mid); }
.cart-item-discount { font-size: 0.8rem; color: #2a8a4b; font-weight: 600; }
.cart-item-hint { font-size: 0.78rem; color: var(--gold); }
.cart-item-qty { flex-shrink: 0; }
.cart-item-total { text-align: right; min-width: 80px; flex-shrink: 0; }
.line-original { text-decoration: line-through; color: var(--text-light); font-size: 0.85rem; display: block; }
.line-total { font-weight: 700; color: var(--pink-deep); font-size: 1.05rem; }
.cart-remove-btn {
  position: absolute; top: 8px; right: 10px; background: none; border: none;
  font-size: 1.3rem; color: var(--text-light); cursor: pointer; padding: 4px 8px;
  transition: color 0.15s;
}
.cart-remove-btn:hover { color: #c0392b; }
.cart-summary {
  background: var(--white); border-radius: var(--radius); padding: 24px;
  box-shadow: 0 4px 20px var(--shadow);
}
.summary-row { display: flex; justify-content: space-between; padding: 8px 0; font-size: 0.95rem; }
.summary-discount { color: #2a8a4b; }
.summary-total { border-top: 2px solid var(--pink-light); padding-top: 14px; margin-top: 6px; font-size: 1.15rem; font-weight: 700; }
.cart-actions { display: flex; gap: 14px; margin-top: 20px; justify-content: flex-end; }
.btn-outline {
  padding: 10px 26px; border: 2px solid var(--pink); color: var(--pink); border-radius: 30px;
  font-family: 'Poppins', sans-serif; font-size: 0.92rem; transition: all 0.2s;
  background: transparent; cursor: pointer; text-decoration: none; display: inline-block;
}
.btn-outline:hover { background: var(--pink-pale); color: var(--pink-deep); text-decoration: none; }

/* ══════════════════════════════════════════════
   CHECKOUT PAGE
   ══════════════════════════════════════════════ */
.checkout-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 36px; }
.checkout-form-col .form-group { margin-bottom: 16px; }
.checkout-form-col label { display: block; font-weight: 600; margin-bottom: 4px; font-size: 0.92rem; }
.checkout-form-col input,
.checkout-form-col select,
.checkout-form-col textarea {
  width: 100%; padding: 10px 14px; border: 1px solid var(--pink-light); border-radius: var(--radius-sm);
  font-family: 'Poppins', sans-serif; font-size: 0.95rem;
}
.checkout-form-col input:focus,
.checkout-form-col select:focus,
.checkout-form-col textarea:focus { border-color: var(--pink); outline: none; }
.checkout-summary-col {
  background: var(--white); border-radius: var(--radius); padding: 24px;
  box-shadow: 0 4px 20px var(--shadow); align-self: flex-start;
}
.checkout-items { border-bottom: 1px solid var(--pink-pale); padding-bottom: 12px; margin-bottom: 12px; }
.checkout-item { display: flex; justify-content: space-between; padding: 6px 0; font-size: 0.92rem; }
.checkout-row { display: flex; justify-content: space-between; padding: 6px 0; font-size: 0.95rem; }
.checkout-discount { color: #2a8a4b; }
.checkout-total { border-top: 2px solid var(--pink-light); padding-top: 12px; margin-top: 6px; font-weight: 700; font-size: 1.15rem; }

@media (max-width: 768px) {
  .checkout-layout { grid-template-columns: 1fr; }
  .cart-item { flex-wrap: wrap; }
  .cart-item-total { width: 100%; text-align: left; margin-top: 8px; }
}

/* ══════════════════════════════════════════════
   ORDER HISTORY
   ══════════════════════════════════════════════ */
.order-history-card {
  background: var(--white); border-radius: var(--radius-sm); margin-bottom: 14px;
  box-shadow: 0 2px 12px var(--shadow); overflow: hidden;
}
.order-history-header {
  display: flex; justify-content: space-between; align-items: center; padding: 16px 20px;
  cursor: pointer; transition: background 0.15s;
}
.order-history-header:hover { background: var(--pink-pale); }
.order-history-left { display: flex; align-items: center; gap: 12px; }
.order-history-right { display: flex; align-items: center; gap: 20px; font-size: 0.92rem; color: var(--text-mid); }
.order-history-detail { padding: 0 20px 20px; border-top: 1px solid var(--pink-pale); }
.oh-info { display: flex; flex-wrap: wrap; gap: 20px; padding: 14px 0; font-size: 0.9rem; }
.oh-table { width: 100%; border-collapse: collapse; font-size: 0.9rem; }
.oh-table th { text-align: left; padding: 8px; border-bottom: 2px solid var(--pink-light); font-size: 0.85rem; color: var(--text-mid); }
.oh-table td { padding: 8px; border-bottom: 1px solid var(--pink-pale); }

/* ── Status Badges ── */
.status-badge {
  display: inline-block; padding: 3px 12px; border-radius: 20px; font-size: 0.78rem;
  font-weight: 600; text-transform: capitalize; font-family: 'Poppins', sans-serif;
}
.status-pending { background: #e0e0e0; color: #555; }
.status-paid { background: #d4edff; color: #1a6db5; }
.status-preparing { background: #fff3d4; color: #b57a00; }
.status-ready { background: #d4f5d4; color: #1a7a1a; }
.status-picked_up { background: #e8e0f0; color: #6b3fa0; }
.status-cancelled { background: #fdd; color: #b22; }

/* ══════════════════════════════════════════════
   CART BADGE (Nav)
   ══════════════════════════════════════════════ */
.nav-cart-btn { position: relative; }
.cart-badge {
  background: var(--gold); color: var(--white); font-size: 0.68rem; font-weight: 700;
  padding: 1px 6px; border-radius: 10px; min-width: 18px; text-align: center;
  display: inline-block; vertical-align: top; margin-left: 2px;
}

/* ══════════════════════════════════════════════
   TOAST NOTIFICATIONS
   ══════════════════════════════════════════════ */
.toast {
  position: fixed; bottom: -60px; left: 50%; transform: translateX(-50%);
  padding: 12px 28px; border-radius: 30px; font-family: 'Poppins', sans-serif;
  font-size: 0.92rem; font-weight: 500; z-index: 100000;
  transition: bottom 0.35s ease; pointer-events: none;
  box-shadow: 0 6px 24px rgba(0,0,0,0.15);
}
.toast.show { bottom: 30px; }
.toast-success { background: #2a8a4b; color: white; }
.toast-error { background: #c0392b; color: white; }

/* ══════════════════════════════════════════════
   ADMIN PANEL
   ══════════════════════════════════════════════ */
.admin-layout {
  display: grid; grid-template-columns: 220px 1fr; min-height: calc(100vh - 62px);
}
.admin-sidebar {
  background: var(--white); border-right: 1px solid var(--pink-pale);
  box-shadow: 2px 0 12px var(--shadow);
}
.admin-nav { display: flex; flex-direction: column; }
.admin-nav a {
  padding: 14px 24px; color: var(--text-body); font-size: 0.95rem; cursor: pointer;
  border-left: 3px solid transparent; transition: all 0.15s; text-decoration: none;
}
.admin-nav a:hover { background: var(--pink-pale); color: var(--pink-deep); }
.admin-nav a.active { background: var(--pink-pale); color: var(--pink-deep); border-left-color: var(--pink); font-weight: 600; }
.admin-main { padding: 28px 32px; background: #f7f3f4; overflow-y: auto; }
.admin-page-title { font-family: 'Poppins', sans-serif; font-size: 1.4rem; font-weight: 700; margin-bottom: 24px; }
.admin-header-row { display: flex; justify-content: space-between; align-items: center; margin-bottom: 20px; }
.admin-error { color: #c0392b; padding: 20px; }

/* Admin Stats */
.admin-stats-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(180px, 1fr)); gap: 18px; }
.admin-stat-card {
  background: var(--white); border-radius: var(--radius-sm); padding: 24px 20px;
  text-align: center; box-shadow: 0 2px 12px var(--shadow); border-top: 3px solid var(--pink);
}
.stat-number { font-size: 1.8rem; font-weight: 700; color: var(--pink-deep); }
.stat-label { font-size: 0.85rem; color: var(--text-mid); margin-top: 4px; }

/* Admin Tables */
.admin-table-wrap { overflow-x: auto; }
.admin-table { width: 100%; border-collapse: collapse; font-size: 0.9rem; background: var(--white); border-radius: var(--radius-sm); overflow: hidden; box-shadow: 0 2px 12px var(--shadow); }
.admin-table th { text-align: left; padding: 12px 14px; background: var(--pink-pale); color: var(--text-mid); font-size: 0.82rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.5px; }
.admin-table td { padding: 12px 14px; border-bottom: 1px solid var(--pink-pale); vertical-align: middle; }
.admin-table tr:hover { background: #fdf8f9; }
.admin-table tr.row-inactive { opacity: 0.5; }
.admin-table-sm { font-size: 0.85rem; }
.admin-table-sm th, .admin-table-sm td { padding: 8px 12px; }
.admin-thumb { width: 50px; height: 50px; border-radius: 8px; object-fit: cover; }
.discount-tag { color: var(--gold); font-weight: 600; }
.min-tag { color: var(--text-light); }
.expiry-tag { color: #b57a00; }
.actions-cell { white-space: nowrap; }
.btn-sm { padding: 5px 12px; border: none; border-radius: 6px; font-size: 0.8rem; cursor: pointer; font-family: 'Poppins', sans-serif; }
.btn-edit { background: var(--pink-pale); color: var(--pink-deep); }
.btn-edit:hover { background: var(--pink-light); }
.btn-delete { background: #fdd; color: #b22; margin-left: 6px; }
.btn-delete:hover { background: #fcc; }
.toggle-btn { padding: 4px 14px; border: 2px solid var(--pink-light); border-radius: 20px; background: var(--white); cursor: pointer; font-size: 0.82rem; font-family: 'Poppins', sans-serif; }
.toggle-btn.active { background: var(--pink); color: var(--white); border-color: var(--pink); }

/* Admin Forms */
.admin-form-card { background: var(--white); border-radius: var(--radius); padding: 24px; box-shadow: 0 4px 20px var(--shadow); margin-bottom: 24px; }
.admin-form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.admin-form-card .form-group { margin-bottom: 0; }
.admin-form-card label { display: block; font-weight: 600; margin-bottom: 4px; font-size: 0.85rem; color: var(--text-mid); }
.admin-form-card input,
.admin-form-card select,
.admin-form-card textarea {
  width: 100%; padding: 9px 12px; border: 1px solid var(--pink-light); border-radius: 8px;
  font-family: 'Poppins', sans-serif; font-size: 0.9rem;
}
.admin-form-card input:focus,
.admin-form-card select:focus,
.admin-form-card textarea:focus { border-color: var(--pink); outline: none; }
.admin-preview-img { margin-top: 10px; max-width: 150px; border-radius: 8px; }
.admin-form-actions { display: flex; gap: 12px; margin-top: 18px; }

/* Admin Orders */
.admin-order-card { background: var(--white); border-radius: var(--radius-sm); margin-bottom: 12px; box-shadow: 0 2px 12px var(--shadow); overflow: hidden; }
.order-header { display: flex; justify-content: space-between; align-items: center; padding: 14px 18px; cursor: pointer; transition: background 0.15s; }
.order-header:hover { background: var(--pink-pale); }
.order-meta { display: flex; gap: 18px; font-size: 0.88rem; color: var(--text-mid); }
.order-detail { padding: 0 18px 18px; border-top: 1px solid var(--pink-pale); }
.order-info-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; padding: 14px 0; font-size: 0.88rem; }
.order-status-control { display: flex; align-items: center; gap: 12px; margin-top: 14px; padding-top: 14px; border-top: 1px solid var(--pink-pale); }
.order-status-control label { font-weight: 600; font-size: 0.88rem; }
.order-status-control select { padding: 6px 12px; border: 1px solid var(--pink-light); border-radius: 8px; font-family: 'Poppins', sans-serif; }
.admin-filter-row select { padding: 8px 14px; border: 1px solid var(--pink-light); border-radius: 8px; font-family: 'Poppins', sans-serif; }

@media (max-width: 768px) {
  .admin-layout { grid-template-columns: 1fr; }
  .admin-sidebar { border-right: none; border-bottom: 1px solid var(--pink-pale); }
  .admin-nav { flex-direction: row; overflow-x: auto; }
  .admin-nav a { padding: 12px 18px; border-left: none; border-bottom: 3px solid transparent; white-space: nowrap; }
  .admin-nav a.active { border-left-color: transparent; border-bottom-color: var(--pink); }
  .admin-main { padding: 20px 16px; }
  .admin-form-grid { grid-template-columns: 1fr; }
  .admin-stats-grid { grid-template-columns: repeat(2, 1fr); }
  .store-grid { grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 16px; }
}

/* ══════════════════════════════════════════════
   PAGE LAYOUT (shared) — page-content, page-title, page-intro
   ══════════════════════════════════════════════ */
.page-content {
  padding: 64px 0 80px;
}
.page-content .container {
  max-width: 1080px;
}
.page-title {
  font-size: clamp(2.6rem, 6vw, 3.6rem);
  text-align: center;
  margin-bottom: 10px;
  color: var(--text-dark);
  padding-top: 0.2em;
}
.page-intro {
  text-align: center;
  color: var(--text-mid);
  font-size: 1.05rem;
  max-width: 640px;
  margin: 0 auto 48px;
  line-height: 1.75;
}

/* ══════════════════════════════════════════════
   BUTTON ALIASES (legacy markup compatibility)
   - Canonical: .btn-submit (forms), .btn-pink (link CTA), .btn-outline (secondary)
   ══════════════════════════════════════════════ */
.btn.btn-primary,
button.btn-primary,
a.btn-primary {
  display: inline-block;
  background: var(--pink);
  color: white !important;
  border: none;
  padding: 13px 34px;
  border-radius: 30px;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  font-family: 'Poppins', sans-serif;
  text-decoration: none;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  box-shadow: 0 4px 16px rgba(168, 80, 106, 0.3);
}
.btn.btn-primary:hover,
button.btn-primary:hover,
a.btn-primary:hover {
  background: var(--pink-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(168, 80, 106, 0.4);
  color: white !important;
  text-decoration: none;
}

/* ══════════════════════════════════════════════
   ABOUT PAGE
   ══════════════════════════════════════════════ */
.about-page .about-header {
  display: flex;
  align-items: center;
  gap: 32px;
  background: var(--white);
  border-radius: var(--radius);
  padding: 36px 44px;
  box-shadow: 0 4px 24px var(--shadow);
  max-width: 880px;
  margin: 0 auto 40px;
}
.about-page .about-logo {
  width: 240px;
  height: auto;
  max-width: 45%;
  flex-shrink: 0;
  border-radius: var(--radius-sm);
}
.about-page .about-name-block {
  flex: 1;
  min-width: 0;
  border-left: 3px solid var(--pink-light);
  padding-left: 28px;
}
.about-page .about-name-block h2 {
  font-size: clamp(2.2rem, 4.5vw, 3rem);
  color: var(--pink-deep);
  margin-bottom: 6px;
}
.about-page .about-subtitle {
  font-family: 'Poppins', sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-size: 0.8rem;
  color: var(--text-mid);
  font-weight: 500;
  margin: 0;
}
.about-page .about-story,
.about-page .testimonials {
  background: var(--white);
  border-radius: var(--radius);
  padding: 44px 48px;
  box-shadow: 0 4px 24px var(--shadow);
  max-width: 880px;
  margin: 0 auto 32px;
}
.about-page .about-story h2,
.about-page .testimonials h2 {
  font-size: clamp(2rem, 4vw, 2.6rem);
  margin-bottom: 24px;
  text-align: center;
  color: var(--pink-deep);
}
.about-page .about-story p {
  font-family: 'Fraunces', 'Georgia', serif;
  font-size: 1.08rem;
  line-height: 1.9;
  color: var(--text-body);
  margin-bottom: 22px;
  font-variation-settings: "opsz" 24;
}
.about-page .bible-quote {
  margin-top: 32px;
  padding: 24px 28px;
  background: var(--pink-pale);
  border-left: 4px solid var(--pink);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}
.about-page .bible-quote p {
  font-family: 'Fraunces', 'Georgia', serif;
  font-style: italic;
  font-size: 1.05rem;
  color: var(--text-dark);
  margin-bottom: 8px;
}
.about-page .bible-quote cite {
  font-family: 'Poppins', sans-serif;
  font-style: normal;
  font-size: 0.85rem;
  color: var(--text-mid);
  font-weight: 500;
}

@media (max-width: 768px) {
  .about-page .about-header {
    flex-direction: column;
    text-align: center;
    gap: 20px;
    padding: 28px 24px;
  }
  .about-page .about-logo { max-width: 220px; }
  .about-page .about-name-block {
    border-left: none;
    border-top: 3px solid var(--pink-light);
    padding: 20px 0 0;
  }
  .about-page .about-story,
  .about-page .testimonials {
    padding: 32px 24px;
  }
}

/* ══════════════════════════════════════════════
   CONTACT PAGE
   ══════════════════════════════════════════════ */
.contact-page .contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 32px;
  max-width: 960px;
  margin: 0 auto;
  align-items: start;
}
@media (max-width: 768px) {
  .contact-page .contact-grid { grid-template-columns: 1fr; gap: 24px; }
}
.contact-page .contact-info h3,
.contact-page .contact-form h3 {
  font-size: 1.9rem;
  margin-bottom: 24px;
  color: var(--pink-deep);
}
.contact-page .contact-list {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
}
.contact-page .contact-list li {
  padding: 14px 0;
  border-bottom: 1px dashed rgba(212, 115, 139, 0.2);
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.contact-page .contact-list li:last-child { border-bottom: none; }
.contact-page .contact-label {
  font-family: 'Poppins', sans-serif;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-light);
  font-weight: 600;
}
.contact-page .contact-list a {
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
  color: var(--pink-deep);
  word-break: break-word;
}
.contact-page .contact-notice {
  background: var(--pink-pale);
  border-left: 4px solid var(--pink-light);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  padding: 16px 20px;
  font-size: 0.9rem;
  color: var(--text-body);
}
.contact-page .contact-notice p { margin: 0; }
.contact-page .form-success {
  margin: 32px auto 0;
  max-width: 720px;
  background: #e8f5ea;
  border-left: 4px solid #2a8a4b;
  padding: 24px 28px;
  border-radius: 0 var(--radius) var(--radius) 0;
}
.contact-page .form-success h3 { color: #1a6d3a; margin-bottom: 8px; }

/* ══════════════════════════════════════════════
   CUSTOM QUOTES PAGE
   ══════════════════════════════════════════════ */
.quote-page {
  max-width: 820px;
  margin: 0 auto;
}
.quote-page .quote-instructions,
.quote-page .quote-form {
  background: var(--white);
  border-radius: var(--radius);
  padding: 40px 44px;
  box-shadow: 0 4px 24px var(--shadow);
  margin-bottom: 32px;
}
.quote-page .quote-instructions h2,
.quote-page .quote-form h2 {
  font-size: clamp(1.9rem, 4vw, 2.4rem);
  margin-bottom: 20px;
  color: var(--pink-deep);
}
.quote-page .quote-instructions p {
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 16px;
}
.quote-page .quote-list {
  list-style: none;
  padding: 0;
  margin: 18px 0;
}
.quote-page .quote-list li {
  padding: 6px 0 6px 26px;
  position: relative;
  font-size: 1rem;
  color: var(--text-body);
}
.quote-page .quote-list li::before {
  content: '\2665';
  position: absolute;
  left: 0;
  color: var(--pink);
  font-size: 0.9rem;
  top: 8px;
}
.quote-page .quote-notice {
  background: var(--pink-pale);
  border-left: 4px solid var(--pink);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  padding: 16px 20px;
  margin-top: 20px;
  font-size: 0.92rem;
}
.quote-page .quote-notice p { margin: 0; }
.quote-page .form-success {
  background: #e8f5ea;
  border-left: 4px solid #2a8a4b;
  padding: 24px 28px;
  border-radius: 0 var(--radius) var(--radius) 0;
}
.quote-page .form-success h3 { color: #1a6d3a; margin-bottom: 8px; }

@media (max-width: 768px) {
  .quote-page .quote-instructions,
  .quote-page .quote-form { padding: 28px 22px; }
}

/* ══════════════════════════════════════════════
   MENU PAGE — category grid
   ══════════════════════════════════════════════ */
.menu-category-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 24px;
  margin-top: 32px;
}
.menu-category-grid .menu-category {
  border-left: 4px solid var(--pink);
  text-align: center;
  padding: 36px 24px;
}
.menu-category-grid .menu-category h2 {
  font-size: 1.9rem;
  margin: 0;
}

/* ══════════════════════════════════════════════
   PRODUCT SUBPAGES (cakes/cupcakes/etc.) — missing classes
   ══════════════════════════════════════════════ */
.product-page .container { padding: 0; }
.product-page h1 {
  font-size: clamp(2.6rem, 6vw, 3.8rem);
  text-align: center;
  margin-bottom: 10px;
  padding-top: 0.2em;
}
.product-page .product-pricing {
  display: inline-block;
  background: var(--pink-pale);
  border-left: 4px solid var(--pink);
  padding: 12px 22px;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  font-family: 'Poppins', sans-serif;
  font-size: 0.95rem;
  color: var(--text-dark);
  margin: 0 auto 32px;
  text-align: left;
}
.product-page .product-pricing a {
  font-weight: 600;
  color: var(--pink-deep);
}
.product-page > .container > h1 + .product-pricing {
  display: block;
  max-width: fit-content;
  margin: 0 auto 36px;
}
.product-page .product-section {
  margin-top: 32px;
  padding-top: 28px;
  border-top: 1px solid var(--pink-pale);
}
.product-page .product-section:first-of-type {
  margin-top: 24px;
  padding-top: 0;
  border-top: none;
}
.product-page .product-section h2 {
  font-size: clamp(1.7rem, 3.5vw, 2.2rem);
  margin-bottom: 14px;
  color: var(--pink-deep);
}
.product-page .product-section p {
  font-size: 1.02rem;
  line-height: 1.85;
  color: var(--text-body);
}
.product-page .flavour-list {
  list-style: none;
  padding: 0;
  margin: 8px 0 0;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 6px 24px;
}
.product-page .flavour-list li {
  padding: 6px 0 6px 22px;
  position: relative;
  font-size: 0.98rem;
  color: var(--text-body);
}
.product-page .flavour-list li::before {
  content: '\2665';
  position: absolute;
  left: 0;
  top: 10px;
  color: var(--pink-light);
  font-size: 0.75rem;
}
.product-page .flavour-list li strong {
  color: var(--pink-deep);
  font-weight: 700;
  font-size: 0.8rem;
  background: var(--pink-pale);
  padding: 2px 7px;
  border-radius: 4px;
  margin-right: 4px;
  letter-spacing: 0.02em;
}
.product-page .product-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid var(--pink-pale);
}

/* Section style for the whole product page — centers + spacing */
main.product-page {
  padding: 56px 0 72px;
}
main.product-page > .container {
  background: var(--white);
  border-radius: var(--radius);
  padding: 48px 52px;
  box-shadow: 0 4px 24px var(--shadow);
  max-width: 900px;
  margin: 0 auto;
}
@media (max-width: 768px) {
  main.product-page { padding: 32px 0 48px; }
  main.product-page > .container {
    padding: 32px 24px;
    margin: 0 16px;
    border-radius: var(--radius-sm);
  }
  .product-page .product-actions { flex-direction: column; align-items: stretch; }
  .product-page .product-actions > a { text-align: center; }
}

/* Image grid inside seasonal-treats / other-treats */
.product-page .image-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(200px, 100%), 1fr));
  gap: 14px;
  margin: 20px 0 12px;
}
.product-page .image-grid img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: var(--radius-sm);
  box-shadow: 0 3px 14px var(--shadow);
}
.product-page .image-grid-item img { display: block; }

/* ══════════════════════════════════════════════
   GALLERY — category filter support
   ══════════════════════════════════════════════ */
.gallery-section { transition: opacity 0.2s ease; }
.gallery-section p.coming-soon {
  grid-column: 1 / -1;
  text-align: center;
  padding: 32px;
  color: var(--text-light);
  font-size: 0.95rem;
}


/* ══════════════════════════════════════════════
   DRAG & DROP UPLOAD ZONE
   ══════════════════════════════════════════════ */
.drop-zone {
  border: 2px dashed var(--pink-mid, #f9a8d4);
  border-radius: var(--radius, 12px);
  padding: 28px 20px;
  text-align: center;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s;
  background: rgba(249, 168, 212, 0.04);
}
.drop-zone:hover,
.drop-zone--over {
  background: rgba(249, 168, 212, 0.12);
  border-color: var(--pink-deep, #db2777);
}
.drop-zone-prompt {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--text-mid, #6b7280);
  font-size: 0.9rem;
  pointer-events: none;
}
.drop-zone-prompt label { pointer-events: auto; }
.drop-zone-prompt svg { opacity: 0.5; }
