/* ============================================================
   Sarah Car Deco — Main Stylesheet
   Theme: Soft Blush · Cream · Warm Gold · Minimalist Elegant
   Fonts: Cormorant Garamond (display) + Jost (body)
   ============================================================ */

/* ── CSS Variables ─────────────────────────────────────────── */
:root {
  --cream:        #FDFAF6;
  --blush:        #F5EDE8;
  --blush-mid:    #EDD9D0;
  --rose:         #C9897A;
  --rose-dark:    #A86B5C;
  --rose-light:   #E8B9AE;
  --gold:         #C9A87C;
  --gold-light:   #E8D4B0;
  --charcoal:     #2A2525;
  --gray:         #6B6169;
  --light-gray:   #E8E0DC;
  --white:        #FFFFFF;
  --shadow:       0 4px 24px rgba(42, 37, 37, 0.08);
  --shadow-lg:    0 12px 40px rgba(42, 37, 37, 0.13);
  --radius:       10px;
  --radius-lg:    18px;
  --transition:   all 0.3s ease;
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'Jost', sans-serif;
}

/* ── Reset & Base ──────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.7;
  color: var(--charcoal);
  background: var(--cream);
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ── Typography ────────────────────────────────────────────── */
h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.2;
  color: var(--charcoal);
}
h1 { font-size: clamp(2.4rem, 5vw, 3.8rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.8rem); }
h4 { font-size: 1.15rem; font-weight: 500; }
p  { color: var(--gray); }

.section-label {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--rose);
  display: block;
  margin-bottom: 0.5rem;
}
.section-title { margin-bottom: 0.5rem; }
.section-sub   { color: var(--gray); font-size: 0.95rem; max-width: 700px; }
.text-center { text-align: center; }
.text-center .section-sub { margin: 0 auto; }

/* ── Container ─────────────────────────────────────────────── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section { padding: 80px 0; }
.section-sm { padding: 50px 0; }

/* ── Buttons ───────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-body); font-size: 0.82rem; font-weight: 500;
  letter-spacing: 0.1em; text-transform: uppercase;
  padding: 13px 32px; border-radius: 50px;
  transition: var(--transition); white-space: nowrap;
}
.btn-primary {
  background: var(--rose); color: var(--white);
  box-shadow: 0 4px 16px rgba(201, 137, 122, 0.35);
}
.btn-primary:hover { background: var(--rose-dark); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(201, 137, 122, 0.45); }

.btn-outline {
  border: 1.5px solid var(--rose); color: var(--rose); background: rgba(255,255,255,0.85);
}
.btn-outline:hover { background: var(--rose); color: var(--white); transform: translateY(-2px); }

.btn-gold {
  background: var(--gold); color: var(--white);
  box-shadow: 0 4px 16px rgba(201, 168, 124, 0.35);
}
.btn-gold:hover { background: #b3935e; transform: translateY(-2px); }

.btn-ghost {
  color: var(--rose); font-size: 0.82rem; font-weight: 500;
  letter-spacing: 0.08em; text-transform: uppercase;
  display: inline-flex; align-items: center; gap: 6px;
}
.btn-ghost::after { content: '→'; transition: transform 0.2s; }
.btn-ghost:hover::after { transform: translateX(4px); }
.btn-ghost:hover { color: var(--rose-dark); }

/* ── Header ────────────────────────────────────────────────── */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(253, 250, 246, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--light-gray);
  transition: box-shadow 0.3s;
}
.site-header.scrolled { box-shadow: var(--shadow); }

.header-inner {
  max-width: 1200px; margin: 0 auto; padding: 10px 24px;
  min-height: 72px; display: flex; align-items: center; gap: 32px;
}

.logo { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.logo-icon { font-size: 1.4rem; color: var(--rose); line-height: 1; }
.logo-text { display: flex; flex-direction: column; line-height: 1; }
.logo-name {
  font-family: var(--font-display); font-size: 1.25rem; font-weight: 600;
  color: var(--charcoal); letter-spacing: 0.02em;
}
.logo-tagline {
  font-size: 0.62rem; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--rose); font-weight: 400; margin-top: 2px;
}

.main-nav { display: flex; align-items: center; gap: 4px; margin-left: auto; }
.main-nav > a, .nav-dropdown-toggle {
  font-size: 0.82rem; font-weight: 400; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--gray); padding: 8px 14px; border-radius: 6px;
  transition: var(--transition); position: relative;
}
.main-nav > a:hover, .nav-dropdown-toggle:hover,
.main-nav > a.active, .nav-dropdown-toggle.active {
  color: var(--rose); background: rgba(201, 137, 122, 0.07);
}
.nav-dropdown { position: relative; }
.nav-dropdown-toggle { cursor: pointer; }
.nav-dropdown-menu {
  position: absolute; top: calc(100% + 8px); left: 50%; transform: translateX(-50%);
  background: var(--white); border-radius: var(--radius); box-shadow: var(--shadow-lg);
  min-width: 200px; padding: 8px 0; opacity: 0; visibility: hidden;
  transform: translateX(-50%) translateY(-8px);
  transition: all 0.25s ease; pointer-events: none;
  border: 1px solid var(--light-gray);
}
.nav-dropdown:hover .nav-dropdown-menu {
  opacity: 1; visibility: visible;
  transform: translateX(-50%) translateY(0); pointer-events: auto;
}
.nav-dropdown-menu a {
  display: block; padding: 10px 20px; font-size: 0.85rem;
  color: var(--gray); transition: var(--transition);
}
.nav-dropdown-menu a:hover { color: var(--rose); background: var(--blush); }

