/* ============================================
   CRUMBLE BY MRS. C — Main Stylesheet
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400;1,500&family=Jost:wght@300;400;500;600&display=swap');

/* ── CSS Variables ── */
:root {
  --cream:      #faf6f1;
  --blush:      #f5ece6;
  --rose:       #c8a29e;
  --rose-dark:  #a07a76;
  --gold:       #c9a96e;
  --gold-light: #e8d5b0;
  --dark:       #2a1f1a;
  --mid:        #6b4f46;
  --light-text: #9e8880;
  --white:      #ffffff;
  --shadow:     0 8px 40px rgba(42,31,26,0.10);
  --shadow-sm:  0 2px 16px rgba(42,31,26,0.08);
  --radius:     12px;
  --radius-lg:  24px;
  --transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Jost', sans-serif;
  background: var(--cream);
  color: var(--dark);
  line-height: 1.7;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; height: auto; }
a { text-decoration: none; color: inherit; }

h1, h2, h3, h4 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  line-height: 1.2;
}

/* ── Utility ── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

.section-label {
  font-family: 'Jost', sans-serif;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 12px;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3.2rem);
  color: var(--dark);
  margin-bottom: 16px;
}

.section-sub {
  font-size: 1rem;
  color: var(--light-text);
  font-weight: 300;
  max-width: 520px;
}

.text-center { text-align: center; }

/* ── Buttons ── */
.btn {
  display: inline-block;
  padding: 14px 36px;
  border-radius: 50px;
  font-family: 'Jost', sans-serif;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  cursor: pointer;
  transition: var(--transition);
  border: none;
}
.btn-primary { background: var(--dark); color: var(--white); }
.btn-primary:hover { background: var(--gold); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(201,169,110,0.35); }
.btn-outline { background: transparent; color: var(--white); border: 1.5px solid rgba(255,255,255,0.6); }
.btn-outline:hover { background: var(--white); color: var(--dark); transform: translateY(-2px); }
.btn-gold { background: var(--gold); color: var(--white); }
.btn-gold:hover { background: var(--dark); transform: translateY(-2px); box-shadow: var(--shadow); }
.btn-wa { background: #25D366; color: var(--white); display: inline-flex; align-items: center; gap: 10px; }
.btn-wa:hover { background: #1eb85a; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(37,211,102,0.35); }

/* ============================================
   NAVIGATION
   ============================================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 0 24px;
  transition: var(--transition);
}
.nav.scrolled {
  background: rgba(250,246,241,0.96);
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow-sm);
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}
.nav-logo img {
  height: 56px; width: 56px;
  border-radius: 50%;
  object-fit: cover;
  transition: var(--transition);
}
.nav-logo img:hover { transform: scale(1.05); }

.nav-links { display: flex; align-items: center; gap: 40px; list-style: none; }
.nav-links a {
  font-family: 'Jost', sans-serif;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--dark);
  position: relative;
  transition: var(--transition);
}
.nav.hero-nav .nav-links a { color: var(--white); }
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 1.5px;
  background: var(--gold);
  transition: width 0.3s ease;
}
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
.nav-links a:hover { color: var(--gold); }
.nav.hero-nav .nav-links a:hover { color: var(--gold-light); }

.nav-toggle { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; }
.nav-toggle span { display: block; width: 24px; height: 2px; background: var(--dark); transition: var(--transition); border-radius: 2px; }
.nav.hero-nav .nav-toggle span { background: var(--white); }

@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-toggle { display: flex; }
  .nav-links.open {
    display: flex; flex-direction: column;
    position: fixed; top: 80px; left: 0; right: 0;
    background: var(--cream); padding: 32px 24px 40px;
    gap: 24px; box-shadow: var(--shadow); align-items: flex-start;
  }
  .nav-links.open a { color: var(--dark) !important; font-size: 1.1rem; }
  .nav-links.open li:last-child { margin-top: 8px; }
}

/* ============================================
   HERO CAROUSEL
   ============================================ */
.hero {
  position: relative;
  height: 100svh;
  min-height: 600px;
  overflow: hidden;
}
.hero-slides { position: absolute; inset: 0; }
.hero-slide { position: absolute; inset: 0; opacity: 0; transition: opacity 1.2s ease; }
.hero-slide.active { opacity: 1; }
.hero-slide img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center;
  transform: scale(1.08); transition: transform 7s ease;
}
.hero-slide.active img { transform: scale(1); }
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(42,31,26,0.25) 0%, rgba(42,31,26,0.55) 60%, rgba(42,31,26,0.7) 100%);
}
.hero-content {
  position: absolute;
  bottom: 12%; left: 0; right: 0;
  text-align: center; padding: 0 24px;
  color: var(--white);
}
.hero-eyebrow {
  font-family: 'Jost', sans-serif;
  font-size: 0.72rem; font-weight: 500;
  letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--gold-light); margin-bottom: 20px;
  opacity: 0; transform: translateY(20px);
}
.hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.4rem, 6vw, 5.5rem);
  font-weight: 300; line-height: 1.1;
  color: var(--white); max-width: 840px;
  margin: 0 auto 20px;
  opacity: 0; transform: translateY(30px);
}
.hero-sub {
  font-size: clamp(0.9rem, 1.5vw, 1.1rem);
  font-weight: 300; color: rgba(255,255,255,0.82);
  margin-bottom: 40px; opacity: 0; transform: translateY(20px);
}
.hero-btns {
  display: flex; gap: 16px; justify-content: center;
  flex-wrap: wrap; opacity: 0; transform: translateY(20px);
}
.hero-dots {
  position: absolute; bottom: 32px;
  left: 50%; transform: translateX(-50%);
  display: flex; gap: 8px;
}
.hero-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: rgba(255,255,255,0.4);
  transition: var(--transition); cursor: pointer; border: none;
}
.hero-dot.active { background: var(--white); width: 24px; border-radius: 3px; }

