/* Stylesheet for Sweets by SA - Boutique Bakery */

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

:root {
  /* Logo Palette Colors */
  --bg-primary: #FAF7FC; /* Very soft lavender-tinted cream */
  --bg-secondary: #FFFDFB; /* Warm white cream */
  --bg-card: rgba(255, 255, 255, 0.92);
  
  --color-pink: #FDF0EA; /* Soft blush pink (logo circle background) */
  --color-pink-dark: #F7DDD0;
  --color-lavender: #9C8BB4; /* Muted brand lavender (logo wreath & text) */
  --color-lavender-dark: #81709A;
  --color-beige: #F6EFF8; /* Light pastel lavender-neutral */
  --color-sage: #E8EFE9;
  
  --color-gold: #E89A88; /* Warm peach-coral (logo whisk color for highlights/buttons!) */
  --color-gold-light: #FDF4F1;
  --color-gold-hover: #D07F6E;
  
  --color-taupe: #766885; /* Muted lavender-grey taupe */
  --color-taupe-light: #A497B3;
  
  --text-dark: #4A3F55; /* Rich dark purple-neutral (replacing harsh black/brown) */
  --text-muted: #766885; /* Muted lavender-grey */
  --text-light: #FFFFFF;
  
  --border-color: #ECDFF2; /* Soft pastel border */
  
  /* Typography */
  --font-heading: 'Cormorant Garamond', serif;
  --font-body: 'Inter', sans-serif;
  
  /* Shadows */
  --shadow-sm: 0 4px 12px rgba(118, 104, 133, 0.05);
  --shadow-md: 0 12px 32px rgba(118, 104, 133, 0.09);
  --shadow-lg: 0 20px 48px rgba(118, 104, 133, 0.14);
  --shadow-gold: 0 10px 25px rgba(232, 154, 136, 0.25);
  
  /* Transitions */
  --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-bounce: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
  
  /* Border Radii */
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 28px;
  --radius-full: 9999px;
  
  /* Layout */
  --max-width: 1280px;
  --nav-height: 100px;
}

/* Base resets & styles */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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

body {
  font-family: var(--font-body);
  background-color: var(--bg-primary);
  color: var(--text-dark);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* Page Gradients matched to the lavender/pink logo theme */
.page-home {
  background: linear-gradient(180deg, var(--bg-secondary) 0%, var(--color-pink) 25%, var(--color-lavender) 60%, var(--color-beige) 85%, var(--bg-primary) 100%);
}

.page-about {
  background: linear-gradient(180deg, var(--color-pink) 0%, var(--bg-secondary) 50%, var(--color-beige) 100%);
}

.page-services {
  background: linear-gradient(180deg, var(--color-beige) 0%, var(--bg-secondary) 50%, var(--color-pink) 100%);
}

.page-gallery {
  background: linear-gradient(180deg, var(--color-lavender) 0%, var(--bg-secondary) 50%, var(--color-pink) 100%);
}

.page-seasonal {
  background: linear-gradient(180deg, var(--color-pink) 0%, var(--color-beige) 50%, var(--bg-primary) 100%);
}

.page-faq {
  background: linear-gradient(180deg, var(--bg-primary) 0%, var(--color-pink) 50%, var(--bg-secondary) 100%);
}

.page-contact {
  background: linear-gradient(180deg, var(--bg-secondary) 0%, var(--color-pink) 40%, var(--color-lavender) 100%);
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 500;
  line-height: 1.2;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition-smooth);
}

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

/* Custom scrollbar */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: var(--bg-primary);
}
::-webkit-scrollbar-thumb {
  background: var(--color-taupe-light);
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--color-lavender-dark);
}

/* Helper Utilities */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

.text-center { text-align: center; }
.section-padding { padding: 100px 0; }

.section-title {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  color: var(--text-dark);
  margin-bottom: 16px;
  font-weight: 400;
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto 60px auto;
  font-family: var(--font-body);
  font-weight: 300;
}

/* Section Colors to avoid too much white space */
.bg-pink-section {
  background: linear-gradient(135deg, var(--color-pink) 0%, var(--bg-secondary) 100%);
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
}

.bg-lavender-section {
  background: linear-gradient(135deg, var(--color-beige) 0%, var(--bg-secondary) 100%);
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
}

