/* ========================================
   AMORA BY AMMY - Premium Dessert Landing Page
   Design System & Styles
   ======================================== */

/* ---- Google Fonts Import ---- */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500&family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400&family=Poppins:wght@300;400;500;600&display=swap');

/* ---- CSS Custom Properties ---- */
:root {
  /* Color Palette */
  --pink-100: #FFF0F3;
  --pink-200: #FFD6E0;
  --pink-300: #FFBCD1;
  --pink-400: #E8A0BF;
  --pink-500: #D4869C;
  --pink-600: #BA6B7F;
  --beige-100: #FFF8F0;
  --beige-200: #F5E6D8;
  --beige-300: #E8D5C4;
  --brown-100: #D4A574;
  --brown-200: #B8865F;
  --brown-300: #8B6344;
  --white: #FFFFFF;
  --off-white: #FEFBF6;
  --text-dark: #3D2B1F;
  --text-medium: #6B5545;
  --text-light: #9A8578;
  --overlay-pink: rgba(232, 160, 191, 0.3);

  /* Typography */
  --font-script: 'Cormorant Garamond', serif;
  --font-heading: 'Playfair Display', serif;
  --font-body: 'Poppins', sans-serif;

  /* Spacing */
  --section-padding: 100px 0;
  --container-width: 1200px;

  /* Transitions */
  --transition-smooth: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --transition-bounce: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);

  /* Shadows */
  --shadow-soft: 0 4px 20px rgba(61, 43, 31, 0.06);
  --shadow-medium: 0 8px 40px rgba(61, 43, 31, 0.1);
  --shadow-hover: 0 16px 60px rgba(61, 43, 31, 0.14);
  --shadow-card: 0 2px 16px rgba(232, 160, 191, 0.15);
}

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

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

body {
  font-family: var(--font-body);
  color: var(--text-dark);
  background-color: var(--off-white);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

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

/* ---- Section Title ---- */
.section-title {
  text-align: center;
  margin-bottom: 60px;
}

.section-title .script-text {
  font-family: var(--font-script);
  font-size: 1.2rem;
  color: var(--pink-500);
  font-weight: 400;
  letter-spacing: 2px;
  text-transform: uppercase;
  display: block;
  margin-bottom: 8px;
}

.section-title h2 {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--text-dark);
  font-weight: 500;
  letter-spacing: -0.5px;
}

.section-title .divider {
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, var(--pink-300), var(--pink-500));
  margin: 16px auto 0;
  border-radius: 2px;
}

/* ---- Scroll Animations ---- */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

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

.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal-left.active {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal-right.active {
  opacity: 1;
  transform: translateX(0);
}

/* ========================================
   NAVIGATION
   ======================================== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 18px 0;
  transition: var(--transition-smooth);
  background: transparent;
}

.navbar.scrolled {
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 12px 0;
  box-shadow: 0 2px 30px rgba(61, 43, 31, 0.06);
}

.navbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.navbar .logo {
  display: block;
  max-width: 140px;
  width: auto;
  height: auto;
  transition: var(--transition-smooth);
}

.navbar .logo img {
  width: 100%;
  height: auto;
  max-height: 80px;
  object-fit: contain;
  filter: brightness(0) invert(1);
  transition: var(--transition-smooth);
}

.navbar.scrolled .logo img {
  filter: none;
}

.nav-links {
  display: flex;
  gap: 36px;
  align-items: center;
}

.nav-links a {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.85);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  position: relative;
  padding: 4px 0;
  transition: var(--transition-smooth);
}

.navbar.scrolled .nav-links a {
  color: var(--text-medium);
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1.5px;
  background: var(--pink-400);
  transition: var(--transition-smooth);
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-links a:hover {
  color: var(--pink-300);
}

.navbar.scrolled .nav-links a:hover {
  color: var(--pink-500);
}

/* Mobile Menu Toggle */
.menu-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
  z-index: 1001;
}

.menu-toggle span {
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: var(--transition-smooth);
  border-radius: 2px;
}

.navbar.scrolled .menu-toggle span {
  background: var(--text-dark);
}

.menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ========================================
   HERO SECTION
   ======================================== */
.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(232, 160, 191, 0.55) 0%,
    rgba(212, 134, 156, 0.45) 30%,
    rgba(61, 43, 31, 0.40) 70%,
    rgba(61, 43, 31, 0.55) 100%
  );
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
  text-align: center;
  max-width: 700px;
  padding: 0 24px;
  animation: heroFadeIn 1.2s ease-out;
}

@keyframes heroFadeIn {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-content .hero-badge {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.3);
  padding: 8px 24px;
  border-radius: 30px;
  margin-bottom: 28px;
  backdrop-filter: blur(4px);
}