/* ============================================
   ANNOUNCEMENT / SPECIALS SECTION
   ============================================ */
.announcement-section {
  padding: 100px 0;
  background: var(--dark);
}
.announcement-header {
  text-align: center;
  margin-bottom: 56px;
}
.announcement-header .section-title { color: var(--white); }
.announcement-header .section-sub { color: rgba(255,255,255,0.6); margin: 0 auto; }

.announcement-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  max-width: 1100px;
  margin: 0 auto 24px;
}
.announcement-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/5;
  box-shadow: var(--shadow);
  cursor: pointer;
}
.announcement-card img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}
.announcement-card:hover img { transform: scale(1.05); }
.announcement-label {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 40px 28px 28px;
  background: linear-gradient(to top, rgba(42,31,26,0.9) 0%, transparent 100%);
  color: var(--white);
}
.announcement-label .tag {
  font-family: 'Jost', sans-serif;
  font-size: 0.68rem; font-weight: 600;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--gold-light); display: block; margin-bottom: 8px;
}
.announcement-label h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem; font-weight: 400;
}
.announcement-label p {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.75);
  margin-top: 6px;
}
.announcement-note {
  text-align: center;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.5);
  font-style: italic;
  margin-top: 12px;
}

@media (max-width: 640px) {
  .announcement-grid { grid-template-columns: 1fr; }
}

/* ============================================
   CAKE OF THE WEEK
   ============================================ */
.cake-of-week {
  padding: 100px 0;
  background: var(--blush);
}
.cake-of-week-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
}
.cake-of-week-img {
  position: relative;
}
.cake-of-week-img img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}
.cake-of-week-img::before {
  content: '';
  position: absolute;
  top: -20px; right: -20px;
  width: 60%; height: 60%;
  border: 1.5px solid var(--gold-light);
  border-radius: var(--radius-lg);
  z-index: -1;
}
.cake-of-week-badge {
  position: absolute;
  bottom: -16px; left: 32px;
  background: var(--gold);
  color: var(--white);
  padding: 12px 24px;
  border-radius: 50px;
  font-family: 'Jost', sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  box-shadow: 0 8px 24px rgba(201,169,110,0.4);
}
.cake-of-week-text p {
  color: var(--mid);
  font-size: 0.97rem;
  line-height: 1.85;
  margin-bottom: 20px;
}

@media (max-width: 768px) {
  .cake-of-week-inner { grid-template-columns: 1fr; gap: 60px; }
  .cake-of-week-img::before { display: none; }
}