.header-actions { display: flex; align-items: center; gap: 12px; }
.btn-whatsapp {
  display: inline-flex; align-items: center; gap: 7px;
  font-size: 0.78rem; font-weight: 500; letter-spacing: 0.08em; text-transform: uppercase;
  background: var(--rose); color: var(--white);
  padding: 9px 20px; border-radius: 50px;
  transition: var(--transition);
}
.btn-whatsapp:hover { background: var(--rose-dark); transform: translateY(-1px); }

.burger { display: none; flex-direction: column; gap: 5px; padding: 4px; }
.burger span {
  display: block; width: 22px; height: 1.5px; background: var(--charcoal);
  transition: var(--transition);
}

/* ── Hero Section ──────────────────────────────────────────── */
.hero {
  position: relative; overflow: hidden;
  background: transparent;
  min-height: 88vh; display: flex; align-items: center; width: 100%;
}
#heroCanvas { display: none; }
#heroBgVideo {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; z-index: 0;
  opacity: 1;
}

.hero-bg { display: none; }
.hero-inner {
  width: 100%; padding: 60px 50px 60px 8%;
  display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center;
  position: relative; z-index: 3;
}
.hero-content { animation: fadeUp 0.9s ease both; position: relative; z-index: 4; padding-left: 60px; }
.hero-ribbon {
  display: inline-flex; align-items: center; gap: 10px;
  background: rgba(201,137,122,0.15); border: 1px solid rgba(201,137,122,0.4);
  border-radius: 50px; padding: 6px 16px; margin-bottom: 28px;
}
.hero-ribbon span {
  font-size: 0.7rem; letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--rose); font-weight: 500;
}
.hero-title {
  font-size: clamp(2.8rem, 5.5vw, 4.2rem); margin-bottom: 20px; line-height: 1.1;
  background: linear-gradient(270deg, #A86B5C, #8B6914, #7b3d6e, #C9897A, #6b4c8b, #A86B5C, #8B6914, #C9897A);
  background-size: 400% 400%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradientShift 8s ease infinite;
}
.hero-title em { font-style: italic; }
@keyframes gradientShift {
  0%   { background-position: 0% 50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}
.hero-desc { font-size: 2.8rem; color: var(--charcoal); margin-bottom: 36px; max-width: 600px; line-height: 1.8; font-family: 'Tangerine', cursive; font-weight: 700; }
.hero-actions { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; }

.hero-visual { position: relative; animation: fadeIn 1.2s ease both; z-index: 4; width: 100%; }
.hero-image-frame {
  position: relative;
  width: 100%;
  max-width: 640px;
  height: 460px;
  border-radius: 4px;
  background: #1a1a2e;
  box-shadow: 0 25px 70px rgba(0,0,0,0.5), 0 0 0 2px rgba(201,137,122,0.3);
}
.hero-image-frame-inner {
  position: absolute;
  inset: 5px;
  border-radius: 14px;
  overflow: hidden;
  background: var(--blush-mid);
  height: calc(100% - 10px);
}
/* Decorative corner flourishes */
.hero-image-frame::before,
.hero-image-frame::after {
  content: '';
  position: absolute;
  width: 48px; height: 48px;
  border-color: rgba(255,255,255,0.7);
  border-style: solid;
  z-index: 20; pointer-events: none;
  border-radius: 4px;
}
.hero-image-frame::before {
  top: -6px; left: -6px;
  border-width: 2.5px 0 0 2.5px;
}
.hero-image-frame::after {
  bottom: -6px; right: -6px;
  border-width: 0 2.5px 2.5px 0;
}
.hero-image-frame img { width: 100%; height: 100%; object-fit: cover; border-radius: 14px; }

/* ── Hero Slider ───────────────────────────────────────────── */
.hero-slider { position: relative; width: 100%; height: 100%; border-radius: 14px; overflow: hidden; }
.hero-slide {
  position: absolute; inset: 0;
  opacity: 0; transition: opacity 0.8s ease;
  pointer-events: none;
}
.hero-slide.active { opacity: 1; pointer-events: auto; }
.hero-slide img { width: 100%; height: 100%; object-fit: cover; }
.hero-slider-arrow {
  position: absolute; top: 50%; transform: translateY(-50%);
  background: rgba(255,255,255,0.75); border: none; border-radius: 50%;
  width: 34px; height: 34px; display: flex; align-items: center; justify-content: center;
  cursor: pointer; z-index: 10; transition: background 0.2s;
  font-size: 0.85rem; color: var(--charcoal); box-shadow: 0 2px 8px rgba(0,0,0,0.12);
}
.hero-slider-arrow:hover { background: rgba(255,255,255,0.95); }
.hero-slider-arrow.prev { left: 10px; }
.hero-slider-arrow.next { right: 10px; }
.hero-slider-dots {
  position: absolute; bottom: 12px; left: 50%; transform: translateX(-50%);
  display: flex; gap: 6px; z-index: 10;
}
.hero-slider-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: rgba(255,255,255,0.55); border: none; cursor: pointer;
  transition: background 0.25s, transform 0.25s; padding: 0;
}
.hero-slider-dot.active { background: var(--white); transform: scale(1.3); }

.hero-badge {
  position: absolute; bottom: 24px; left: -20px;
  background: var(--white); border-radius: var(--radius);
  padding: 14px 20px; box-shadow: var(--shadow);
  display: flex; align-items: center; gap: 12px;
}
.hero-badge-icon { font-size: 1.6rem; }
.hero-badge-text { display: flex; flex-direction: column; }
.hero-badge-text strong { font-size: 1.1rem; font-family: var(--font-display); }
.hero-badge-text span { font-size: 0.72rem; color: var(--gray); letter-spacing: 0.05em; }
.hero-dot {
  position: absolute; border-radius: 50%;
  background: var(--gold-light); opacity: 0.5; pointer-events: none;
}
.hero-dot-1 { width: 180px; height: 180px; top: -40px; right: -40px; }
.hero-dot-2 { width: 80px; height: 80px; bottom: 60px; left: -20px; background: var(--rose-light); }

/* ── Category Cards ────────────────────────────────────────── */
.categories-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 24px;
}
.category-card {
  background: var(--white); border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow); transition: var(--transition); display: block;
  border: 1px solid var(--light-gray);
}
.category-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.category-card-image {
  aspect-ratio: 4/3; overflow: hidden; background: var(--blush);
  position: relative;
}
.category-card-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.category-card-image .placeholder-icon {
  position: absolute; inset: 0; display: flex; align-items: center; justify-content: center;
  font-size: 2.5rem;
}
.category-card:hover .category-card-image img { transform: scale(1.05); }
.category-card-body { padding: 20px; }
.category-card-body h3 { font-size: 1.2rem; margin-bottom: 6px; }
.category-card-body p { font-size: 0.85rem; color: var(--gray); margin-bottom: 12px; line-height: 1.6; }
.category-count {
  font-size: 0.72rem; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--rose); font-weight: 500;
}