.bg-beige-section {
  background: linear-gradient(135deg, var(--color-pink) 0%, var(--bg-secondary) 100%);
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 28px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border-radius: var(--radius-full);
  border: 1px solid transparent;
  cursor: pointer;
  transition: var(--transition-bounce);
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background-color: var(--color-gold);
  color: var(--text-light);
  box-shadow: var(--shadow-gold);
}

.btn-primary:hover {
  background-color: var(--color-gold-hover);
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(232, 154, 136, 0.35);
}

.btn-secondary {
  background-color: rgba(255, 255, 255, 0.85);
  color: var(--text-dark);
  border-color: var(--color-lavender);
  backdrop-filter: blur(8px);
}

.btn-secondary:hover {
  background-color: var(--color-pink);
  transform: translateY(-3px);
}

.btn-text {
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--color-lavender);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  position: relative;
}

.btn-text::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: var(--color-lavender);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn-text:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

/* Loading Animation */
.loader-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: var(--bg-secondary);
  z-index: 9999;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}

.loader-logo {
  font-family: var(--font-heading);
  font-size: 3rem;
  color: var(--color-lavender);
  margin-bottom: 24px;
  font-style: italic;
  opacity: 0;
  animation: fadeIn 1s forwards;
}

.loader-spinner {
  width: 60px;
  height: 60px;
  border: 2px solid var(--color-pink);
  border-top-color: var(--color-gold);
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

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

@keyframes fadeIn {
  to { opacity: 1; }
}

/* Floating Elements Background Decoration */
.decorations-container {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 1;
}

.decor-item {
  position: absolute;
  border-radius: 50%;
  filter: blur(40px);
  opacity: 0.25;
  animation: floatSlow 20s infinite alternate ease-in-out;
}

.decor-1 {
  width: 400px;
  height: 400px;
  background: var(--color-pink);
  top: 5%;
  right: -10%;
  animation-duration: 25s;
}

.decor-2 {
  width: 500px;
  height: 500px;
  background: var(--color-beige);
  top: 40%;
  left: -15%;
  animation-duration: 30s;
  animation-delay: -5s;
}

.decor-3 {
  width: 350px;
  height: 350px;
  background: var(--color-gold-light);
  bottom: 10%;
  right: -5%;
  animation-duration: 22s;
  animation-delay: -10s;
}

@keyframes floatSlow {
  0% { transform: translateY(0) rotate(0deg) scale(1); }
  50% { transform: translateY(-40px) rotate(45deg) scale(1.1); }
  100% { transform: translateY(20px) rotate(-30deg) scale(0.95); }
}

/* Header & Sticky Nav */
.header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--nav-height);
  z-index: 1000;
  transition: var(--transition-smooth);
}

.header.sticky {
  position: fixed;
  background: rgba(250, 247, 252, 0.9);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: var(--shadow-sm);
  border-bottom: 1px solid var(--border-color);
  animation: slideNavDown 0.4s ease forwards;
}

@keyframes slideNavDown {
  from { transform: translateY(-100%); }
  to { transform: translateY(0); }
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

/* Brand Logo Image styles */
.logo-link-img {
  display: flex;
  align-items: center;
  height: 100%;
  padding: 5px 0;
}

.logo-img {
  height: 90px;
  width: auto;
  object-fit: contain;
  transition: var(--transition-bounce);
}

.logo-link-img:hover .logo-img {
  transform: scale(1.06) rotate(1deg);
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}

.nav-link {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-dark);
  letter-spacing: 0.05em;
  position: relative;
  padding: 8px 0;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: var(--color-lavender);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
  transform: scaleX(1);
}

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

/* Mobile Menu Toggle */
.mobile-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  width: 24px;
  height: 24px;
  position: relative;
  z-index: 1001;
}

.mobile-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background-color: var(--text-dark);
  position: absolute;
  left: 0;
  transition: var(--transition-smooth);
}

.mobile-toggle span:nth-child(1) { top: 4px; }
.mobile-toggle span:nth-child(2) { top: 11px; }
.mobile-toggle span:nth-child(3) { top: 18px; }

.mobile-toggle.active span:nth-child(1) {
  transform: rotate(45deg);
  top: 11px;
}
.mobile-toggle.active span:nth-child(2) {
  opacity: 0;
}
.mobile-toggle.active span:nth-child(3) {
  transform: rotate(-45deg);
  top: 11px;
}