/* ============================================
   PASTRY OF THE DAY
   ============================================ */
.pastry-of-day {
  padding: 100px 0;
  background: var(--cream);
}
.pastry-of-day-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
}
.pastry-of-day-text p {
  color: var(--mid);
  font-size: 0.97rem;
  line-height: 1.85;
  margin-bottom: 20px;
}
.pastry-of-day-img img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}
.pastry-of-day-img {
  position: relative;
}
.pastry-of-day-img::before {
  content: '';
  position: absolute;
  bottom: -20px; left: -20px;
  width: 60%; height: 60%;
  border: 1.5px solid var(--gold-light);
  border-radius: var(--radius-lg);
  z-index: -1;
}

@media (max-width: 768px) {
  .pastry-of-day-inner { grid-template-columns: 1fr; gap: 60px; }
  .pastry-of-day-inner .pastry-of-day-text { order: 2; }
  .pastry-of-day-inner .pastry-of-day-img { order: 1; }
  .pastry-of-day-img::before { display: none; }
}

/* ============================================
   ABOUT PREVIEW (homepage)
   ============================================ */
.about-preview { padding: 100px 0; background: var(--cream); }
.about-preview-inner {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: center;
}
.about-preview-img { position: relative; }
.about-preview-img img {
  width: 100%; aspect-ratio: 4/5;
  object-fit: cover; border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}
.about-preview-img::before {
  content: ''; position: absolute;
  top: -20px; left: -20px;
  width: 60%; height: 60%;
  border: 1.5px solid var(--gold-light);
  border-radius: var(--radius-lg); z-index: -1;
}
.about-preview-text .section-sub { max-width: 100%; margin-bottom: 32px; }
.about-preview-text p { color: var(--mid); margin-bottom: 20px; font-size: 0.97rem; line-height: 1.8; }

@media (max-width: 768px) {
  .about-preview-inner { grid-template-columns: 1fr; gap: 40px; }
  .about-preview-img::before { display: none; }
}

/* ============================================
   INSTAGRAM SECTION
   ============================================ */
.instagram-section { padding: 80px 0; background: var(--dark); text-align: center; }
.instagram-section .section-label { color: var(--gold); }
.instagram-section .section-title { color: var(--white); }
.instagram-section .section-sub { color: rgba(255,255,255,0.6); margin: 0 auto 48px; }

.insta-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 4px; margin-bottom: 48px;
  border-radius: var(--radius); overflow: hidden;
}
.insta-thumb { aspect-ratio: 1; overflow: hidden; position: relative; }
.insta-thumb img {
  width: 100%; height: 100%;
  object-fit: cover; transition: transform 0.5s ease;
  filter: brightness(0.9);
}
.insta-thumb:hover img { transform: scale(1.08); filter: brightness(1); }

@media (max-width: 640px) {
  .insta-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ============================================
   CTA SECTION
   ============================================ */
.cta-section {
  padding: 100px 0;
  background: var(--blush);
  text-align: center;
  position: relative; overflow: hidden;
}
.cta-section::before {
  content: '"';
  position: absolute; top: -40px; left: 50%;
  transform: translateX(-50%);
  font-family: 'Cormorant Garamond', serif;
  font-size: 320px; color: rgba(201,169,110,0.06);
  line-height: 1; pointer-events: none;
}
.cta-section .section-title { margin-bottom: 12px; }
.cta-section .section-sub { margin: 0 auto 40px; }

/* ============================================
   SWIPE CAROUSEL (gallery page)
   ============================================ */
.swipe-carousel-section { padding: 80px 0; }
.swipe-carousel-section + .swipe-carousel-section { padding-top: 0; }

.carousel-header {
  margin-bottom: 40px;
}

.swipe-track-wrap {
  position: relative;
  overflow: hidden;
}
.swipe-track {
  display: flex;
  gap: 20px;
  transition: transform 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: transform;
  cursor: grab;
  user-select: none;
}
.swipe-track.dragging { cursor: grabbing; transition: none; }

.swipe-item {
  flex: 0 0 calc(33.333% - 14px);
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 3/4;
  position: relative;
  box-shadow: var(--shadow-sm);
  cursor: pointer;
}
.swipe-item img {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
  transition: transform 0.6s ease;
  pointer-events: none;
}
.swipe-item:hover img { transform: scale(1.05); }

.swipe-item-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(42,31,26,0.6) 0%, transparent 60%);
  opacity: 0; transition: opacity 0.3s;
  display: flex; align-items: flex-end;
  padding: 20px;
}
.swipe-item:hover .swipe-item-overlay { opacity: 1; }
.swipe-item-overlay span {
  color: var(--white);
  font-family: 'Jost', sans-serif;
  font-size: 0.72rem; font-weight: 500;
  letter-spacing: 0.15em; text-transform: uppercase;
}