/* ── Product Grid ──────────────────────────────────────────── */
.products-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 28px;
}
.product-card {
  background: var(--white); border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow); transition: var(--transition); display: block;
  border: 1px solid var(--light-gray); position: relative;
}
.product-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.product-card-image {
  aspect-ratio: 1/1; overflow: hidden; background: var(--blush);
  position: relative;
}
.product-card-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.product-card:hover .product-card-image img { transform: scale(1.07); }
.product-card-image .placeholder-thumb {
  position: absolute; inset: 0; display: flex; align-items: center;
  justify-content: center; flex-direction: column; gap: 8px;
}
.placeholder-thumb .ph-icon { font-size: 2.5rem; opacity: 0.3; }
.placeholder-thumb .ph-text { font-size: 0.7rem; color: var(--gray); letter-spacing: 0.1em; text-transform: uppercase; }

.product-featured-badge {
  position: absolute; top: 12px; left: 12px;
  background: var(--gold); color: var(--white);
  font-size: 0.65rem; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase;
  padding: 4px 10px; border-radius: 50px;
}
.product-card-body { padding: 18px 20px 20px; }
.product-card-category {
  font-size: 0.7rem; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--rose); font-weight: 500; margin-bottom: 6px;
}
.product-card-name { font-size: 1.1rem; margin-bottom: 8px; color: var(--charcoal); }
.product-card-desc { font-size: 0.85rem; color: var(--gray); margin-bottom: 14px; line-height: 1.6;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.product-card-footer {
  display: flex; align-items: center; justify-content: space-between;
}
.product-card-price {
  font-size: 0.95rem; font-weight: 600; color: var(--rose-dark);
  font-family: var(--font-body);
}
.product-enquire {
  font-size: 0.75rem; font-weight: 500; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--rose); display: flex; align-items: center; gap: 5px;
  transition: var(--transition);
}
.product-enquire::after { content: '→'; transition: transform 0.2s; }
.product-card:hover .product-enquire::after { transform: translateX(4px); }
.product-image-count {
  font-size: 0.7rem; color: var(--gray); display: flex; align-items: center; gap: 4px;
}

/* ── Section Header ────────────────────────────────────────── */
.section-header { margin-bottom: 48px; }
.section-header.center { text-align: center; }
.section-header.center .section-sub { margin: 0 auto; }
.divider {
  width: 40px; height: 2px; background: var(--gold); border-radius: 2px;
  margin: 16px 0;
}
.divider.center { margin: 16px auto; }

/* ── Features Strip ────────────────────────────────────────── */
.features-strip { background: #f8f6f3; padding: 50px 0; border-top: 1px solid var(--light); border-bottom: 1px solid var(--light); }
.features-strip .container { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; }
.feature-item { text-align: center; color: var(--charcoal); }
.feature-icon { margin-bottom: 12px; display: flex; align-items: center; justify-content: center; }
.feature-icon img { width: 100px; height: 100px; object-fit: contain; }
.feature-item h4 { color: var(--charcoal); font-family: var(--font-display); font-size: 1.1rem; margin-bottom: 6px; }
.feature-item p { color: var(--gray); font-size: 0.85rem; }

/* ── Bento Collections Grid ────────────────────────────────── */
.bento-section { background: var(--white); padding: 70px 0; }
.bento-header { margin-bottom: 28px; }
.bento-title-row {
  display: flex; align-items: center; gap: 14px; margin-bottom: 14px;
}
.bento-icon { font-size: 1.6rem; }
.bento-title {
  font-family: var(--font-body); font-size: 1.5rem;
  font-weight: 400; color: var(--charcoal); letter-spacing: -.01em;
}
.bento-title strong { font-weight: 700; color: var(--charcoal); }
.bento-divider {
  height: 1.5px;
  background: linear-gradient(to right, var(--rose), var(--gold), transparent);
}

.bento-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

/* Combined card */
.bento-combined {
  border-radius: 14px; overflow: hidden; text-decoration: none;
  display: flex; flex-direction: column;
  border: 1.5px solid rgba(201,137,122,.12);
  background: #f7f4f1;
  transition: transform .25s, box-shadow .25s;
}
.bento-combined:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(0,0,0,.1); }
.bento-combined-img {
  width: 100%; aspect-ratio: 4/3; overflow: hidden;
  background: var(--blush); position: relative;
}
.bento-combined-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.bento-combined:hover .bento-combined-img img { transform: scale(1.05); }
.bento-combined-body {
  padding: 16px; display: flex; flex-direction: column; gap: 6px; flex: 1;
}
.bento-combined-footer {
  display: flex; align-items: center; justify-content: space-between;
  margin-top: auto; padding-top: 10px; flex-wrap: wrap; gap: 8px;
}
.bento-price {
  font-family: var(--font-body); font-size: 1rem;
  font-weight: 600; color: var(--rose);
}
.bento-placeholder-card { opacity: .55; pointer-events: none; }
.bento-placeholder {
  width: 100%; height: 100%; background: var(--blush);
  display: flex; align-items: center; justify-content: center;
}
.bento-placeholder span { font-size: 2.5rem; opacity: .4; }
.bento-cat-label {
  font-size: .72rem; letter-spacing: .1em; text-transform: uppercase;
  color: var(--rose); font-weight: 500;
}
.bento-cat-name {
  font-family: var(--font-display); font-size: 1.2rem;
  color: var(--charcoal); line-height: 1.2; font-weight: 400;
}
.bento-cat-desc { font-size: .82rem; color: var(--gray); line-height: 1.6; }
.bento-btn {
  display: inline-block;
  border: 1.5px solid var(--charcoal); border-radius: 50px;
  padding: 6px 16px; font-size: .75rem; letter-spacing: .04em;
  color: var(--charcoal); font-weight: 500;
  transition: background .2s, color .2s;
}
.bento-combined:hover .bento-btn { background: var(--rose); border-color: var(--rose); color: var(--white); }

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