/* Hero Section: Full background image overlay */
.hero {
  height: 100vh;
  min-height: 700px;
  display: flex;
  align-items: center;
  position: relative;
  background-image: url('images/hero_desserts.png');
  background-size: cover;
  background-position: center;
  overflow: hidden;
  padding-top: var(--nav-height);
  z-index: 2;
}

.hero::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, rgba(250, 247, 252, 0.96) 35%, rgba(250, 247, 252, 0.75) 60%, rgba(250, 247, 252, 0.2) 100%);
  z-index: 1;
}

.hero-grid {
  position: relative;
  z-index: 5;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  align-items: center;
  width: 100%;
}

.hero-content {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUpIn 1s 0.6s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  max-width: 680px;
}

@keyframes fadeUpIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-tag {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--color-lavender);
  margin-bottom: 20px;
  display: inline-block;
  background: var(--color-gold-light);
  padding: 6px 16px;
  border-radius: var(--radius-full);
  border: 1px solid var(--border-color);
}

.hero-title {
  font-size: clamp(3rem, 6vw, 4.6rem);
  color: var(--text-dark);
  margin-bottom: 24px;
  line-height: 1.1;
  font-weight: 300;
}

.hero-title span {
  font-style: italic;
  color: var(--color-gold);
}

.hero-desc {
  font-size: 1.15rem;
  color: var(--text-muted);
  margin-bottom: 40px;
  font-weight: 300;
  max-width: 560px;
}

.hero-actions {
  display: flex;
  gap: 16px;
}

/* Professional Award badge icon */
.hero-badge {
  position: absolute;
  top: 45%;
  right: 22%;
  background: var(--bg-card);
  padding: 18px 26px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 14px;
  border-left: 4px solid var(--color-gold);
  animation: floatSlow 6s infinite alternate ease-in-out;
  z-index: 5;
  border-top: 1px solid var(--border-color);
  border-right: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
}

.hero-badge-icon {
  font-size: 1.5rem;
  color: var(--color-gold);
  background: var(--color-gold-light);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-badge-title {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-dark);
}

.hero-badge-desc {
  font-size: 0.75rem;
  color: var(--text-muted);
}

/* Page Intro/Header Section */
.page-intro {
  padding: 160px 0 60px 0;
  text-align: center;
}

.page-intro .section-title {
  margin-bottom: 12px;
}

/* About Section styling */
.about-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 60px;
  align-items: center;
}

.about-image {
  position: relative;
}

.about-image-wrapper {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-color);
  z-index: 2;
}

.about-image-wrapper img {
  width: 100%;
  height: 520px;
  object-fit: cover;
}

.about-accent-box {
  position: absolute;
  bottom: -30px;
  right: -30px;
  width: 200px;
  height: 200px;
  background-color: var(--color-pink);
  border-radius: var(--radius-md);
  z-index: 1;
  animation: floatSlow 8s infinite alternate ease-in-out;
}

.about-accent-circle {
  position: absolute;
  top: -40px;
  left: -40px;
  width: 120px;
  height: 120px;
  background-color: var(--color-beige);
  border-radius: var(--radius-full);
  z-index: 1;
  animation: floatSlow 10s infinite alternate-reverse ease-in-out;
}

.about-content {
  padding-left: 20px;
}

.about-title-tag {
  color: var(--color-lavender);
  font-weight: 600;
  text-transform: uppercase;
  font-size: 0.85rem;
  letter-spacing: 0.15em;
  margin-bottom: 12px;
  display: block;
}

.about-story {
  font-size: 1.05rem;
  color: var(--text-muted);
  margin-bottom: 24px;
  font-weight: 300;
}

.about-pillars {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 36px;
}

.pillar-item {
  display: flex;
  gap: 16px;
}

.pillar-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-full);
  background-color: var(--color-pink);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--color-gold);
  font-size: 1.2rem;
}

.pillar-title {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  margin-bottom: 6px;
}

.pillar-desc {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* Featured Services */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 32px;
}

.service-card {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  padding: 32px;
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
  transition: var(--transition-smooth);
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 6px;
  background: linear-gradient(90deg, var(--color-pink), var(--color-beige));
  opacity: 0.3;
  transition: var(--transition-smooth);
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: var(--color-lavender);
}

.service-card:hover::before {
  opacity: 1;
}

.service-img-wrapper {
  width: 100%;
  height: 200px;
  border-radius: var(--radius-md);
  overflow: hidden;
  margin-bottom: 24px;
  box-shadow: var(--shadow-sm);
}

