/* ===== CSS VARIABLES ===== */
:root {
  --cream: #FFF5F7;
  --blush: #FFB6C1;
  --blush-light: #FFF0F3;
  --blush-dark: #FF6B8A;
  --beige: #E8F8FF;
  --warm-brown: #FF6B8A;
  --warm-brown-light: #FF8FA3;
  --gold: #FFD966;
  --gold-light: #FFF0B3;
  --white: #FFFFFF;
  --text-dark: #3D2D35;
  --text-mid: #C2577A;
  --text-light: #A88A95;
  --shadow-soft: 0 8px 40px rgba(255, 107, 138, 0.12);
  --shadow-hover: 0 20px 60px rgba(255, 107, 138, 0.25);
  --radius: 24px;
  --radius-sm: 16px;
  --transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* ===== RESET & BASE ===== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Poppins', sans-serif;
  background-color: var(--cream);
  color: var(--text-dark);
  overflow-x: hidden;
}

img { width: 100%; display: block; object-fit: cover; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; outline: none; font-family: 'Poppins', sans-serif; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* ===== LOADER ===== */
#loader {
  position: fixed;
  inset: 0;
  background: linear-gradient(135deg, var(--cream) 0%, var(--blush-light) 100%);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}
#loader.hidden { opacity: 0; visibility: hidden; }
.loader-content { text-align: center; }
.loader-icon {
  font-size: 64px;
  animation: loaderBounce 1s ease-in-out infinite;
  display: block;
  margin-bottom: 16px;
}
.loader-content p {
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  color: var(--warm-brown);
  margin-bottom: 24px;
}
.loader-bar {
  width: 200px;
  height: 4px;
  background: var(--blush);
  border-radius: 99px;
  margin: 0 auto;
  overflow: hidden;
}
.loader-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--blush-dark), var(--gold));
  border-radius: 99px;
  animation: loaderProgress 2s ease forwards;
}
@keyframes loaderBounce {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-12px) scale(1.1); }
}
@keyframes loaderProgress {
  0% { width: 0%; }
  100% { width: 100%; }
}

/* ===== SPARKLES ===== */
#sparkles { position: fixed; inset: 0; pointer-events: none; z-index: 1; overflow: hidden; }
.sparkle {
  position: absolute;
  width: 6px;
  height: 6px;
  background: var(--gold);
  border-radius: 50%;
  animation: sparkleFade 2s ease forwards;
  pointer-events: none;
}
@keyframes sparkleFade {
  0% { transform: scale(0) translateY(0); opacity: 1; }
  100% { transform: scale(1.5) translateY(-60px); opacity: 0; }
}

/* ===== NAVBAR ===== */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 20px 0;
  transition: var(--transition);
}
#navbar.scrolled {
  background: rgba(255, 248, 240, 0.95);
  backdrop-filter: blur(20px);
  padding: 12px 0;
  box-shadow: var(--shadow-soft);
}
.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  gap: 40px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.logo-mark {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
  filter: drop-shadow(0 2px 6px rgba(139,94,60,0.25));
  transition: transform 0.3s ease;
}
.nav-logo:hover .logo-mark { transform: rotate(-8deg) scale(1.1); }
.logo-text {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--warm-brown);
  white-space: nowrap;
}
.nav-links {
  display: flex;
  gap: 32px;
  margin-left: auto;
}
.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-mid);
  transition: color 0.3s;
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 2px;
  background: var(--blush-dark);
  transition: width 0.3s ease;
}
.nav-links a:hover { color: var(--warm-brown); }
.nav-links a:hover::after { width: 100%; }
.nav-order-btn {
  background: var(--warm-brown);
  color: var(--white);
  padding: 10px 24px;
  border-radius: 99px;
  font-size: 14px;
  font-weight: 500;
  transition: var(--transition);
  flex-shrink: 0;
}
.nav-order-btn:hover { background: var(--text-dark); transform: translateY(-2px); }
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  padding: 4px;
  margin-left: auto;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--warm-brown);
  border-radius: 99px;
  transition: var(--transition);
}