.hero-content h1 {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  color: var(--white);
  font-weight: 500;
  line-height: 1.15;
  margin-bottom: 20px;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.15);
}

.hero-content h1 .script {
  font-family: var(--font-script);
  font-style: italic;
  font-weight: 400;
  display: block;
  font-size: 1.1em;
}

.hero-content p {
  font-family: var(--font-body);
  font-size: clamp(1rem, 2vw, 1.15rem);
  color: rgba(255, 255, 255, 0.88);
  font-weight: 300;
  line-height: 1.7;
  margin-bottom: 40px;
  letter-spacing: 0.5px;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-dark);
  background: var(--white);
  padding: 16px 40px;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  transition: var(--transition-smooth);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.btn-primary:hover {
  background: var(--pink-200);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(232, 160, 191, 0.3);
}

.btn-primary svg {
  width: 16px;
  height: 16px;
  transition: transform 0.3s ease;
}

.btn-primary:hover svg {
  transform: translateX(4px);
}

/* Hero scroll indicator */
.hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  animation: scrollBounce 2s ease-in-out infinite;
}

.hero-scroll span {
  font-size: 0.7rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
}

.hero-scroll .scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.5), transparent);
}

@keyframes scrollBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

/* ========================================
   ABOUT / INTRO SECTION
   ======================================== */
.about {
  padding: var(--section-padding);
  background: var(--off-white);
}

.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-image {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-medium);
}

.about-image::before {
  content: '';
  position: absolute;
  top: -20px;
  left: -20px;
  width: 100px;
  height: 100px;
  border: 2px solid var(--pink-300);
  border-radius: 20px;
  z-index: -1;
}

.about-image img {
  width: 100%;
  height: 450px;
  object-fit: cover;
  border-radius: 20px;
  transition: transform 0.6s ease;
}

.about-image:hover img {
  transform: scale(1.03);
}

.about-text h3 {
  font-family: var(--font-script);
  font-size: 1.1rem;
  color: var(--pink-500);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.about-text h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  color: var(--text-dark);
  font-weight: 500;
  line-height: 1.3;
  margin-bottom: 24px;
}

.about-text p {
  font-size: 0.95rem;
  color: var(--text-medium);
  line-height: 1.8;
  margin-bottom: 16px;
}

.about-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.about-tags span {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 1px;
  color: var(--pink-600);
  background: var(--pink-100);
  padding: 8px 18px;
  border-radius: 30px;
  border: 1px solid var(--pink-200);
}

/* ========================================
   MENU SECTION
   ======================================== */
.menu {
  padding: var(--section-padding);
  background: linear-gradient(180deg, var(--off-white) 0%, var(--pink-100) 50%, var(--off-white) 100%);
}

.menu-category {
  margin-bottom: 70px;
}

.menu-category:last-child {
  margin-bottom: 0;
}

.category-header {
  text-align: center;
  margin-bottom: 40px;
}

.category-header h3 {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  color: var(--text-dark);
  font-weight: 500;
  position: relative;
  display: inline-block;
}

.category-header h3::before,
.category-header h3::after {
  content: '';
  position: absolute;
  top: 50%;
  width: 40px;
  height: 1px;
  background: var(--pink-300);
}

.category-header h3::before {
  right: calc(100% + 16px);
}

.category-header h3::after {
  left: calc(100% + 16px);
}

.category-header .emoji {
  font-size: 1.5rem;
  display: block;
  margin-bottom: 8px;
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
  max-width: 900px;
  margin: 0 auto;
}

/* Product Card */
.product-card {
  background: var(--white);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: var(--transition-smooth);
  cursor: pointer;
  border: 1px solid rgba(232, 160, 191, 0.1);
}

.product-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: var(--shadow-hover);
}

.product-card-image {
  position: relative;
  width: 100%;
  height: 220px;
  overflow: hidden;
}

.product-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.product-card:hover .product-card-image img {
  transform: scale(1.08);
}

.product-card-image .price-badge {
  position: absolute;
  bottom: 12px;
  right: 12px;
  background: var(--white);
  color: var(--text-dark);
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  padding: 6px 16px;
  border-radius: 30px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.1);
}

.product-card-info {
  padding: 20px 24px;
}

.product-card-info h4 {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  color: var(--text-dark);
  font-weight: 500;
  margin-bottom: 6px;
}

.product-card-info p {
  font-size: 0.82rem;
  color: var(--text-light);
  font-weight: 300;
  line-height: 1.5;
}

.product-card-info .product-price {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid var(--pink-100);
}

.product-card-info .product-price span {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  color: var(--pink-600);
  font-weight: 600;
}

.product-card-info .product-price .order-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--pink-100);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-smooth);
}

.product-card:hover .order-icon {
  background: var(--pink-400);
}