.service-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-smooth);
}

.service-card:hover .service-img-wrapper img {
  transform: scale(1.05);
}

.service-icon-wrapper {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--color-gold-light);
  border: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--color-gold);
  font-size: 1.5rem;
  transition: var(--transition-bounce);
}

.service-card:hover .service-icon-wrapper {
  background: var(--color-gold);
  color: var(--text-light);
  transform: scale(1.08) rotate(5deg);
  box-shadow: var(--shadow-gold);
}

.service-title {
  font-size: 1.6rem;
  color: var(--text-dark);
  margin-bottom: 12px;
  font-weight: 500;
}

.service-desc {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin-bottom: 24px;
  font-weight: 300;
  flex-grow: 1;
}

.service-card .btn-text {
  align-self: flex-start;
}

/* Gallery Section */
.gallery-filters {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}

.filter-btn {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  padding: 10px 24px;
  font-size: 0.9rem;
  font-weight: 500;
  border-radius: var(--radius-full);
  cursor: pointer;
  color: var(--text-muted);
  transition: var(--transition-smooth);
}

.filter-btn:hover,
.filter-btn.active {
  background: var(--color-lavender);
  color: var(--text-light);
  border-color: var(--color-lavender);
  box-shadow: var(--shadow-sm);
}

.gallery-grid {
  columns: 3 320px;
  column-gap: 24px;
  width: 100%;
  margin: 0 auto;
}

.gallery-preview-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  width: 100%;
  margin: 0 auto;
}

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

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

.gallery-item {
  background-color: var(--bg-card);
  border-radius: var(--radius-md);
  overflow: hidden;
  margin-bottom: 24px;
  break-inside: avoid;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-color);
  transition: var(--transition-smooth);
  position: relative;
  cursor: pointer;
}

.gallery-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--color-lavender);
}

.gallery-img-wrapper {
  overflow: hidden;
  position: relative;
  width: 100%;
}

.gallery-img-wrapper img {
  width: 100%;
  height: auto;
  display: block;
  transition: var(--transition-smooth);
}

.gallery-item:hover .gallery-img-wrapper img {
  transform: scale(1.04);
}

.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(74, 63, 85, 0.45);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  opacity: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px;
  transition: var(--transition-smooth);
  z-index: 2;
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-overlay-title {
  color: var(--text-light);
  font-family: var(--font-heading);
  font-size: 1.4rem;
  margin-bottom: 4px;
}

.gallery-overlay-tag {
  color: var(--color-pink);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* Lightbox View */
.lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(74, 63, 85, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  z-index: 2000;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-smooth);
}

.lightbox.active {
  opacity: 1;
  visibility: visible;
}

.lightbox-content {
  position: relative;
  max-width: 90%;
  max-height: 85%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.lightbox-content img {
  max-width: 100%;
  max-height: 75vh;
  object-fit: contain;
  border-radius: var(--radius-sm);
  border: 4px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.lightbox-caption {
  color: var(--text-light);
  font-family: var(--font-heading);
  font-size: 1.6rem;
  margin-top: 16px;
  text-align: center;
}

.lightbox-tag {
  color: var(--color-pink);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: 4px;
}

.lightbox-close {
  position: absolute;
  top: 30px;
  right: 30px;
  background: none;
  border: none;
  color: var(--text-light);
  font-size: 2.5rem;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.lightbox-close:hover {
  color: var(--color-pink);
  transform: rotate(90deg);
}

.lightbox-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.1);
  border: none;
  color: var(--text-light);
  font-size: 2rem;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-smooth);
}

.lightbox-btn:hover {
  background: rgba(255, 255, 255, 0.25);
  color: var(--color-pink);
}

.lightbox-prev { left: 40px; }
.lightbox-next { right: 40px; }

/* Why Choose Us */
.why-us-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 32px;
}

.why-us-card {
  background: var(--bg-card);
  border-radius: var(--radius-md);
  padding: 30px;
  text-align: center;
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
  transition: var(--transition-smooth);
}

.why-us-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--color-lavender);
}

.why-us-icon-wrapper {
  width: 64px;
  height: 64px;
  background: var(--color-pink);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px auto;
  color: var(--color-lavender);
  font-size: 1.5rem;
}