/* single item (cookies) */
.single-item-wrap {
  max-width: 400px;
}
.single-item-wrap .swipe-item {
  flex: none;
  width: 100%;
}

.carousel-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 24px;
}
.carousel-dots {
  display: flex; gap: 8px;
}
.carousel-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--gold-light);
  cursor: pointer; border: none;
  transition: var(--transition);
}
.carousel-dot.active { background: var(--gold); width: 20px; border-radius: 3px; }

.carousel-arrows { display: flex; gap: 12px; }
.carousel-arrow {
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 1.5px solid var(--gold-light);
  background: var(--white);
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: var(--transition);
  font-size: 1rem; color: var(--dark);
}
.carousel-arrow:hover { background: var(--gold); border-color: var(--gold); color: var(--white); }
.carousel-arrow:disabled { opacity: 0.3; cursor: not-allowed; }

@media (max-width: 768px) {
  .swipe-item { flex: 0 0 calc(50% - 10px); }
}
@media (max-width: 480px) {
  .swipe-item { flex: 0 0 calc(85% - 10px); }
}

/* ============================================
   GALLERY PAGE HERO (dark bg sections)
   ============================================ */
.gallery-dark-section {
  background: var(--dark);
  padding: 80px 0 100px;
}
.gallery-dark-section .section-title { color: var(--white); }
.gallery-dark-section .section-label { color: var(--gold); }
.gallery-dark-section .section-sub { color: rgba(255,255,255,0.6); }
.gallery-dark-section .carousel-dot { background: rgba(255,255,255,0.25); }
.gallery-dark-section .carousel-dot.active { background: var(--gold); }
.gallery-dark-section .carousel-arrow { background: rgba(255,255,255,0.08); border-color: rgba(255,255,255,0.2); color: var(--white); }
.gallery-dark-section .carousel-arrow:hover { background: var(--gold); border-color: var(--gold); }

/* ============================================
   LIGHTBOX
   ============================================ */
.lightbox {
  position: fixed; inset: 0; z-index: 9999;
  background: rgba(20,14,12,0.95);
  display: none; align-items: center; justify-content: center;
  padding: 20px;
}
.lightbox.open { display: flex; }
.lightbox-inner { position: relative; max-width: 900px; width: 100%; }
.lightbox-inner img {
  width: 100%; max-height: 85vh;
  object-fit: contain; border-radius: var(--radius);
  display: block;
}
.lightbox-close {
  position: absolute; top: -44px; right: 0;
  background: none; border: none;
  color: var(--white); font-size: 1.8rem;
  cursor: pointer; opacity: 0.7;
  transition: opacity 0.2s;
}
.lightbox-close:hover { opacity: 1; }
.lightbox-prev, .lightbox-next {
  position: fixed; top: 50%; transform: translateY(-50%);
  background: rgba(255,255,255,0.1); border: none;
  color: var(--white); font-size: 1.5rem;
  width: 50px; height: 50px;
  border-radius: 50%; cursor: pointer;
  transition: background 0.2s;
  display: flex; align-items: center; justify-content: center;
}
.lightbox-prev { left: 16px; }
.lightbox-next { right: 16px; }
.lightbox-prev:hover, .lightbox-next:hover { background: var(--gold); }
.lightbox-caption {
  text-align: center; margin-top: 16px;
  color: rgba(255,255,255,0.6);
  font-size: 0.88rem; font-style: italic;
}

/* ============================================
   PAGE HERO (inner pages)
   ============================================ */