/* ── Photo Gallery ─────────────────────────────────────────── */
.gallery-section { background: var(--white); }
.gallery-filters {
  display: flex; flex-wrap: wrap; gap: 10px;
  margin-bottom: 36px;
}
.gallery-filter-btn {
  padding: 8px 22px; border-radius: 50px; border: 1.5px solid var(--light);
  background: transparent; color: var(--charcoal); font-size: .85rem;
  font-family: var(--font-body); cursor: pointer; font-weight: 500;
  letter-spacing: .04em; transition: all .2s;
}
.gallery-filter-btn:hover { border-color: var(--rose); color: var(--rose); }
.gallery-filter-btn.active { background: var(--rose); border-color: var(--rose); color: #fff; }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.gallery-item {
  position: relative; overflow: hidden;
  border-radius: 10px; cursor: pointer;
  transition: transform .25s, box-shadow .25s;
}
.gallery-item:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(0,0,0,.12); }
.gallery-item img {
  width: 100%; aspect-ratio: 4/3;
  object-fit: cover; display: block;
  transition: transform .4s ease;
}
.gallery-item:hover img { transform: scale(1.05); }
.gallery-item-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(42,37,37,.65) 0%, transparent 55%);
  display: flex; align-items: flex-end; justify-content: space-between;
  padding: 14px 16px;
  opacity: 0; transition: opacity .3s;
}
.gallery-item:hover .gallery-item-overlay { opacity: 1; }
.gallery-item-overlay span { color: #fff; font-size: .9rem; font-weight: 500; }
.gallery-zoom-icon { font-size: 1.1rem; }
.gallery-item.hidden { display: none; }

/* ── Gallery Pagination ────────────────────────────────────── */
.gallery-pagination {
  display: flex; justify-content: center; align-items: center;
  gap: 8px; margin-top: 40px; flex-wrap: wrap;
}
.gallery-page-btn {
  width: 38px; height: 38px; border-radius: 50%;
  border: 1.5px solid var(--light); background: transparent;
  color: var(--charcoal); font-size: .85rem; font-weight: 500;
  cursor: pointer; transition: all .2s; font-family: var(--font-body);
  display: flex; align-items: center; justify-content: center;
}
.gallery-page-btn:hover { border-color: var(--rose); color: var(--rose); }
.gallery-page-btn.active { background: var(--rose); border-color: var(--rose); color: #fff; }
.gallery-page-btn.arrow { width: auto; padding: 0 16px; border-radius: 50px; font-size: .8rem; }
.gallery-page-btn.arrow:disabled { opacity: .35; cursor: not-allowed; }

/* ── Gallery Lightbox ──────────────────────────────────────── */
.g-lightbox {
  display: none; position: fixed; inset: 0;
  background: rgba(0,0,0,0.93); z-index: 9999;
  align-items: center; justify-content: center;
}
.g-lightbox.open { display: flex; }
.g-lightbox-inner {
  position: relative; max-width: 90vw; max-height: 90vh;
  display: flex; flex-direction: column; align-items: center; gap: 12px;
}
.g-lightbox-inner img {
  max-width: 90vw; max-height: 80vh;
  object-fit: contain; border-radius: 8px;
  box-shadow: 0 8px 40px rgba(0,0,0,0.6);
  transition: opacity .3s;
}
.g-lightbox-caption {
  color: rgba(255,255,255,0.9); font-size: 1rem;
  font-family: var(--font-display); font-style: italic; text-align: center;
}
.g-lightbox-counter {
  color: rgba(255,255,255,0.45); font-size: .78rem; letter-spacing: .08em;
}
.g-lightbox-close {
  position: fixed; top: 20px; right: 24px;
  background: rgba(255,255,255,0.15); border: none; color: #fff;
  font-size: 1.2rem; width: 40px; height: 40px; border-radius: 50%;
  cursor: pointer; transition: background .2s; z-index: 10000;
  display: flex; align-items: center; justify-content: center;
}
.g-lightbox-close:hover { background: rgba(255,255,255,0.3); }
.g-lightbox-arrow {
  position: fixed; top: 50%; transform: translateY(-50%);
  background: rgba(255,255,255,0.15); border: none; color: #fff;
  font-size: 1.4rem; width: 48px; height: 48px; border-radius: 50%;
  cursor: pointer; transition: background .2s; z-index: 10000;
  display: flex; align-items: center; justify-content: center;
}
.g-lightbox-arrow:hover { background: rgba(255,255,255,0.3); }
.g-lightbox-prev { left: 20px; }
.g-lightbox-next { right: 20px; }

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

/* ── About/CTA Section ─────────────────────────────────────── */
.about-split {
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center;
}
.about-images { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.about-img-main { grid-column: 1 / -1; border-radius: var(--radius-lg); overflow: hidden; aspect-ratio: 16/9; }
.about-img-sub { border-radius: var(--radius); overflow: hidden; aspect-ratio: 1/1; }
.about-img-main img, .about-img-sub img { width: 100%; height: 100%; object-fit: cover; }
.about-content .section-label { margin-bottom: 8px; }
.about-content blockquote {
  font-family: var(--font-display); font-size: 1.6rem; font-style: italic;
  color: var(--charcoal); border-left: 3px solid var(--rose); padding-left: 20px;
  margin: 24px 0; line-height: 1.5;
}

/* ── CTA Banner ────────────────────────────────────────────── */
.cta-banner {
  background: url('../img/cta-bg.jpg') center center / cover no-repeat;
  padding: 70px 0; text-align: center;
  position: relative; overflow: hidden;
}
.cta-banner::before {
  content: ''; position: absolute; inset: 0;
  background: rgba(0,0,0,0.35);
  pointer-events: none;
}
.cta-banner h2 { color: var(--white); position: relative; z-index: 1; }
.cta-banner p { color: rgba(255,255,255,0.9); max-width: 440px; margin: 16px auto 36px; position: relative; z-index: 1; }
.cta-banner .cta-actions { position: relative; z-index: 1; }

/* ── Product Detail Page ───────────────────────────────────── */
.product-detail { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; }

.gallery-main {
  aspect-ratio: 1/1; border-radius: var(--radius-lg); overflow: hidden;
  background: var(--blush); cursor: zoom-in; position: relative;
}
.gallery-main img { width: 100%; height: 100%; object-fit: cover; transition: opacity 0.3s; }
.gallery-thumbs { display: flex; gap: 10px; margin-top: 12px; flex-wrap: wrap; }
.gallery-thumb {
  width: 72px; height: 72px; border-radius: 8px; overflow: hidden; cursor: pointer;
  border: 2px solid transparent; transition: var(--transition);
  background: var(--blush);
}
.gallery-thumb:hover, .gallery-thumb.active { border-color: var(--rose); }
.gallery-thumb img { width: 100%; height: 100%; object-fit: cover; }

.product-info .product-detail-category {
  font-size: 0.72rem; letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--rose); font-weight: 500; margin-bottom: 10px;
}
.product-info h1 { font-size: clamp(1.8rem, 3vw, 2.6rem); margin-bottom: 16px; }
.product-price {
  font-size: 1.8rem; font-weight: 700; color: var(--rose);
  margin-bottom: 20px; font-family: var(--font-body);
}
.product-info .product-desc { font-size: 0.95rem; color: var(--gray); line-height: 1.9; margin-bottom: 32px; }
.product-enquire-box {
  background: var(--blush); border-radius: var(--radius); padding: 24px;
  margin-bottom: 28px;
}
.product-enquire-box p { font-size: 0.88rem; margin-bottom: 16px; }
.product-enquire-actions { display: flex; gap: 12px; flex-wrap: wrap; }

/* ── Lightbox ──────────────────────────────────────────────── */
.lightbox {
  position: fixed; inset: 0; z-index: 1000;
  background: rgba(0,0,0,0.92); display: none;
  align-items: center; justify-content: center;
}
.lightbox.open { display: flex; }
.lightbox-img { max-width: 90vw; max-height: 90vh; object-fit: contain; border-radius: 8px; }
.lightbox-close {
  position: absolute; top: 20px; right: 24px;
  color: white; font-size: 2rem; cursor: pointer; opacity: 0.7;
  transition: opacity 0.2s; line-height: 1;
}
.lightbox-close:hover { opacity: 1; }
.lightbox-prev, .lightbox-next {
  position: absolute; top: 50%; transform: translateY(-50%);
  color: white; font-size: 2rem; cursor: pointer; opacity: 0.7;
  transition: opacity 0.2s; padding: 12px; user-select: none;
}
.lightbox-prev { left: 12px; }
.lightbox-next { right: 12px; }
.lightbox-prev:hover, .lightbox-next:hover { opacity: 1; }

/* ── Breadcrumb ────────────────────────────────────────────── */
.breadcrumb {
  display: flex; align-items: center; gap: 8px; flex-wrap: wrap;
  font-size: 0.78rem; color: var(--gray); margin-bottom: 32px;
}
.breadcrumb a { color: var(--rose); }
.breadcrumb a:hover { text-decoration: underline; }
.breadcrumb-sep { color: var(--light-gray); }

/* ── Page Hero ─────────────────────────────────────────────── */
.page-hero {
  background: var(--blush); padding: 60px 0 50px;
  border-bottom: 1px solid var(--blush-mid);
}
.page-hero h1 { margin-bottom: 8px; }
.page-hero p { color: var(--gray); }

/* ── Filter Bar ────────────────────────────────────────────── */
.filter-bar {
  display: flex; align-items: center; gap: 10px; flex-wrap: wrap;
  margin-bottom: 36px;
}
.filter-btn {
  font-family: var(--font-body); font-size: 0.78rem; font-weight: 500;
  letter-spacing: 0.08em; text-transform: uppercase;
  padding: 8px 20px; border-radius: 50px; border: 1.5px solid var(--light-gray);
  color: var(--gray); background: transparent; cursor: pointer;
  transition: var(--transition);
}
.filter-btn:hover, .filter-btn.active {
  background: var(--rose); border-color: var(--rose); color: var(--white);
}

/* ── Related Products ──────────────────────────────────────── */
.related-section { background: var(--blush); padding: 70px 0; }

/* ── Contact Page ──────────────────────────────────────────── */
.contact-layout { display: grid; grid-template-columns: 1fr 1.4fr; gap: 64px; align-items: start; }
.contact-info-card { background: var(--white); border-radius: var(--radius-lg); padding: 40px; box-shadow: var(--shadow); }
.contact-item { display: flex; gap: 16px; margin-bottom: 28px; }
.contact-item:last-child { margin-bottom: 0; }
.contact-item-icon {
  width: 44px; height: 44px; background: var(--blush); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem; flex-shrink: 0;
}
.contact-item-text h5 { font-size: 0.78rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--rose); margin-bottom: 4px; }
.contact-item-text p, .contact-item-text a { font-size: 0.92rem; color: var(--gray); }
.contact-item-text a:hover { color: var(--rose); }

.contact-form { background: var(--white); border-radius: var(--radius-lg); padding: 40px; box-shadow: var(--shadow); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-size: 0.78rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--charcoal); margin-bottom: 8px; font-weight: 500; }
.form-group input, .form-group textarea, .form-group select {
  width: 100%; padding: 12px 16px; border: 1.5px solid var(--light-gray);
  border-radius: var(--radius); font-family: var(--font-body); font-size: 0.9rem;
  color: var(--charcoal); background: var(--cream); transition: var(--transition);
  resize: none;
}
.form-group input:focus, .form-group textarea:focus, .form-group select:focus {
  outline: none; border-color: var(--rose); background: var(--white);
  box-shadow: 0 0 0 3px rgba(201,137,122,0.12);
}
.form-group textarea { min-height: 130px; }