.product-card:hover .order-icon svg {
  fill: var(--white);
}

.order-icon svg {
  width: 16px;
  height: 16px;
  fill: var(--pink-500);
  transition: var(--transition-smooth);
}

/* ========================================
   GALLERY SECTION
   ======================================== */
.gallery {
  padding: var(--section-padding);
  background: var(--off-white);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto;
  gap: 16px;
}

.gallery-item {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  cursor: pointer;
  box-shadow: var(--shadow-soft);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease, filter 0.4s ease;
}

.gallery-item:hover img {
  transform: scale(1.08);
  filter: brightness(0.85);
}

.gallery-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(232, 160, 191, 0.3), transparent);
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}

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

.gallery-item .gallery-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.5);
  opacity: 0;
  transition: var(--transition-smooth);
  z-index: 2;
}

.gallery-item:hover .gallery-icon {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

.gallery-icon svg {
  width: 32px;
  height: 32px;
  fill: var(--white);
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.2));
}

/* Gallery grid layout variations */
.gallery-item:nth-child(1) {
  grid-row: span 2;
  min-height: 400px;
}

.gallery-item:nth-child(2) {
  min-height: 190px;
}

.gallery-item:nth-child(3) {
  min-height: 190px;
}

.gallery-item:nth-child(4) {
  min-height: 190px;
}

.gallery-item:nth-child(5) {
  grid-column: span 2;
  min-height: 250px;
}

.gallery-item:nth-child(6) {
  min-height: 250px;
}

/* ========================================
   CTA SECTION
   ======================================== */
.cta {
  padding: 100px 0;
  background: linear-gradient(135deg, var(--pink-100) 0%, var(--pink-200) 50%, var(--beige-100) 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta::before {
  content: '';
  position: absolute;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 188, 209, 0.3), transparent);
  top: -100px;
  right: -100px;
}

.cta::after {
  content: '';
  position: absolute;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(245, 230, 216, 0.4), transparent);
  bottom: -80px;
  left: -80px;
}

.cta-content {
  position: relative;
  z-index: 2;
}

.cta-content h2 {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--text-dark);
  font-weight: 500;
  margin-bottom: 16px;
}

.cta-content p {
  font-size: 1rem;
  color: var(--text-medium);
  font-weight: 300;
  margin-bottom: 40px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 1px;
  color: var(--white);
  background: linear-gradient(135deg, #25D366, #128C7E);
  padding: 18px 44px;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  transition: var(--transition-smooth);
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.3);
  text-transform: uppercase;
}

.btn-whatsapp:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(37, 211, 102, 0.4);
}

.btn-whatsapp svg {
  width: 20px;
  height: 20px;
  fill: var(--white);
}

/* ========================================
   FOOTER
   ======================================== */
.footer {
  background: var(--text-dark);
  padding: 60px 0 30px;
  color: rgba(255, 255, 255, 0.6);
}

.footer-content {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 40px;
}

.footer-brand .logo {
  display: block;
  max-width: 160px;
  margin-bottom: 20px;
}

.footer-brand .logo img {
  width: 100%;
  height: auto;
  max-height: 100px;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

.footer-brand p {
  font-size: 0.85rem;
  line-height: 1.7;
  max-width: 300px;
}

.footer-links h4,
.footer-social h4 {
  font-family: var(--font-heading);
  font-size: 1rem;
  color: var(--white);
  font-weight: 500;
  margin-bottom: 20px;
  letter-spacing: 1px;
}

.footer-links a {
  display: block;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 12px;
  transition: var(--transition-smooth);
}

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

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

.social-icons a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-smooth);
}

.social-icons a:hover {
  background: var(--pink-400);
  transform: translateY(-3px);
}

.social-icons svg {
  width: 18px;
  height: 18px;
  fill: rgba(255, 255, 255, 0.6);
  transition: var(--transition-smooth);
}

.social-icons a:hover svg {
  fill: var(--white);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 24px;
  text-align: center;
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.35);
}

/* ========================================
   FLOATING WHATSAPP BUTTON
   ======================================== */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, #25D366, #128C7E);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 999;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.35);
  transition: var(--transition-smooth);
  animation: whatsappPulse 2s ease-in-out infinite;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 30px rgba(37, 211, 102, 0.5);
}

.whatsapp-float svg {
  width: 28px;
  height: 28px;
  fill: var(--white);
}

@keyframes whatsappPulse {
  0%, 100% {
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.35);
  }
  50% {
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.35),
                0 0 0 12px rgba(37, 211, 102, 0.1);
  }
}

/* ========================================
   RESPONSIVE DESIGN
   ======================================== */