.page-hero {
  position: relative; height: 420px;
  display: flex; align-items: flex-end;
  overflow: hidden; margin-top: 80px;
}
.page-hero-bg {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; object-position: center;
}
.page-hero::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(42,31,26,0.2) 0%, rgba(42,31,26,0.72) 100%);
}
.page-hero-content {
  position: relative; z-index: 1;
  padding-bottom: 64px; color: var(--white);
}
.page-hero-content h1 {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 300; color: var(--white); margin-bottom: 0;
}
.page-hero-content .section-label { color: var(--gold-light); }

/* ============================================
   PRICING TABLE
   ============================================ */
.pricing-section {
  padding: 80px 0 100px;
  background: var(--blush);
}
.pricing-header { text-align: center; margin-bottom: 56px; }
.pricing-header .section-sub { margin: 0 auto; }

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  max-width: 900px;
  margin: 0 auto 48px;
}
.price-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px 20px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  position: relative;
}
.price-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}
.price-card.featured {
  background: var(--dark);
  color: var(--white);
}
.price-card.featured::before {
  content: 'Most Popular';
  position: absolute;
  top: -12px; left: 50%; transform: translateX(-50%);
  background: var(--gold);
  color: var(--white);
  font-family: 'Jost', sans-serif;
  font-size: 0.65rem; font-weight: 600;
  letter-spacing: 0.15em; text-transform: uppercase;
  padding: 4px 14px; border-radius: 50px;
  white-space: nowrap;
}
.price-size {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.2rem; font-weight: 400;
  color: var(--gold); line-height: 1;
  margin-bottom: 4px;
}
.price-label {
  font-size: 0.72rem; font-weight: 500;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--light-text); margin-bottom: 16px;
}
.price-card.featured .price-label { color: rgba(255,255,255,0.5); }
.price-amount {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem; color: var(--dark); font-weight: 500;
}
.price-card.featured .price-amount { color: var(--white); }
.price-note {
  font-size: 0.72rem; color: var(--light-text);
  margin-top: 4px;
}
.price-card.featured .price-note { color: rgba(255,255,255,0.4); }

.pricing-disclaimer {
  text-align: center;
  font-size: 0.85rem;
  color: var(--light-text);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.8;
}

@media (max-width: 768px) {
  .pricing-grid { grid-template-columns: repeat(3, 1fr); gap: 12px; }
}
@media (max-width: 480px) {
  .pricing-grid { grid-template-columns: 1fr 1fr; }
}

/* ============================================
   ABOUT PAGE
   ============================================ */
.about-story { padding: 80px 0 100px; }
.about-layout {
  display: grid; grid-template-columns: 1fr 1.2fr;
  gap: 80px; align-items: start;
}
.about-img-stack { position: relative; }
.about-img-stack img {
  width: 100%; aspect-ratio: 3/4;
  object-fit: cover; border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}
.about-img-badge {
  position: absolute; bottom: -20px; right: 24px;
  background: var(--gold);
  color: var(--white);
  padding: 16px 20px;
  border-radius: var(--radius);
  text-align: center;
  box-shadow: 0 8px 24px rgba(201,169,110,0.35);
}
.about-img-badge strong {
  display: block; font-size: 1.6rem;
  font-family: 'Cormorant Garamond', serif;
}
.about-img-badge span {
  font-size: 0.7rem; letter-spacing: 0.1em;
  text-transform: uppercase; opacity: 0.85;
}
.about-text .section-sub { max-width: 100%; margin-bottom: 32px; }
.about-text p { color: var(--mid); margin-bottom: 20px; line-height: 1.85; }

.about-values {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 20px; margin: 40px 0;
}
.value-card {
  padding: 24px; border-radius: var(--radius);
  background: var(--blush); border-left: 3px solid var(--gold);
}
.value-card h4 { font-family: 'Cormorant Garamond', serif; font-size: 1.1rem; margin-bottom: 8px; }
.value-card p { font-size: 0.85rem; color: var(--light-text); margin: 0; }

/* Products list */
.products-list {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 10px; margin: 24px 0;
}
.product-tag {
  display: flex; align-items: center; gap: 10px;
  padding: 10px 16px;
  border-radius: var(--radius);
  background: var(--blush);
  font-size: 0.85rem; color: var(--dark);
  font-weight: 500;
}
.product-tag::before {
  content: '✦';
  color: var(--gold); font-size: 0.6rem;
  flex-shrink: 0;
}