.why-us-card:nth-child(even) .why-us-icon-wrapper {
  background: var(--color-beige);
}

.why-us-title {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  margin-bottom: 10px;
  color: var(--text-dark);
}

.why-us-desc {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* Testimonials Section */
.testimonials {
  position: relative;
  overflow: hidden;
}

.slider-outer {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  padding: 20px;
}

.slider-viewport {
  overflow: hidden;
}

.slider-container {
  display: flex;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform;
}

.testimonial-card {
  flex: 0 0 100%;
  width: 100%;
  padding: 40px;
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-md);
  text-align: center;
  box-sizing: border-box;
}

.testimonial-card:nth-child(odd) {
  background: linear-gradient(135deg, var(--bg-card) 70%, var(--color-pink) 100%);
}

.testimonial-card:nth-child(even) {
  background: linear-gradient(135deg, var(--bg-card) 70%, var(--color-beige) 100%);
}

.stars {
  color: var(--color-gold);
  margin-bottom: 20px;
  font-size: 1.2rem;
  display: flex;
  justify-content: center;
  gap: 4px;
}

.testimonial-quote {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-style: italic;
  line-height: 1.4;
  margin-bottom: 24px;
  color: var(--text-dark);
}

.testimonial-author {
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-lavender);
  margin-bottom: 4px;
}

.testimonial-info {
  font-size: 0.75rem;
  color: var(--text-muted);
}

.slider-nav {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 36px;
}

.slider-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--color-taupe-light);
  border: none;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.slider-dot.active {
  background: var(--color-lavender);
  transform: scale(1.3);
}

.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  color: var(--color-taupe);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-smooth);
  z-index: 10;
}

.slider-arrow:hover {
  background: var(--color-lavender);
  color: var(--text-light);
  border-color: var(--color-lavender);
}

.slider-prev { left: -60px; }
.slider-next { right: -60px; }

/* Order Process Timeline */
.timeline {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  padding: 40px 0;
}

.timeline::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 2px;
  background-color: var(--border-color);
  transform: translateX(-50%);
}

.timeline-item {
  position: relative;
  margin-bottom: 80px;
  width: 100%;
}

.timeline-item:last-child {
  margin-bottom: 0;
}

.timeline-dot {
  position: absolute;
  left: 50%;
  top: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--bg-card);
  border: 2px solid var(--color-lavender);
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--color-lavender);
  box-shadow: var(--shadow-sm);
  z-index: 10;
  transition: var(--transition-bounce);
}

.timeline-item:hover .timeline-dot {
  background: var(--color-lavender);
  color: var(--text-light);
  box-shadow: var(--shadow-md);
}

.timeline-content {
  position: relative;
  width: 42%;
  padding: 30px;
  background: var(--bg-card);
  border-radius: var(--radius-md);
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
  transition: var(--transition-smooth);
}

.timeline-item:nth-child(odd) .timeline-content {
  left: 0;
}

.timeline-item:nth-child(even) .timeline-content {
  left: 58%;
}

.timeline-content:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--color-lavender);
}

.timeline-step {
  font-size: 0.75rem;
  color: var(--color-lavender);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 600;
  margin-bottom: 8px;
}

.timeline-title {
  font-family: var(--font-heading);
  font-size: 1.45rem;
  margin-bottom: 12px;
}

.timeline-desc {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* Seasonal Specials */
.seasonal-banner {
  background: linear-gradient(135deg, var(--color-pink), var(--color-beige));
  border-radius: var(--radius-lg);
  padding: 60px;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 48px;
  align-items: center;
  box-shadow: var(--shadow-md);
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.4);
}

.seasonal-banner::after {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  filter: blur(30px);
}

.seasonal-img-wrapper {
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 4px solid var(--bg-card);
  aspect-ratio: 4/3;
}

.seasonal-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.seasonal-tag {
  background: var(--bg-card);
  color: var(--color-lavender);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  padding: 6px 14px;
  border-radius: var(--radius-full);
  display: inline-block;
  margin-bottom: 20px;
  box-shadow: var(--shadow-sm);
}

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

.seasonal-desc {
  font-size: 1.05rem;
  color: var(--text-muted);
  margin-bottom: 30px;
  font-weight: 300;
}

.countdown-container {
  display: flex;
  gap: 16px;
  margin-bottom: 30px;
}