/* ===== HERO ===== */
.hero {
  position: relative;
  height: 100vh;
  min-height: 700px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.hero-bg { position: absolute; inset: 0; }
.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.5s ease;
  transform: scale(1.05);
  animation: heroKenBurns 12s ease-in-out infinite;
}
.hero-slide.active { opacity: 1; }
@keyframes heroKenBurns {
  0% { transform: scale(1.05); }
  100% { transform: scale(1.0); }
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(61, 35, 20, 0.65) 0%,
    rgba(139, 94, 60, 0.4) 50%,
    rgba(242, 196, 206, 0.3) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: var(--white);
  max-width: 700px;
  padding: 0 24px;
}
.hero-tag {
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 20px;
}
.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(44px, 7vw, 80px);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 20px;
  color: var(--white);
}
.hero-title em {
  font-style: italic;
  color: var(--gold-light);
}
.hero-sub {
  font-size: 18px;
  font-weight: 300;
  color: rgba(255,255,255,0.85);
  margin-bottom: 40px;
  line-height: 1.6;
}
.hero-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.hero-scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.7);
  font-size: 12px;
}
.hero-scroll span {
  display: block;
  width: 2px;
  height: 40px;
  background: rgba(255,255,255,0.5);
  animation: scrollPulse 2s ease infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; transform: scaleY(1); }
  50% { opacity: 1; transform: scaleY(0.5); }
}
/* Floating elements */
.float-el {
  position: absolute;
  z-index: 2;
  font-size: 36px;
  animation: floatAround 6s ease-in-out infinite;
  pointer-events: none;
}
.el1 { top: 20%; left: 8%; animation-delay: 0s; }
.el2 { top: 30%; right: 8%; animation-delay: 1.5s; }
.el3 { bottom: 25%; left: 12%; animation-delay: 1s; }
.el4 { bottom: 30%; right: 12%; animation-delay: 2.5s; }
@keyframes floatAround {
  0%, 100% { transform: translateY(0) rotate(0deg); opacity: 0.8; }
  50% { transform: translateY(-20px) rotate(10deg); opacity: 1; }
}

/* ===== BUTTONS ===== */
.btn-primary {
  display: inline-block;
  background: var(--warm-brown);
  color: var(--white);
  padding: 14px 32px;
  border-radius: 99px;
  font-size: 15px;
  font-weight: 500;
  transition: var(--transition);
  border: 2px solid var(--warm-brown);
}
.btn-primary:hover {
  background: var(--text-dark);
  border-color: var(--text-dark);
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(61, 35, 20, 0.3);
}
.btn-primary.sm { padding: 10px 22px; font-size: 13px; }
.btn-secondary {
  display: inline-block;
  background: transparent;
  color: var(--white);
  padding: 14px 32px;
  border-radius: 99px;
  font-size: 15px;
  font-weight: 500;
  border: 2px solid rgba(255,255,255,0.7);
  transition: var(--transition);
}
.btn-secondary:hover {
  background: rgba(255,255,255,0.15);
  border-color: var(--white);
  transform: translateY(-3px);
}