@media (max-width: 768px) {
  .about-layout { grid-template-columns: 1fr; gap: 48px; }
  .about-img-badge { right: 16px; }
  .about-values { grid-template-columns: 1fr; }
  .products-list { grid-template-columns: 1fr; }
}

/* ============================================
   ORDER PAGE
   ============================================ */
.order-section { padding: 80px 0 100px; }
.order-layout {
  display: grid; grid-template-columns: 1.6fr 1fr;
  gap: 60px; align-items: start;
}
.order-form-wrap {
  background: var(--white); border-radius: var(--radius-lg);
  padding: 48px; box-shadow: var(--shadow);
}
.form-title { font-size: 2rem; margin-bottom: 8px; }
.form-sub { font-size: 0.88rem; color: var(--light-text); margin-bottom: 36px; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group { display: flex; flex-direction: column; gap: 8px; }
.form-group.full { grid-column: 1 / -1; }
.form-group label {
  font-size: 0.72rem; font-weight: 600;
  letter-spacing: 0.15em; text-transform: uppercase; color: var(--mid);
}
.form-group input, .form-group select, .form-group textarea {
  padding: 14px 18px;
  border: 1.5px solid var(--gold-light);
  border-radius: var(--radius);
  background: var(--cream);
  font-family: 'Jost', sans-serif;
  font-size: 0.9rem; color: var(--dark);
  transition: border-color 0.3s; outline: none; appearance: none;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  border-color: var(--gold); background: var(--white);
}
.form-group textarea { resize: vertical; min-height: 100px; }
.upload-area {
  border: 2px dashed var(--gold-light); border-radius: var(--radius);
  padding: 32px; text-align: center; cursor: pointer;
  transition: var(--transition); background: var(--cream);
}
.upload-area:hover { border-color: var(--gold); background: var(--blush); }
.upload-area p { font-size: 0.85rem; color: var(--light-text); margin-top: 8px; }
.upload-icon { font-size: 2rem; margin-bottom: 8px; }
.form-submit { margin-top: 8px; }

.order-sidebar { position: sticky; top: 100px; display: flex; flex-direction: column; gap: 24px; }
.sidebar-card {
  background: var(--white); border-radius: var(--radius-lg);
  padding: 32px; box-shadow: var(--shadow-sm);
}
.sidebar-card h3 {
  font-size: 1.4rem; margin-bottom: 16px;
  padding-bottom: 12px; border-bottom: 1px solid var(--gold-light);
}
.sidebar-card p { font-size: 0.88rem; color: var(--mid); line-height: 1.8; margin-bottom: 16px; }

.payment-methods { display: flex; flex-direction: column; gap: 10px; }
.payment-method {
  display: flex; align-items: center; gap: 12px;
  padding: 12px 16px; border-radius: var(--radius);
  background: var(--blush); font-size: 0.85rem; font-weight: 500; color: var(--dark);
}
.payment-icon {
  width: 32px; height: 32px; border-radius: 50%;
  background: var(--gold); display: flex; align-items: center; justify-content: center;
  font-size: 0.75rem; color: var(--white); font-weight: 700; flex-shrink: 0;
}
.hours-list { list-style: none; }
.hours-list li {
  display: flex; justify-content: space-between;
  padding: 8px 0; border-bottom: 1px solid var(--blush);
  font-size: 0.85rem; color: var(--mid);
}
.hours-list li:last-child { border: none; }
.hours-list li span { font-weight: 500; color: var(--dark); }

@media (max-width: 900px) {
  .order-layout { grid-template-columns: 1fr; }
  .order-sidebar { position: static; }
  .order-form-wrap { padding: 32px 24px; }
  .form-grid { grid-template-columns: 1fr; }
}

/* ============================================
   CONTACT PAGE
   ============================================ */
.contact-section { padding: 80px 0 100px; }
.contact-layout {
  display: grid; grid-template-columns: 1fr 1.4fr;
  gap: 60px; align-items: start;
}
.contact-info { display: flex; flex-direction: column; gap: 24px; }
.contact-card {
  background: var(--white); border-radius: var(--radius-lg);
  padding: 32px; box-shadow: var(--shadow-sm);
}
.contact-card h3 {
  font-size: 1.3rem; margin-bottom: 20px;
  padding-bottom: 12px; border-bottom: 1px solid var(--gold-light);
}
.contact-item {
  display: flex; align-items: flex-start;
  gap: 16px; margin-bottom: 18px;
}
.contact-item:last-child { margin: 0; }
.contact-item-icon {
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--blush); display: flex;
  align-items: center; justify-content: center;
  font-size: 1rem; flex-shrink: 0;
}
.contact-item-text { flex: 1; }
.contact-item-text label {
  display: block; font-size: 0.68rem; font-weight: 600;
  letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 4px;
}
.contact-item-text a, .contact-item-text span {
  font-size: 0.92rem; color: var(--dark); transition: color 0.3s;
}
.contact-item-text a:hover { color: var(--gold); }