.countdown-item {
  background: var(--bg-card);
  padding: 12px;
  border-radius: var(--radius-md);
  min-width: 70px;
  text-align: center;
  box-shadow: var(--shadow-sm);
}

.countdown-num {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--text-dark);
}

.countdown-label {
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-muted);
}

/* FAQ Accordion Section */
.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  margin-bottom: 16px;
  overflow: hidden;
  transition: var(--transition-smooth);
}

.faq-item:hover {
  box-shadow: var(--shadow-sm);
  border-color: var(--color-lavender);
}

.faq-header {
  padding: 24px 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  user-select: none;
}

.faq-question {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  color: var(--text-dark);
  font-weight: 500;
}

.faq-icon {
  position: relative;
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  transition: var(--transition-smooth);
}

.faq-icon::before,
.faq-icon::after {
  content: '';
  position: absolute;
  background-color: var(--color-lavender);
  transition: var(--transition-smooth);
}

/* Horizontal line */
.faq-icon::before {
  top: 7px;
  left: 0;
  width: 16px;
  height: 2px;
}

/* Vertical line */
.faq-icon::after {
  top: 0;
  left: 7px;
  width: 2px;
  height: 16px;
}

.faq-item.active .faq-icon {
  transform: rotate(135deg);
}

.faq-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.faq-content {
  padding: 0 30px 24px 30px;
  font-size: 0.95rem;
  color: var(--text-muted);
  font-weight: 300;
}

/* Contact Section */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: stretch;
}

.contact-info-card {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  padding: 48px;
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-md);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.contact-info-title {
  font-size: 2rem;
  margin-bottom: 12px;
}

.contact-info-subtitle {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 40px;
  font-weight: 300;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 28px;
  margin-bottom: 40px;
}

.contact-detail-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.contact-detail-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--color-pink);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-lavender);
  font-size: 1.1rem;
  flex-shrink: 0;
}

.contact-detail-content h4 {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  margin-bottom: 4px;
}

.contact-detail-content p {
  font-size: 1rem;
  color: var(--text-dark);
}

.map-container {
  height: 220px;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* Contact Form styling */
.contact-form-wrapper {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  padding: 48px;
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-md);
}

.form-title {
  font-size: 2rem;
  margin-bottom: 8px;
}

.form-subtitle {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 36px;
  font-weight: 300;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 24px;
}

.form-group {
  position: relative;
}

.form-group.full-width {
  grid-column: 1 / -1;
}

.form-input {
  width: 100%;
  padding: 14px 20px;
  border: 1px solid var(--border-color);
  background: var(--bg-primary);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--text-dark);
  outline: none;
  transition: var(--transition-smooth);
}

.form-input:focus {
  border-color: var(--color-lavender);
  background: var(--bg-card);
  box-shadow: 0 0 0 3px rgba(156, 139, 180, 0.15);
}

textarea.form-input {
  min-height: 120px;
  resize: vertical;
}

/* Validation styling */
.form-input.is-invalid {
  border-color: #e57373;
}

.form-input.is-valid {
  border-color: #81c784;
}

.error-message {
  color: #e57373;
  font-size: 0.75rem;
  margin-top: 4px;
  display: none;
}

/* Instagram Feed Section */
.insta-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
}

.insta-item {
  aspect-ratio: 1;
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  cursor: pointer;
  border: 1px solid var(--border-color);
}

.insta-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-smooth);
}

.insta-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(74, 63, 85, 0.6);
  opacity: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  color: var(--text-light);
  font-size: 1rem;
  font-weight: 500;
  transition: var(--transition-smooth);
}

.insta-item:hover img {
  transform: scale(1.05);
}

.insta-item:hover .insta-overlay {
  opacity: 1;
}

.insta-stat {
  display: flex;
  align-items: center;
  gap: 6px;
}

/* Footer Section */
.footer {
  background-color: #2E2722; /* Rich dark warm cocoa brown */
  color: #FAF8F5;
  padding: 80px 0 30px 0;
  position: relative;
  border-top: 4px solid var(--color-gold);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
  gap: 48px;
  margin-bottom: 60px;
}

.footer-logo-img-wrapper {
  margin-bottom: 20px;
  display: block;
}

.footer-logo-img {
  height: 120px;
  width: auto;
  object-fit: contain;
}

.footer-desc {
  font-size: 0.9rem;
  color: #BCAF9F;
  margin-bottom: 24px;
  max-width: 280px;
  font-weight: 300;
}