/* ── Empty State ───────────────────────────────────────────── */
.empty-state { text-align: center; padding: 80px 20px; }
.empty-state-icon { font-size: 3.5rem; margin-bottom: 16px; opacity: 1; }
.empty-state h3 { font-size: 1.4rem; margin-bottom: 8px; }
.empty-state p { color: var(--gray); }

/* ── Alert/Flash ───────────────────────────────────────────── */
.alert {
  padding: 14px 20px; border-radius: var(--radius); margin-bottom: 20px;
  font-size: 0.88rem;
}
.alert-success { background: #f0fdf4; color: #166534; border: 1px solid #bbf7d0; }
.alert-error   { background: #fef2f2; color: #991b1b; border: 1px solid #fecaca; }

/* ── Footer ────────────────────────────────────────────────── */
.site-footer { background: var(--charcoal); color: rgba(255,255,255,0.8); padding: 70px 0 0; }
.footer-inner {
  max-width: 1200px; margin: 0 auto; padding: 0 24px 56px;
  display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: 48px;
}
.footer-brand .logo .logo-name { color: var(--white); }
.footer-brand .logo .logo-tagline { color: var(--rose-light); }
.footer-brand .logo-icon { color: var(--rose-light); }
.footer-brand p { color: rgba(255,255,255,0.5); font-size: 0.88rem; margin: 16px 0 24px; line-height: 1.8; }
.btn-wa-footer {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 0.78rem; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase;
  border: 1.5px solid rgba(255,255,255,0.25); color: var(--white);
  padding: 10px 22px; border-radius: 50px; transition: var(--transition);
}
.btn-wa-footer:hover { background: var(--rose); border-color: var(--rose); }
.footer-col h4 {
  font-family: var(--font-body); font-size: 0.72rem; font-weight: 500;
  letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--rose-light); margin-bottom: 20px;
}
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a { font-size: 0.88rem; color: rgba(255,255,255,0.55); transition: color 0.2s; }
.footer-col ul li a:hover { color: var(--white); }
.contact-list li { font-size: 0.88rem; color: rgba(255,255,255,0.55); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  max-width: 1200px; margin: 0 auto; padding: 22px 24px;
  font-size: 0.78rem; color: rgba(255,255,255,0.35);
}

/* ── WhatsApp Float ────────────────────────────────────────── */
.wa-float {
  position: fixed; bottom: 28px; right: 28px; z-index: 999;
  width: 56px; height: 56px; background: #25D366; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.45);
  transition: var(--transition);
}
.wa-float:hover { transform: scale(1.1); box-shadow: 0 8px 28px rgba(37, 211, 102, 0.55); }

/* ── Animations ────────────────────────────────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
.animate-in {
  animation: fadeUp 0.7s ease both;
}
.animate-in-delay-1 { animation-delay: 0.1s; }
.animate-in-delay-2 { animation-delay: 0.2s; }
.animate-in-delay-3 { animation-delay: 0.3s; }

/* ── Scroll Reveal ─────────────────────────────────────────── */
.reveal {
  opacity: 0; transform: translateY(28px); transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ── Responsive ────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; text-align: center; }
  .hero-visual { display: none; }
  .hero-content { max-width: 600px; margin: 0 auto; }
  .hero-desc { margin: 0 auto 36px; }
  .hero-actions { justify-content: center; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .features-strip .container { grid-template-columns: repeat(2, 1fr); }
  .about-split { grid-template-columns: 1fr; gap: 40px; }
  .product-detail { grid-template-columns: 1fr; }
  .contact-layout { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .section { padding: 56px 0; }
  .main-nav { 
    position: fixed; top: 72px; left: 0; right: 0; bottom: 0;
    background: var(--white); flex-direction: column; align-items: flex-start;
    padding: 32px 24px; gap: 0; transform: translateX(-100%);
    transition: transform 0.35s ease; z-index: 99; overflow-y: auto;
  }
  .main-nav.open { transform: translateX(0); }
  .main-nav > a, .nav-dropdown-toggle {
    font-size: 1rem; padding: 14px 0; width: 100%; border-bottom: 1px solid var(--light-gray);
    border-radius: 0;
  }
  .nav-dropdown-menu {
    position: static; transform: none; box-shadow: none; border: none;
    background: var(--blush); border-radius: var(--radius); padding: 8px 0;
    opacity: 1; visibility: visible; pointer-events: auto; margin-top: 8px;
    display: none;
  }
  .nav-dropdown.open .nav-dropdown-menu { display: block; }
  .nav-overlay { position: fixed; inset: 0; background: rgba(0,0,0,0.3); z-index: 98; display: none; }
  .nav-overlay.show { display: block; }
  .burger { display: flex; }
  .btn-whatsapp span { display: none; }
  .categories-grid { grid-template-columns: repeat(2, 1fr); }
  .products-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .footer-inner { grid-template-columns: 1fr; gap: 32px; }
  .features-strip .container { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .form-row { grid-template-columns: 1fr; }
  .page-hero { padding: 40px 0 32px; }
}
@media (max-width: 480px) {
  .products-grid { grid-template-columns: 1fr; }
  .categories-grid { grid-template-columns: 1fr; }
}

/* ── Custom Page Template ──────────────────────────────────── */
.page-hero {
  background: linear-gradient(135deg, var(--blush) 0%, var(--cream) 100%);
  padding: 60px 0 40px; border-bottom: 1px solid var(--light);
}
.page-hero-title {
  font-size: clamp(2rem, 4vw, 3rem); color: var(--charcoal);
  margin-top: 16px; line-height: 1.2;
}
.page-content {
  max-width: 860px; margin: 0 auto;
  font-size: 1rem; line-height: 1.9; color: var(--charcoal);
}
.page-content h2, .page-content h3 { font-family: var(--font-display); margin: 32px 0 16px; }
.page-content p { margin-bottom: 20px; }
.page-content blockquote {
  border-left: 3px solid var(--rose); padding: 12px 24px;
  margin: 24px 0; font-style: italic; color: var(--gray);
  font-family: var(--font-display); font-size: 1.15rem;
  background: var(--blush); border-radius: 0 8px 8px 0;
}
.page-content img { max-width: 100%; border-radius: var(--radius); margin: 16px 0; }
.page-content .about-split { display: grid; grid-template-columns: 1fr; gap: 40px; }

/* ── Mobile Hero Background Image ─────────────────────────── */
@media (max-width: 1024px) {
  .hero {
    background-image: url('https://sarahcardeco.com/assets/img/hero-mobile.jpg');
    background-size: cover;
    background-position: center top;
    background-repeat: no-repeat;
    min-height: 70vh;
  }
  .hero #heroBgVideo { 
    display: none !important; 
    visibility: hidden !important;
  }
  .hero-overlay {
    background: linear-gradient(
      to bottom,
      rgba(253,250,246,0.45) 0%,
      rgba(253,250,246,0.65) 60%,
      rgba(253,250,246,0.92) 100%
    );
  }
  .hero-inner {
    padding: 280px 24px 60px;
  }
  .hero-content {
    padding-left: 0;
    text-align: center;
  }
}

@media (max-width: 768px) {
  .hero-inner {
    padding: 220px 24px 50px;
  }
}

@media (max-width: 480px) {
  .hero-inner {
    padding: 180px 20px 40px;
  }
}
/* ── Mobile Fixes ──────────────────────────────────────────── */
@media (max-width: 1024px) {
  .hero {
    background-image: url('https://sarahcardeco.com/assets/img/hero-mobile.jpg');
    background-size: cover;
    background-position: center top;
    background-repeat: no-repeat;
    min-height: 70vh;
  }
  .hero #heroBgVideo { display: none !important; }
  .hero-overlay {
    background: linear-gradient(to bottom, rgba(0,0,0,0.15) 0%, rgba(0,0,0,0.35) 50%, rgba(0,0,0,0.55) 100%) !important;
  }
  .hero-title {
    color: #ffffff !important;
    -webkit-text-fill-color: #ffffff !important;
    background: none !important;
    text-shadow: 0 2px 12px rgba(0,0,0,0.4);
  }
  .hero-desc { color: rgba(255,255,255,0.9) !important; }
  .hero-ribbon { background: rgba(0,0,0,0.3) !important; }
  .hero-ribbon span { color: #ffffff !important; }
  .hero-inner { padding: 160px 24px 60px !important; }
  .hero-content { padding-left: 0 !important; text-align: center !important; }
}

@media (max-width: 768px) {
  .hero-inner { padding: 140px 24px 50px !important; }
  .main-nav { z-index: 99999 !important; }
  .nav-dropdown-menu {
    position: static !important;
    transform: none !important;
    box-shadow: none !important;
    border: none !important;
    background: var(--blush) !important;
    border-radius: 8px !important;
    padding: 8px 0 !important;
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;
    margin-top: 8px !important;
    display: none !important;
    width: 100% !important;
  }
  .nav-dropdown.open .nav-dropdown-menu {
    display: flex !important;
    flex-direction: column !important;
  }
}

@media (max-width: 480px) {
  .hero-inner { padding: 120px 20px 40px !important; }
}

/* ── Blog Styles ───────────────────────────────────────────── */
.blog-layout {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 48px;
  align-items: start;
}

/* Blog Card */
.blog-card {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 28px;
  align-items: start;
  margin-bottom: 0;
}
.blog-card-img-wrap {
  display: block;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4/3;
  background: var(--blush);
}
.blog-card-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.blog-card-img-wrap:hover img { transform: scale(1.04); }
.blog-card-img-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  background: var(--blush);
}
.blog-card-cat {
  display: inline-block;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--rose);
  font-family: var(--font-body);
  font-weight: 500;
  margin-bottom: 8px;
}
.blog-card-title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1.3;
  margin-bottom: 10px;
}
.blog-card-title a {
  color: var(--charcoal);
  text-decoration: none;
  transition: color 0.2s;
}
.blog-card-title a:hover { color: var(--rose); }
.blog-card-meta {
  display: flex;
  gap: 8px;
  align-items: center;
  font-size: 0.82rem;
  color: var(--gray);
  margin-bottom: 12px;
}
.blog-card-excerpt {
  font-size: 0.92rem;
  color: var(--gray);
  line-height: 1.7;
  margin-bottom: 16px;
}
.blog-read-more {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--rose);
  text-decoration: none;
  letter-spacing: 0.05em;
}
.blog-read-more:hover { text-decoration: underline; }
.blog-divider {
  border: none;
  border-top: 1px solid var(--light-gray);
  margin: 32px 0;
}