/* ===== STRIP ===== */
.strip {
  background: #5BC8E8;
  padding: 12px 0;
  overflow: hidden;
}
.strip-inner {
  display: flex;
  gap: 60px;
  animation: stripScroll 20s linear infinite;
  white-space: nowrap;
}
.strip-inner span {
  color: var(--gold-light);
  font-size: 13px;
  font-weight: 500;
  flex-shrink: 0;
}
@keyframes stripScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ===== SECTIONS ===== */
.section { padding: 100px 0; }
.section-header { text-align: center; margin-bottom: 64px; }
.section-tag {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--blush-dark);
  margin-bottom: 12px;
}
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.2;
  margin-bottom: 16px;
}
.section-title em { font-style: italic; color: var(--warm-brown-light); }
.section-sub {
  font-size: 16px;
  color: var(--text-light);
  max-width: 500px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ===== FILTER TABS ===== */
.filter-tabs {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 48px;
}
.tab {
  padding: 10px 24px;
  border-radius: 99px;
  font-size: 14px;
  font-weight: 500;
  background: var(--white);
  color: var(--text-mid);
  border: 1.5px solid var(--blush);
  transition: var(--transition);
}
.tab:hover, .tab.active {
  background: var(--warm-brown);
  color: var(--white);
  border-color: var(--warm-brown);
  transform: translateY(-2px);
}

/* ===== PRODUCTS GRID ===== */
.products-section { background: var(--cream); }
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 28px;
}
.product-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  transition: var(--transition);
  animation: fadeInCard 0.5s ease forwards;
}
.product-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-hover);
}
.product-img-wrap {
  position: relative;
  height: 220px;
  overflow: hidden;
}
.product-img-wrap img {
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.product-card:hover .product-img-wrap img { transform: scale(1.1); }
.product-badge {
  position: absolute;
  top: 14px; left: 14px;
  background: var(--warm-brown);
  color: var(--white);
  font-size: 11px;
  font-weight: 600;
  padding: 5px 12px;
  border-radius: 99px;
  letter-spacing: 0.5px;
}
.product-overlay {
  position: absolute;
  inset: 0;
  background: rgba(61, 35, 20, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.product-card:hover .product-overlay { opacity: 1; }
.quick-order {
  background: var(--white);
  color: var(--warm-brown);
  padding: 12px 24px;
  border-radius: 99px;
  font-size: 13px;
  font-weight: 600;
  transition: var(--transition);
}
.quick-order:hover { background: var(--gold-light); }
.product-info { padding: 20px; }
.product-info h3 {
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 6px;
}
.product-info p {
  font-size: 13px;
  color: var(--text-light);
  line-height: 1.5;
  margin-bottom: 16px;
}
.product-footer { display: flex; align-items: center; justify-content: space-between; }
.price {
  font-size: 20px;
  font-weight: 700;
  color: var(--warm-brown);
  font-family: 'Playfair Display', serif;
}
.add-btn {
  width: 36px; height: 36px;
  background: var(--blush-light);
  color: var(--warm-brown);
  border-radius: 50%;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}
.add-btn:hover { background: var(--warm-brown); color: var(--white); transform: rotate(90deg) scale(1.1); }
@keyframes fadeInCard {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ===== SPECIALS SLIDER ===== */
.specials-section {
  background: linear-gradient(135deg, #FF6B8A 0%, #FF9BB5 60%, #87CEEB 100%);
}
.specials-section .section-tag { color: var(--gold-light); }
.specials-section .section-title { color: var(--white); }
.specials-section .section-title em { color: var(--gold-light); }
.specials-section .section-sub { color: rgba(255,255,255,0.65); }
.specials-slider-wrap {
  position: relative;
  display: flex;
  align-items: center;
  gap: 20px;
}
.specials-slider-outer {
  flex: 1;
  overflow: hidden;
  border-radius: var(--radius);
  min-height: 360px;
}
.specials-slider {
  display: flex;
  gap: 0;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.special-card {
  min-width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform 0.5s ease;
}
.special-img { height: 360px; overflow: hidden; }
.special-img img { height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.special-card:hover .special-img img { transform: scale(1.05); }
.special-info {
  padding: 48px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 16px;
  background: rgba(255,255,255,0.04);
}
.special-num {
  font-size: 60px;
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  color: rgba(255,255,255,0.08);
  line-height: 1;
}
.special-info h3 {
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  color: var(--white);
  line-height: 1.3;
}
.special-info p { font-size: 15px; color: rgba(255,255,255,0.65); line-height: 1.7; }
.special-price {
  font-size: 24px;
  font-weight: 700;
  color: var(--gold-light);
  font-family: 'Playfair Display', serif;
}
.special-price span { font-size: 14px; font-weight: 400; color: rgba(255,255,255,0.5); font-family: 'Poppins', sans-serif; }
.slider-arrow {
  width: 48px; height: 48px;
  background: rgba(255,255,255,0.12);
  color: var(--white);
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.2);
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  flex-shrink: 0;
}
.slider-arrow:hover { background: var(--gold); border-color: var(--gold); }
.slider-dots {
  display: flex;
  gap: 8px;
  justify-content: center;
  margin-top: 28px;
}
.slider-dot {
  width: 8px; height: 8px;
  background: rgba(255,255,255,0.3);
  border-radius: 50%;
  cursor: pointer;
  transition: var(--transition);
}
.slider-dot.active {
  background: var(--gold-light);
  width: 24px;
  border-radius: 99px;
}

/* ===== ABOUT ===== */
.about-section { background: #EEF9FF; } 
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-images {
  position: relative;
  height: 520px;
}
.about-img-main {
  width: 80%;
  height: 400px;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-hover);
}
.about-img-main img { height: 100%; object-fit: cover; }
.about-img-small {
  position: absolute;
  bottom: 0; right: 0;
  width: 55%;
  height: 240px;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-hover);
  border: 6px solid var(--beige);
}
.about-img-small img { height: 100%; object-fit: cover; }
.about-badge-float {
  position: absolute;
  top: 24px; right: 0;
  background: var(--warm-brown);
  color: var(--white);
  width: 100px; height: 100px;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  box-shadow: 0 8px 24px rgba(139,94,60,0.4);
  animation: floatBadge 3s ease-in-out infinite;
}
.badge-num { font-family: 'Playfair Display', serif; font-size: 24px; font-weight: 700; }
.badge-text { font-size: 10px; line-height: 1.3; }
@keyframes floatBadge {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}
.about-content { padding: 20px 0; }
.about-text {
  font-size: 16px;
  color: var(--text-mid);
  line-height: 1.8;
  margin-bottom: 20px;
}
.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin: 36px 0;
  padding: 28px;
  background: var(--white);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-soft);
}
.stat { text-align: center; }
.stat h3 {
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  font-weight: 700;
  color: var(--warm-brown);
}
.stat p { font-size: 13px; color: var(--text-light); margin-top: 4px; }

/* ===== GALLERY ===== */
.gallery-section { background: var(--cream); }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(3, 200px);
  gap: 16px;
}
.gallery-item {
  border-radius: var(--radius-sm);
  overflow: hidden;
  position: relative;
  cursor: pointer;
}
.gallery-item img {
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease, filter 0.3s ease;
}
.gallery-item:hover img { transform: scale(1.08); filter: brightness(1.1); }
.gallery-item.tall { grid-row: span 2; }
.gallery-item.wide { grid-column: span 2; }
.gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(139, 94, 60, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
  color: var(--white);
  font-size: 24px;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }

/* ===== TESTIMONIALS ===== */
.testimonials-section { background: #FFFBEA; } 
.testimonials-carousel { position: relative; overflow: hidden; }
.testimonials-track {
  display: flex;
  gap: 28px;
  transition: transform 0.5s ease;
}
.testimonial-card {
  min-width: calc(33.333% - 20px);
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: var(--shadow-soft);
  transition: transform 0.3s ease;
}
.testimonial-card:hover { transform: translateY(-6px); }
.stars {
  color: var(--gold);
  font-size: 20px;
  letter-spacing: 2px;
  margin-bottom: 16px;
}
.review-text {
  font-size: 15px;
  color: var(--text-mid);
  line-height: 1.8;
  font-style: italic;
  margin-bottom: 24px;
}
.reviewer {
  display: flex;
  align-items: center;
  gap: 14px;
}
.reviewer-avatar {
  width: 44px; height: 44px;
  background: var(--blush);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 700;
  color: var(--warm-brown);
  font-family: 'Playfair Display', serif;
}
.reviewer h4 { font-size: 15px; font-weight: 600; color: var(--text-dark); }
.reviewer span { font-size: 13px; color: var(--text-light); }
.carousel-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 40px;
}
.carousel-btn {
  width: 44px; height: 44px;
  background: var(--white);
  color: var(--warm-brown);
  border-radius: 50%;
  border: 1.5px solid var(--blush);
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}
.carousel-btn:hover { background: var(--warm-brown); color: var(--white); border-color: var(--warm-brown); }
.carousel-dots { display: flex; gap: 8px; }
.carousel-dot {
  width: 8px; height: 8px;
  background: var(--blush);
  border-radius: 50%;
  cursor: pointer;
  transition: var(--transition);
}
.carousel-dot.active { background: var(--warm-brown); width: 20px; border-radius: 99px; }

/* ===== CONTACT ===== */
.contact-section { background: var(--cream); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.contact-desc {
  font-size: 16px;
  color: var(--text-light);
  line-height: 1.7;
  margin: 16px 0 36px;
}
.contact-details { display: flex; flex-direction: column; gap: 20px; margin-bottom: 32px; }
.contact-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.contact-item i {
  width: 40px; height: 40px;
  background: var(--blush-light);
  color: var(--warm-brown);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
  margin-top: 2px;
}
.contact-item h4 { font-size: 14px; font-weight: 600; color: var(--text-dark); margin-bottom: 4px; }
.contact-item p { font-size: 14px; color: var(--text-light); line-height: 1.6; }
.whatsapp-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #25D366;
  color: var(--white);
  padding: 14px 28px;
  border-radius: 99px;
  font-size: 15px;
  font-weight: 500;
  transition: var(--transition);
}
.whatsapp-btn:hover { background: #1ebe57; transform: translateY(-3px); box-shadow: 0 8px 24px rgba(37,211,102,0.4); }
.whatsapp-btn i { font-size: 20px; }
.contact-form-wrap {
  background: var(--white);
  border-radius: var(--radius);
  padding: 40px;
  box-shadow: var(--shadow-soft);
}
.contact-form h3 {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  color: var(--text-dark);
  margin-bottom: 28px;
}
.form-group { margin-bottom: 18px; }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 18px;
  border: 1.5px solid var(--blush);
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-family: 'Poppins', sans-serif;
  color: var(--text-dark);
  background: var(--cream);
  transition: border-color 0.3s ease;
  resize: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--blush-dark);
  background: var(--white);
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--text-light); }
.btn-primary.full { width: 100%; text-align: center; border: none; font-size: 15px; padding: 16px; }