.social-links {
  display: flex;
  gap: 12px;
}

.social-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FAF8F5;
  font-size: 0.95rem;
  transition: var(--transition-smooth);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.social-btn:hover {
  background: var(--color-lavender);
  color: var(--text-light);
  border-color: var(--color-lavender);
  transform: translateY(-3px);
}

.footer-heading {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  color: var(--color-gold);
  margin-bottom: 24px;
  position: relative;
  display: inline-block;
}

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

.footer-links a {
  font-size: 0.9rem;
  color: #BCAF9F;
  transition: var(--transition-smooth);
}

.footer-links a:hover {
  color: var(--color-gold);
  padding-left: 4px;
}

.newsletter-text {
  font-size: 0.9rem;
  color: #BCAF9F;
  margin-bottom: 16px;
  font-weight: 300;
}

.newsletter-form {
  display: flex;
  gap: 8px;
}

.newsletter-input {
  flex-grow: 1;
  padding: 10px 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-sm);
  color: #FAF8F5;
  font-family: var(--font-body);
  font-size: 0.85rem;
  outline: none;
  transition: var(--transition-smooth);
}

.newsletter-input:focus {
  border-color: var(--color-gold);
  background: rgba(255, 255, 255, 0.1);
}

.newsletter-btn {
  padding: 10px 18px;
  font-size: 0.8rem;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.copyright {
  font-size: 0.8rem;
  color: #BCAF9F;
}

/* Secret Admin key placement */
.admin-trigger {
  cursor: pointer;
  transition: opacity 0.3s;
}

.admin-trigger:hover {
  opacity: 0.7;
}

.admin-float-btn {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--color-taupe-light);
  z-index: 999;
  transition: var(--transition-smooth);
  opacity: 0.3;
}

.admin-float-btn:hover {
  opacity: 1;
  color: var(--color-lavender);
  transform: rotate(30deg);
  box-shadow: var(--shadow-md);
}

/* Toast Notifications */
.toast-container {
  position: fixed;
  bottom: 30px;
  left: 30px;
  z-index: 3000;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.toast {
  background: var(--bg-card);
  border-left: 4px solid var(--color-lavender);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-lg);
  padding: 16px 24px;
  min-width: 280px;
  max-width: 400px;
  display: flex;
  align-items: center;
  gap: 12px;
  transform: translateX(-120%);
  opacity: 0;
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), opacity 0.4s ease;
}

.toast.show {
  transform: translateX(0);
  opacity: 1;
}

.toast-success {
  border-left-color: #81c784;
}

.toast-error {
  border-left-color: #e57373;
}

.toast-info {
  border-left-color: var(--color-lavender);
}

.toast-icon {
  font-size: 1.2rem;
  flex-shrink: 0;
}

.toast-message {
  font-size: 0.85rem;
  color: var(--text-dark);
  flex-grow: 1;
}

/* CMS Dashboard Glassmorphism Modal */
.cms-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(74, 63, 85, 0.5);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  z-index: 2500;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-smooth);
}

.cms-modal.active {
  opacity: 1;
  visibility: visible;
}

.cms-box {
  width: 90%;
  max-width: 960px;
  height: 80vh;
  background: var(--bg-secondary);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border-color);
  display: flex;
  overflow: hidden;
}

.cms-sidebar {
  width: 240px;
  background: var(--bg-primary);
  border-right: 1px solid var(--border-color);
  padding: 30px 20px;
  display: flex;
  flex-direction: column;
}

.cms-logo-img-wrapper {
  text-align: center;
  margin-bottom: 30px;
  border-bottom: 1px solid var(--border-color);
  padding-bottom: 20px;
}

.cms-logo-img {
  height: 80px;
  width: auto;
  object-fit: contain;
}

.cms-tabs {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.cms-tab-btn {
  width: 100%;
  padding: 12px 16px;
  border: none;
  background: none;
  border-radius: var(--radius-sm);
  text-align: left;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-muted);
  cursor: pointer;
  transition: var(--transition-smooth);
  display: flex;
  align-items: center;
  gap: 12px;
}

.cms-tab-btn:hover {
  background: rgba(156, 139, 180, 0.05);
  color: var(--text-dark);
}

.cms-tab-btn.active {
  background: var(--color-lavender);
  color: var(--text-light);
}

.cms-tab-icon {
  font-size: 1.1rem;
}