/* Blog Pagination */
.blog-pagination {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 40px;
}
.blog-page-btn {
  display: inline-block;
  padding: 8px 14px;
  border: 1px solid var(--light-gray);
  border-radius: 6px;
  font-size: 0.85rem;
  color: var(--charcoal);
  text-decoration: none;
  transition: var(--transition);
}
.blog-page-btn:hover,
.blog-page-btn.active {
  background: var(--rose);
  color: white;
  border-color: var(--rose);
}

/* Sidebar */
.blog-sidebar { position: sticky; top: 100px; }
.sidebar-widget {
  background: var(--white);
  border: 1px solid var(--light-gray);
  border-radius: var(--radius);
  padding: 24px;
  margin-bottom: 28px;
}
.sidebar-title {
  font-family: var(--font-body);
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 12px;
}
.sidebar-divider {
  height: 3px;
  width: 40px;
  background: var(--rose);
  margin-bottom: 20px;
  border-radius: 2px;
}

/* Popular Posts */
.popular-post {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 12px 0;
  border-bottom: 1px solid var(--light-gray);
  text-decoration: none;
  transition: var(--transition);
}
.popular-post:last-child { border-bottom: none; }
.popular-post:hover .popular-post-body h4 { color: var(--rose); }
.popular-post-img {
  width: 72px;
  height: 56px;
  border-radius: 6px;
  overflow: hidden;
  flex-shrink: 0;
  background: var(--blush);
}
.popular-post-img img { width: 100%; height: 100%; object-fit: cover; }
.popular-post-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}
.popular-post-body h4 {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--charcoal);
  line-height: 1.4;
  margin-bottom: 4px;
  transition: color 0.2s;
}
.popular-post-body span {
  font-size: 0.75rem;
  color: var(--gray);
}