/* ===== FOOTER ===== */
.footer { background:#3D2035; } 
.footer-top { padding: 80px 0 60px; }
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1.5fr 2fr;
  gap: 48px;
}
.footer-brand .logo-text { color: var(--gold-light); }
.footer-brand .logo-icon { font-size: 28px; }
.footer-brand > p {
  font-size: 14px;
  color: rgba(255,255,255,0.55);
  line-height: 1.8;
  margin: 16px 0 24px;
}
.social-icons { display: flex; gap: 12px; }
.social-icons a {
  width: 40px; height: 40px;
  background: rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.7);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  transition: var(--transition);
  border: 1px solid rgba(255,255,255,0.1);
}
.social-icons a:hover { background: var(--blush-dark); color: var(--white); border-color: var(--blush-dark); }
.footer-links h4,
.footer-hours h4,
.footer-newsletter h4 {
  font-size: 14px;
  font-weight: 600;
  color: var(--gold-light);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 20px;
}
.footer-links ul { display: flex; flex-direction: column; gap: 10px; }
.footer-links a {
  font-size: 14px;
  color: rgba(255,255,255,0.55);
  transition: color 0.3s ease;
}
.footer-links a:hover { color: var(--blush-light); }
.footer-hours ul { display: flex; flex-direction: column; gap: 10px; margin-bottom: 20px; }
.footer-hours li {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  color: rgba(255,255,255,0.55);
  border-bottom: 1px dashed rgba(255,255,255,0.1);
  padding-bottom: 8px;
}
.footer-contact p { font-size: 13px; color: rgba(255,255,255,0.55); margin-bottom: 8px; }
.footer-contact i { color: var(--blush-dark); margin-right: 8px; }
.footer-newsletter > p {
  font-size: 14px;
  color: rgba(255,255,255,0.55);
  line-height: 1.7;
  margin-bottom: 20px;
}
.newsletter-form { display: flex; gap: 8px; }
.newsletter-form input {
  flex: 1;
  padding: 12px 16px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 99px;
  color: var(--white);
  font-size: 13px;
  font-family: 'Poppins', sans-serif;
}
.newsletter-form input::placeholder { color: rgba(255,255,255,0.4); }
.newsletter-form input:focus { outline: none; border-color: var(--blush-dark); }
.newsletter-form button {
  background: var(--blush-dark);
  color: var(--white);
  padding: 12px 20px;
  border-radius: 99px;
  font-size: 13px;
  font-weight: 600;
  transition: var(--transition);
  white-space: nowrap;
}
.newsletter-form button:hover { background: var(--warm-brown); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 20px 0;
  text-align: center;
}
.footer-bottom p { font-size: 13px; color: rgba(255,255,255,0.35); }