.cms-main {
  flex-grow: 1;
  padding: 40px;
  display: flex;
  flex-direction: column;
  overflow-y: auto;
  position: relative;
}

.cms-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
  border-bottom: 1px solid var(--border-color);
  padding-bottom: 20px;
}

.cms-title {
  font-size: 1.8rem;
  color: var(--text-dark);
}

.cms-close {
  background: none;
  border: none;
  font-size: 2rem;
  cursor: pointer;
  color: var(--text-muted);
  transition: var(--transition-smooth);
}

.cms-close:hover {
  color: var(--color-lavender);
  transform: scale(1.1);
}

.cms-content-panel {
  display: none;
  flex-direction: column;
  gap: 20px;
}

.cms-content-panel.active {
  display: flex;
}

.cms-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 24px;
}

.cms-list-item {
  background: var(--bg-card);
  padding: 16px 20px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-color);
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: var(--transition-smooth);
}

.cms-list-item:hover {
  box-shadow: var(--shadow-sm);
}

.cms-item-info h4 {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--text-dark);
}

.cms-item-info p {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.cms-item-actions {
  display: flex;
  gap: 8px;
}

.cms-btn {
  padding: 6px 12px;
  font-size: 0.75rem;
  border-radius: var(--radius-sm);
}

.cms-btn-edit {
  background: var(--color-pink);
  color: var(--text-dark);
  border: 1px solid var(--border-color);
}

.cms-btn-edit:hover {
  background: var(--color-pink-dark);
}

.cms-btn-delete {
  background: #ffebee;
  color: #c62828;
}

.cms-btn-delete:hover {
  background: #ffcdd2;
}

.cms-form-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--bg-secondary);
  padding: 40px;
  display: none;
  flex-direction: column;
  z-index: 10;
  overflow-y: auto;
}

.cms-form-overlay.active {
  display: flex;
}

.cms-form-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-bottom: 30px;
}

/* Scroll reveal class animations */
.reveal {
  position: relative;
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive Media Queries */
@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 40px;
  }
  
  .hero {
    height: auto;
    padding-top: 120px;
    padding-bottom: 80px;
  }
  
  .hero::after {
    background: rgba(250, 247, 252, 0.94);
  }
  
  .hero-desc {
    margin-left: auto;
    margin-right: auto;
  }
  
  .hero-actions {
    justify-content: center;
  }
  
  /* Reset absolute float badge on mobile view */
  .hero-badge {
    position: relative;
    top: auto;
    right: auto;
    margin-top: 36px;
    align-self: center;
  }
  
  .about-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  
  .about-content {
    padding-left: 0;
  }
  
  .about-image-wrapper img {
    height: 400px;
  }
  
  .timeline::before {
    left: 20px;
  }
  
  .timeline-dot {
    left: 20px;
  }
  
  .timeline-content {
    width: calc(100% - 60px);
    left: 60px !important;
  }
  
  .seasonal-banner {
    grid-template-columns: 1fr;
    padding: 40px;
  }
  
  .contact-grid {
    grid-template-columns: 1fr;
  }
  
  .insta-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  
  .slider-prev { left: 10px; }
  .slider-next { right: 10px; }
}

@media (max-width: 768px) {
  .nav-menu {
    position: fixed;
    top: var(--nav-height);
    left: -100%;
    width: 100%;
    height: calc(100vh - var(--nav-height));
    background: var(--bg-primary);
    flex-direction: column;
    padding: 40px 24px;
    gap: 24px;
    transition: var(--transition-smooth);
    border-top: 1px solid var(--border-color);
  }
  
  .nav-menu.active {
    left: 0;
  }
  
  .mobile-toggle {
    display: block;
  }
  
  .nav-right .btn {
    display: none;
  }
  
  .section-padding {
    padding: 60px 0;
  }
  
  .insta-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  
  .cms-box {
    flex-direction: column;
    height: 90vh;
  }
  
  .cms-sidebar {
    width: 100%;
    height: auto;
    padding: 20px;
    border-right: none;
    border-bottom: 1px solid var(--border-color);
  }
  
  .cms-tabs {
    flex-direction: row;
    overflow-x: auto;
    padding-bottom: 8px;
  }
  
  .cms-tab-btn {
    white-space: nowrap;
    padding: 8px 16px;
  }
  
  .cms-main {
    padding: 20px;
  }
  
  .form-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}