/* Categories sidebar */
.sidebar-cats {
  list-style: none;
  padding: 0;
  margin: 0;
}
.sidebar-cats li a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 0;
  border-bottom: 1px solid var(--light-gray);
  font-size: 0.88rem;
  color: var(--gray);
  text-decoration: none;
  transition: color 0.2s;
}
.sidebar-cats li:last-child a { border-bottom: none; }
.sidebar-cats li a:hover,
.sidebar-cats li a.active { color: var(--rose); }
.sidebar-cats li a span {
  background: var(--blush);
  color: var(--rose);
  font-size: 0.72rem;
  padding: 2px 8px;
  border-radius: 20px;
  font-weight: 500;
}

/* Sidebar CTA */
.sidebar-cta {
  background: linear-gradient(135deg, var(--blush) 0%, var(--cream) 100%);
  text-align: center;
}
.sidebar-cta h4 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  margin-bottom: 8px;
}
.sidebar-cta p {
  font-size: 0.88rem;
  color: var(--gray);
}

/* Single Post */
.blog-post-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 500;
  line-height: 1.2;
  margin-bottom: 16px;
  color: var(--charcoal);
}
.blog-post-content {
  font-size: 1rem;
  line-height: 1.85;
  color: var(--charcoal);
}
.blog-post-content h2 { font-family: var(--font-display); font-size: 1.6rem; margin: 32px 0 16px; }
.blog-post-content h3 { font-family: var(--font-display); font-size: 1.3rem; margin: 28px 0 12px; }
.blog-post-content p { margin-bottom: 20px; }
.blog-post-content img { max-width: 100%; border-radius: var(--radius); margin: 20px 0; }
.blog-post-content ul, .blog-post-content ol { padding-left: 24px; margin-bottom: 20px; }
.blog-post-content li { margin-bottom: 8px; }
.blog-related-card {
  display: block;
  text-decoration: none;
  transition: transform 0.2s;
}
.blog-related-card:hover { transform: translateY(-4px); }
.blog-related-img {
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 16/9;
  background: var(--blush);
}
.blog-related-img img { width: 100%; height: 100%; object-fit: cover; }

/* Admin blog table badges */
.status-badge {
  display: inline-block;
  font-size: 0.72rem;
  padding: 3px 10px;
  border-radius: 20px;
  font-weight: 500;
}
.status-badge.published { background: #dcfce7; color: #15803d; }
.status-badge.draft { background: #f3f4f6; color: #6b7280; }

/* Responsive */
@media (max-width: 1024px) {
  .blog-layout { grid-template-columns: 1fr; }
  .blog-sidebar { position: static; }
}
@media (max-width: 640px) {
  .blog-card { grid-template-columns: 1fr; }
  .blog-card-img-wrap { aspect-ratio: 16/9; }
}