/* ===== FLOAT WHATSAPP ===== */
.float-whatsapp {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 58px; height: 58px;
  background: #25D366;
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  z-index: 999;
  box-shadow: 0 8px 24px rgba(37,211,102,0.5);
  transition: var(--transition);
  animation: whatsappPulse 2s ease infinite;
}
.float-whatsapp:hover { transform: scale(1.1); }
@keyframes whatsappPulse {
  0%, 100% { box-shadow: 0 8px 24px rgba(37,211,102,0.5); }
  50% { box-shadow: 0 8px 40px rgba(37,211,102,0.8); }
}

/* ===== TOAST ===== */
.toast {
  position: fixed;
  bottom: 100px;
  right: 32px;
  background: var(--warm-brown);
  color: var(--white);
  padding: 14px 24px;
  border-radius: 99px;
  font-size: 14px;
  font-weight: 500;
  z-index: 9999;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.4s ease;
  pointer-events: none;
}
.toast.show { opacity: 1; transform: translateY(0); }
.toast i { margin-right: 8px; color: #A8FFB0; }

/* ===== SCROLL ANIMATIONS ===== */
.fade-in-up {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 0.8s ease forwards;
}
.delay-1 { animation-delay: 0.2s; }
.delay-2 { animation-delay: 0.4s; }
.delay-3 { animation-delay: 0.6s; }
@keyframes fadeInUp {
  to { opacity: 1; transform: translateY(0); }
}
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ===== MOBILE NAV ===== */
@media (max-width: 900px) {
  .nav-links {
    position: fixed;
    top: 0; left: 0; right: 0;
    background: var(--cream);
    flex-direction: column;
    align-items: center;
    padding: 80px 24px 40px;
    gap: 20px;
    transform: translateY(-100%);
    transition: transform 0.4s ease;
    z-index: 999;
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
  }
  .nav-links.open { transform: translateY(0); }
  .nav-links a { font-size: 18px; }
  .hamburger { display: flex; }
  .nav-order-btn { display: none; }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .about-grid { gap: 40px; }
}
@media (max-width: 768px) {
  .section { padding: 72px 0; }
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-images { height: 360px; }
  .about-img-main { width: 85%; height: 300px; }
  .about-img-small { width: 50%; height: 180px; }
  .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(5, 160px);
  }
  .gallery-item.wide { grid-column: span 1; }
  .testimonials-track { flex-wrap: nowrap; }
  .testimonial-card { min-width: calc(100% - 0px); }
  .special-card { grid-template-columns: 1fr; }
  .special-img { height: 220px; }
  .special-info { padding: 28px 24px; }
  .special-num { font-size: 40px; }
  .special-info h3 { font-size: 22px; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .about-stats { grid-template-columns: repeat(3, 1fr); gap: 12px; }
  .float-el { display: none; }
}
@media (max-width: 480px) {
  .hero-title { font-size: 36px; }
  .hero-btns { flex-direction: column; align-items: center; }
  .section-title { font-size: 28px; }
  .products-grid { grid-template-columns: 1fr; }
  .contact-form-wrap { padding: 28px 20px; }
  .newsletter-form { flex-direction: column; }
  .gallery-grid { grid-template-columns: 1fr; grid-template-rows: auto; }
  .gallery-item { height: 200px; }
  .gallery-item.tall, .gallery-item.wide { grid-row: span 1; grid-column: span 1; }
}