.map-container {
  border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow); height: 480px;
}
.map-container iframe { width: 100%; height: 100%; border: none; }

@media (max-width: 860px) {
  .contact-layout { grid-template-columns: 1fr; }
  .map-container { height: 320px; }
}

/* ============================================
   FOOTER
   ============================================ */
footer { background: var(--dark); color: rgba(255,255,255,0.7); padding: 64px 0 32px; }
.footer-inner {
  display: grid; grid-template-columns: 1.5fr 1fr 1fr;
  gap: 60px; margin-bottom: 48px;
}
.footer-brand img {
  height: 64px; width: 64px;
  border-radius: 50%; object-fit: cover; margin-bottom: 20px;
}
.footer-brand p { font-size: 0.88rem; line-height: 1.8; margin-bottom: 24px; }
.footer-social { display: flex; gap: 12px; }
.social-icon {
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(255,255,255,0.08);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.6); transition: var(--transition);
}
.social-icon:hover { background: var(--gold); color: var(--white); }
.footer-col h4 {
  font-family: 'Jost', sans-serif;
  font-size: 0.72rem; font-weight: 600;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 20px;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col ul a { font-size: 0.88rem; transition: color 0.3s; }
.footer-col ul a:hover { color: var(--gold); }
.footer-col address { font-style: normal; font-size: 0.88rem; line-height: 1.8; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 24px;
  display: flex; justify-content: space-between;
  flex-wrap: wrap; gap: 8px;
  font-size: 0.8rem; color: rgba(255,255,255,0.35);
}

@media (max-width: 768px) {
  .footer-inner { grid-template-columns: 1fr; gap: 40px; }
  .footer-bottom { flex-direction: column; }
}

/* ============================================
   ANIMATIONS
   ============================================ */
.reveal { opacity: 0; transform: translateY(40px); transition: opacity 0.8s ease, transform 0.8s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-left { opacity: 0; transform: translateX(-40px); transition: opacity 0.8s ease, transform 0.8s ease; }
.reveal-left.visible { opacity: 1; transform: translateX(0); }
.reveal-right { opacity: 0; transform: translateX(40px); transition: opacity 0.8s ease, transform 0.8s ease; }
.reveal-right.visible { opacity: 1; transform: translateX(0); }

.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }
.delay-5 { transition-delay: 0.5s; }

/* ============================================
   MISC
   ============================================ */
.divider { display: flex; align-items: center; gap: 16px; margin: 16px 0; }
.divider::before, .divider::after { content: ''; flex: 1; height: 1px; background: var(--gold-light); }
.divider span { font-size: 0.9rem; color: var(--gold); }

.hours-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--blush); padding: 8px 20px;
  border-radius: 50px; font-size: 0.8rem;
  font-weight: 500; color: var(--mid); margin-bottom: 32px;
}
.hours-badge span { color: var(--gold); font-weight: 600; }

/* Floating WhatsApp */
.whatsapp-float {
  position: fixed; bottom: 28px; right: 28px;
  width: 56px; height: 56px; border-radius: 50%;
  background: #25D366;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  z-index: 999; transition: var(--transition);
}
.whatsapp-float:hover { transform: scale(1.1); box-shadow: 0 8px 32px rgba(37,211,102,0.5); }
.whatsapp-float svg { fill: white; width: 28px; height: 28px; }