@media (max-width: 1024px) {
  .about-content {
    gap: 50px;
  }

  .footer-content {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .gallery-item:nth-child(1) {
    grid-row: span 1;
    min-height: 250px;
  }

  .gallery-item:nth-child(5) {
    grid-column: span 1;
  }
}

@media (max-width: 768px) {
  :root {
    --section-padding: 70px 0;
  }

  .menu-toggle {
    display: flex;
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 75%;
    max-width: 300px;
    height: 100vh;
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(20px);
    flex-direction: column;
    justify-content: center;
    gap: 28px;
    transition: var(--transition-smooth);
    box-shadow: -10px 0 40px rgba(0, 0, 0, 0.1);
  }

  .nav-links.active {
    right: 0;
  }

  .nav-links a {
    color: var(--text-dark) !important;
    font-size: 0.95rem;
  }

  .about-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-image img {
    height: 300px;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  .gallery-item:nth-child(1) {
    grid-row: span 1;
    min-height: 180px;
  }

  .gallery-item:nth-child(5) {
    grid-column: span 1;
  }

  .gallery-item {
    min-height: 180px !important;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 30px;
    text-align: center;
  }

  .footer-brand p {
    max-width: 100%;
  }

  .social-icons {
    justify-content: center;
  }

  .hero-content h1 {
    font-size: 2.5rem;
  }

  .hero-content p {
    font-size: 0.95rem;
  }

  .section-title h2 {
    font-size: 1.8rem;
  }

  .menu-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
  }
}

@media (max-width: 480px) {
  .hero-content h1 {
    font-size: 2rem;
  }

  .btn-primary {
    padding: 14px 32px;
    font-size: 0.8rem;
  }

  .btn-whatsapp {
    padding: 16px 36px;
    font-size: 0.82rem;
  }

  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    gap: 8px;
  }

  .gallery-item {
    min-height: 150px !important;
  }

  .product-card-image {
    height: 180px;
  }

  .whatsapp-float {
    bottom: 20px;
    right: 20px;
    width: 52px;
    height: 52px;
  }

  .whatsapp-float svg {
    width: 24px;
    height: 24px;
  }
}

/* ========================================
   PREMIUM ANIMATIONS
   ======================================== */

/* --- Hero Floating Sparkles --- */
.hero-sparkles {
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
  overflow: hidden;
}

.sparkle-particle {
  position: absolute;
  pointer-events: none;
  opacity: 0;
  animation: sparkleFloat linear forwards;
  user-select: none;
  line-height: 1;
}

@keyframes sparkleFloat {
  0%   { transform: translateY(0) rotate(0deg) scale(0.6); opacity: 0; }
  12%  { opacity: 1; }
  88%  { opacity: 0.5; }
  100% { transform: translateY(-110vh) rotate(600deg) scale(0.1); opacity: 0; }
}

/* --- Hero Badge Float --- */
.hero-badge {
  animation: badgeFloat 4s ease-in-out infinite !important;
}

@keyframes badgeFloat {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-8px); filter: drop-shadow(0 6px 16px rgba(232,160,191,0.5)); }
}

/* --- Primary Button Shimmer --- */
.btn-primary {
  position: relative;
  overflow: hidden;
}

.btn-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -120%;
  width: 60%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.45), transparent);
  transform: skewX(-20deg);
  animation: shimmerSweep 2.8s ease-in-out infinite;
}

/* --- WhatsApp CTA Button Shimmer --- */
.btn-whatsapp {
  position: relative;
  overflow: hidden;
}

.btn-whatsapp::before {
  content: '';
  position: absolute;
  top: 0;
  left: -120%;
  width: 60%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.22), transparent);
  transform: skewX(-20deg);
  animation: shimmerSweep 3s ease-in-out infinite 0.8s;
}

@keyframes shimmerSweep {
  0%   { left: -120%; }
  100% { left: 160%; }
}

/* --- Cursor Sparkle Trail --- */
.cursor-trail {
  position: fixed;
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  animation: trailFade 0.7s ease-out forwards;
  mix-blend-mode: screen;
}

@keyframes trailFade {
  0%   { opacity: 1; transform: translate(-50%, -50%) scale(1); }
  100% { opacity: 0; transform: translate(-50%, -50%) scale(0.1) translateY(-14px); }
}

/* --- Product Card 3D Base --- */
.product-card {
  transform-style: preserve-3d;
  will-change: transform;
}

/* ---- Preloader (optional elegant touch) ---- */
.preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--off-white);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

.preloader.hidden {
  opacity: 0;
  visibility: hidden;
}

.preloader-text {
  font-family: var(--font-script);
  font-size: 2.5rem;
  color: var(--pink-400);
  animation: preloaderPulse 1.5s ease-in-out infinite;
}

@keyframes preloaderPulse {
  0%, 100% { opacity: 0.4; transform: scale(0.98); }
  50% { opacity: 1; transform: scale(1); }
}
