@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&family=Playfair+Display:wght@400;500;600;700;800&family=Pacifico&display=swap');

:root {
  --cream: #FFF8F0;
  --cream-dark: #F5E6D3;
  --pink: #FF6B8A;
  --pink-dark: #E8577A;
  --pink-light: #FFB3C6;
  --chocolate: #5C3A21;
  --chocolate-light: #7A4E32;
  --chocolate-dark: #3D2514;
  --peach: #FFDAB9;
  --peach-dark: #F5CBA7;
  --yellow: #FFF3CD;
  --yellow-dark: #FFE082;
  --white: #FFFFFF;
  --black: #2D2D2D;
  --gray: #6B6B6B;
  --light-gray: #F8F9FA;
  --shadow: 0 10px 40px rgba(92, 58, 33, 0.12);
  --shadow-hover: 0 20px 60px rgba(92, 58, 33, 0.2);
  --radius: 20px;
  --radius-sm: 12px;
  --radius-lg: 30px;
  --transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --font-primary: 'Poppins', sans-serif;
  --font-secondary: 'Playfair Display', serif;
  --font-accent: 'Pacifico', cursive;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; overflow-x: hidden; }

body {
  font-family: var(--font-primary);
  color: var(--black);
  background: var(--cream);
  overflow-x: hidden;
  line-height: 1.7;
}

::selection { background: var(--pink); color: var(--white); }

.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }

h1, h2, h3, h4, h5, h6 { font-family: var(--font-secondary); color: var(--chocolate); line-height: 1.3; }

a { text-decoration: none; color: inherit; transition: var(--transition); }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }

/* ===== PRELOADER ===== */
#preloader {
  position: fixed;
  inset: 0;
  background: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 99999;
  transition: opacity 0.6s;
}
#preloader.hidden { opacity: 0; pointer-events: none; }
.preloader-content { text-align: center; }
.preloader-cake { font-size: 60px; animation: bounce 1s infinite; }
.preloader-text {
  font-family: var(--font-accent);
  font-size: 28px;
  color: var(--pink);
  margin-top: 15px;
  animation: pulse 1.5s infinite;
}
@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-20px); }
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

/* ===== HEADER ===== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9999;
  padding: 15px 0;
  transition: var(--transition);
  background: transparent;
}
.header.scrolled {
  background: var(--cream);
  box-shadow: 0 2px 30px rgba(92, 58, 33, 0.1);
  padding: 8px 0;
}
.header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}
.logo-icon {
  font-size: 40px;
  line-height: 1;
}
.logo-text {
  font-family: var(--font-accent);
  font-size: 26px;
  color: var(--chocolate);
  line-height: 1.2;
}
.logo-text span { color: var(--pink); }
.logo-sub {
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gray);
  font-weight: 500;
}

.nav-list {
  display: flex;
  gap: 30px;
  align-items: center;
}
.nav-list a {
  font-size: 14px;
  font-weight: 500;
  color: var(--chocolate);
  position: relative;
  padding: 5px 0;
  letter-spacing: 0.5px;
}
.nav-list a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--pink);
  transition: var(--transition);
  border-radius: 2px;
}
.nav-list a:hover::after,
.nav-list a.active::after { width: 100%; }
.nav-list a:hover { color: var(--pink); }

.header-actions { display: flex; align-items: center; gap: 15px; }
.header-actions .cart-btn {
  position: relative;
  font-size: 22px;
  color: var(--chocolate);
  cursor: pointer;
}
.cart-count {
  position: absolute;
  top: -8px;
  right: -8px;
  width: 20px;
  height: 20px;
  background: var(--pink);
  color: var(--white);
  font-size: 11px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 5px;
}
.hamburger span {
  width: 28px;
  height: 2.5px;
  background: var(--chocolate);
  border-radius: 3px;
  transition: var(--transition);
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 34px;
  border-radius: 50px;
  font-family: var(--font-primary);
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.btn-primary {
  background: var(--pink);
  color: var(--white);
  box-shadow: 0 8px 25px rgba(255, 107, 138, 0.35);
}
.btn-primary:hover {
  background: var(--pink-dark);
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(255, 107, 138, 0.45);
}
.btn-secondary {
  background: var(--chocolate);
  color: var(--white);
  box-shadow: 0 8px 25px rgba(92, 58, 33, 0.3);
}
.btn-secondary:hover {
  background: var(--chocolate-light);
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(92, 58, 33, 0.4);
}
.btn-outline {
  background: transparent;
  color: var(--chocolate);
  border: 2px solid var(--chocolate);
}
.btn-outline:hover {
  background: var(--chocolate);
  color: var(--white);
  transform: translateY(-3px);
}
.btn-sm {
  padding: 10px 24px;
  font-size: 13px;
}
.btn-lg {
  padding: 18px 44px;
  font-size: 17px;
}

/* ===== SECTION STYLES ===== */
.section { padding: 100px 0; position: relative; }
.section-tag {
  font-family: var(--font-accent);
  font-size: 20px;
  color: var(--pink);
  display: block;
  margin-bottom: 8px;
}
.section-title {
  font-size: 42px;
  margin-bottom: 15px;
  line-height: 1.2;
}
.section-subtitle {
  color: var(--gray);
  font-size: 16px;
  max-width: 600px;
  margin: 0 auto 50px;
  text-align: center;
}
.section-header {
  text-align: center;
  margin-bottom: 50px;
}

/* ===== HERO SECTION ===== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, var(--cream) 0%, var(--peach) 50%, var(--yellow) 100%);
  position: relative;
  overflow: hidden;
  padding-top: 100px;
}
.hero .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.hero-content { position: relative; z-index: 2; }
.hero-tag {
  display: inline-block;
  background: rgba(255, 107, 138, 0.15);
  color: var(--pink);
  padding: 8px 22px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 20px;
}
.hero-title {
  font-size: 56px;
  color: var(--chocolate);
  margin-bottom: 20px;
  line-height: 1.15;
}
.hero-title span {
  display: block;
  color: var(--pink);
}
.hero-text {
  font-size: 17px;
  color: var(--gray);
  margin-bottom: 35px;
  max-width: 500px;
  line-height: 1.8;
}
.hero-buttons { display: flex; gap: 15px; flex-wrap: wrap; }
.hero-stats {
  display: flex;
  gap: 40px;
  margin-top: 50px;
}
.hero-stat h3 {
  font-family: var(--font-secondary);
  font-size: 36px;
  color: var(--chocolate);
}
.hero-stat p {
  font-size: 13px;
  color: var(--gray);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.hero-image { position: relative; z-index: 2; }
.hero-img-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-hover);
}
.hero-img-wrap img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  transition: transform 0.8s;
}
.hero-img-wrap:hover img { transform: scale(1.05); }
.hero-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--pink);
  color: var(--white);
  padding: 20px 25px;
  border-radius: var(--radius);
  text-align: center;
  box-shadow: 0 10px 30px rgba(255, 107, 138, 0.3);
  animation: float 3s ease-in-out infinite;
}
.hero-badge h4 { font-family: var(--font-primary); font-size: 32px; font-weight: 800; color: var(--white); }
.hero-badge p { font-size: 12px; opacity: 0.9; }

.hero-deco {
  position: absolute;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  pointer-events: none;
  z-index: 1;
}
.hero-deco-1 {
  top: -80px;
  right: 10%;
  background: radial-gradient(circle, rgba(255,107,138,0.15) 0%, transparent 70%);
}
.hero-deco-2 {
  bottom: -50px;
  left: 5%;
  background: radial-gradient(circle, rgba(255,218,185,0.4) 0%, transparent 70%);
}
.floating-cakes {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 1;
}
.float-cake {
  position: absolute;
  font-size: 50px;
  opacity: 0.15;
  animation: floatAround 15s infinite linear;
}
.float-cake:nth-child(1) { top: 10%; left: 5%; animation-delay: 0s; font-size: 60px; }
.float-cake:nth-child(2) { top: 60%; right: 8%; animation-delay: -3s; font-size: 40px; }
.float-cake:nth-child(3) { top: 30%; right: 15%; animation-delay: -6s; font-size: 70px; }
.float-cake:nth-child(4) { bottom: 20%; left: 10%; animation-delay: -9s; font-size: 45px; }

@keyframes floatAround {
  0%, 100% { transform: translate(0, 0) rotate(0deg); }
  25% { transform: translate(30px, -30px) rotate(10deg); }
  50% { transform: translate(-20px, 20px) rotate(-5deg); }
  75% { transform: translate(20px, 30px) rotate(8deg); }
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-15px); }
}

/* ===== ABOUT SECTION ===== */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.about-image { position: relative; }
.about-image .main-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.about-image .main-img img {
  width: 100%;
  height: 450px;
  object-fit: cover;
  transition: transform 0.8s;
}
.about-image .main-img:hover img { transform: scale(1.05); }
.about-experience {
  position: absolute;
  bottom: -25px;
  left: -25px;
  background: var(--chocolate);
  color: var(--white);
  padding: 25px 30px;
  border-radius: var(--radius);
  text-align: center;
  box-shadow: var(--shadow-hover);
}
.about-experience h3 { font-size: 42px; font-family: var(--font-secondary); color: var(--white); }
.about-experience p { font-size: 14px; opacity: 0.9; }
.about-text h2 { font-size: 40px; margin-bottom: 20px; }
.about-text p { color: var(--gray); margin-bottom: 25px; line-height: 1.8; }
.about-features { display: grid; grid-template-columns: 1fr 1fr; gap: 15px; margin-bottom: 30px; }
.about-feature {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 500;
  color: var(--chocolate);
}
.about-feature-icon {
  width: 40px;
  height: 40px;
  background: var(--pink-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--pink);
  font-size: 18px;
}

/* ===== FEATURED CAKES ===== */
.featured-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}
.cake-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
  position: relative;
}
.cake-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-hover);
}
.cake-card-img {
  height: 260px;
  overflow: hidden;
  position: relative;
}
.cake-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s;
}
.cake-card:hover .cake-card-img img { transform: scale(1.1); }
.cake-badge {
  position: absolute;
  top: 15px;
  left: 15px;
  background: var(--pink);
  color: var(--white);
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 600;
}
.cake-rating-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  background: var(--white);
  color: var(--chocolate);
  padding: 5px 12px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
  box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}
.cake-card-body { padding: 22px; }
.cake-card-body h3 {
  font-family: var(--font-primary);
  font-size: 18px;
  margin-bottom: 8px;
  color: var(--chocolate);
}
.cake-card-body p { font-size: 14px; color: var(--gray); margin-bottom: 12px; }
.cake-card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.cake-price { font-size: 22px; font-weight: 700; color: var(--pink); font-family: var(--font-primary); }
.cake-price span { font-size: 14px; color: var(--gray); font-weight: 400; text-decoration: line-through; margin-left: 8px; }

/* ===== WHY CHOOSE US ===== */
.why-choose {
  background: linear-gradient(135deg, var(--chocolate) 0%, var(--chocolate-light) 100%);
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.why-choose .section-title,
.why-choose .section-subtitle { color: var(--white); }
.why-choose .section-subtitle { opacity: 0.85; }
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  position: relative;
  z-index: 2;
}
.why-card {
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.1);
  padding: 40px 30px;
  border-radius: var(--radius);
  text-align: center;
  transition: var(--transition);
}
.why-card:hover {
  background: rgba(255,255,255,0.15);
  transform: translateY(-8px);
}
.why-icon {
  width: 70px;
  height: 70px;
  background: rgba(255,255,255,0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 30px;
  transition: var(--transition);
}
.why-card:hover .why-icon { background: var(--pink); transform: scale(1.1) rotate(5deg); }
.why-card h3 { font-family: var(--font-primary); font-size: 20px; color: var(--white); margin-bottom: 12px; }
.why-card p { font-size: 14px; opacity: 0.85; line-height: 1.7; }

.why-deco {
  position: absolute;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  pointer-events: none;
}
.why-deco-1 { top: -150px; right: -100px; background: radial-gradient(circle, rgba(255,107,138,0.1) 0%, transparent 70%); }
.why-deco-2 { bottom: -100px; left: -100px; background: radial-gradient(circle, rgba(255,218,185,0.08) 0%, transparent 70%); }

/* ===== TESTIMONIALS ===== */
.testimonials { background: var(--cream-dark); }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
}
.testimonial-card {
  background: var(--white);
  padding: 35px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  transition: var(--transition);
  position: relative;
}
.testimonial-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-hover); }
.testimonial-card::before {
  content: '"';
  font-family: var(--font-secondary);
  font-size: 80px;
  color: var(--pink-light);
  position: absolute;
  top: 10px;
  right: 25px;
  line-height: 1;
  opacity: 0.5;
}
.testimonial-stars { color: #FFD700; margin-bottom: 15px; font-size: 18px; }
.testimonial-text { font-style: italic; color: var(--gray); margin-bottom: 20px; line-height: 1.8; }
.testimonial-author { display: flex; align-items: center; gap: 15px; }
.testimonial-avatar {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  object-fit: cover;
}
.testimonial-author h4 { font-family: var(--font-primary); font-size: 16px; color: var(--chocolate); }
.testimonial-author p { font-size: 13px; color: var(--gray); }

/* ===== OFFERS BANNER ===== */
.offers-banner {
  background: linear-gradient(135deg, var(--pink) 0%, var(--peach) 100%);
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.offers-banner .section-tag { color: var(--white); }
.offers-banner .section-title { color: var(--white); font-size: 48px; }
.offers-banner .section-subtitle { color: rgba(255,255,255,0.9); }
.offer-countdown {
  display: flex;
  justify-content: center;
  gap: 25px;
  margin: 30px 0;
}
.countdown-item {
  background: rgba(255,255,255,0.2);
  backdrop-filter: blur(10px);
  width: 90px;
  height: 90px;
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--white);
}
.countdown-item span:first-child {
  font-size: 32px;
  font-weight: 700;
  font-family: var(--font-primary);
}
.countdown-item span:last-child {
  font-size: 12px;
  opacity: 0.8;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ===== GALLERY PREVIEW ===== */
.gallery-preview { background: var(--cream); }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(2, 220px);
  gap: 15px;
}
.gallery-item {
  border-radius: var(--radius-sm);
  overflow: hidden;
  position: relative;
  cursor: pointer;
  box-shadow: var(--shadow);
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s;
}
.gallery-item:hover img { transform: scale(1.1); }
.gallery-item:first-child { grid-column: span 2; grid-row: span 2; }
.gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(92, 58, 33, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition);
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay span {
  color: var(--white);
  font-size: 40px;
  transform: scale(0.5);
  transition: var(--transition);
}
.gallery-item:hover .gallery-overlay span { transform: scale(1); }

/* ===== INSTAGRAM FEED ===== */
.instagram-feed { padding: 0; }
.insta-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
}
.insta-item {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1;
}
.insta-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s;
}
.insta-item:hover img { transform: scale(1.1); }
.insta-overlay {
  position: absolute;
  inset: 0;
  background: rgba(92, 58, 33, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition);
}
.insta-item:hover .insta-overlay { opacity: 1; }
.insta-overlay span { color: var(--white); font-size: 28px; }

/* ===== NEWSLETTER ===== */
.newsletter {
  background: linear-gradient(135deg, var(--chocolate) 0%, var(--chocolate-dark) 100%);
  padding: 80px 0;
  text-align: center;
}
.newsletter .section-title { color: var(--white); }
.newsletter .section-subtitle { color: rgba(255,255,255,0.8); }
.newsletter-form {
  max-width: 500px;
  margin: 0 auto;
  display: flex;
  gap: 0;
  border-radius: 50px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0,0,0,0.2);
}
.newsletter-form input {
  flex: 1;
  padding: 18px 25px;
  border: none;
  font-family: var(--font-primary);
  font-size: 15px;
  outline: none;
}
.newsletter-form button {
  padding: 18px 35px;
  background: var(--pink);
  color: var(--white);
  border: none;
  font-family: var(--font-primary);
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  transition: var(--transition);
}
.newsletter-form button:hover { background: var(--pink-dark); }

/* ===== FOOTER ===== */
.footer {
  background: var(--chocolate-dark);
  color: rgba(255,255,255,0.8);
  padding: 80px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 50px;
  margin-bottom: 50px;
}
.footer-brand .logo-text { color: var(--white); font-size: 28px; }
.footer-brand p { margin: 20px 0; line-height: 1.8; font-size: 14px; }
.footer-social { display: flex; gap: 12px; }
.footer-social a {
  width: 42px;
  height: 42px;
  background: rgba(255,255,255,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 18px;
  transition: var(--transition);
}
.footer-social a:hover { background: var(--pink); transform: translateY(-3px); }

.footer h4 {
  font-family: var(--font-primary);
  color: var(--white);
  font-size: 18px;
  margin-bottom: 25px;
  font-weight: 600;
}
.footer-links li { margin-bottom: 12px; }
.footer-links a {
  font-size: 14px;
  opacity: 0.8;
  transition: var(--transition);
}
.footer-links a:hover { opacity: 1; color: var(--pink); padding-left: 5px; }
.footer-contact li {
  display: flex;
  gap: 12px;
  margin-bottom: 18px;
  font-size: 14px;
}
.footer-contact-icon { color: var(--pink); font-size: 18px; min-width: 24px; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 25px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
  opacity: 0.7;
}

/* ===== WHATSAPP BUTTON ===== */
.whatsapp-btn {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  background: #25D366;
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
  z-index: 999;
  transition: var(--transition);
  animation: whatsappPulse 2s infinite;
}
.whatsapp-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 12px 35px rgba(37, 211, 102, 0.5);
  color: var(--white);
}
@keyframes whatsappPulse {
  0%, 100% { box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4); }
  50% { box-shadow: 0 8px 40px rgba(37, 211, 102, 0.7); }
}

/* ===== SCROLL TO TOP ===== */
.scroll-top {
  position: fixed;
  bottom: 30px;
  left: 30px;
  width: 50px;
  height: 50px;
  background: var(--chocolate);
  color: var(--white);
  border: none;
  border-radius: 50%;
  font-size: 22px;
  cursor: pointer;
  z-index: 999;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition);
  box-shadow: var(--shadow);
}
.scroll-top.visible { opacity: 1; pointer-events: auto; }
.scroll-top:hover { background: var(--pink); transform: translateY(-3px); }

/* ===== PAGE HERO (Inner Pages) ===== */
.page-hero {
  padding: 180px 0 100px;
  text-align: center;
  background: linear-gradient(135deg, var(--peach) 0%, var(--yellow) 50%, var(--cream) 100%);
  position: relative;
  overflow: hidden;
}
.page-hero h1 {
  font-size: 52px;
  margin-bottom: 10px;
}
.page-hero p { color: var(--gray); font-size: 17px; max-width: 500px; margin: 0 auto; }
.page-hero-deco {
  position: absolute;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  pointer-events: none;
}
.page-hero-deco-1 { top: -50px; left: -50px; background: radial-gradient(circle, rgba(255,107,138,0.12) 0%, transparent 70%); }
.page-hero-deco-2 { bottom: -50px; right: -50px; background: radial-gradient(circle, rgba(255,218,185,0.3) 0%, transparent 70%); }

/* ===== MENU PAGE ===== */
.menu-filters {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 50px;
  flex-wrap: wrap;
}
.menu-filter {
  padding: 10px 25px;
  border-radius: 50px;
  border: 2px solid var(--peach-dark);
  background: transparent;
  font-family: var(--font-primary);
  font-weight: 600;
  font-size: 14px;
  color: var(--chocolate);
  cursor: pointer;
  transition: var(--transition);
}
.menu-filter:hover,
.menu-filter.active {
  background: var(--pink);
  color: var(--white);
  border-color: var(--pink);
}
.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 30px;
}

/* Rating Stars */
.stars {
  color: #FFD700;
  font-size: 14px;
  letter-spacing: 2px;
}

/* ===== ABOUT PAGE ===== */
.about-story-content { max-width: 800px; margin: 0 auto; text-align: center; }
.about-story-content p { color: var(--gray); line-height: 1.9; margin-bottom: 20px; }
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}
.team-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
  text-align: center;
}
.team-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-hover); }
.team-img {
  height: 300px;
  overflow: hidden;
}
.team-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s;
}
.team-card:hover .team-img img { transform: scale(1.08); }
.team-body { padding: 25px; }
.team-body h3 { font-family: var(--font-primary); font-size: 20px; }
.team-body p { color: var(--gray); font-size: 14px; }

/* ===== CUSTOM ORDER PAGE ===== */
.order-form-wrap {
  max-width: 800px;
  margin: 0 auto;
  background: var(--white);
  padding: 50px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.form-group { margin-bottom: 22px; }
.form-group label {
  display: block;
  font-weight: 600;
  font-size: 14px;
  color: var(--chocolate);
  margin-bottom: 8px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 18px;
  border: 2px solid var(--cream-dark);
  border-radius: var(--radius-sm);
  font-family: var(--font-primary);
  font-size: 14px;
  color: var(--black);
  transition: var(--transition);
  background: var(--cream);
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--pink);
  box-shadow: 0 0 0 4px rgba(255, 107, 138, 0.1);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-group input[type="file"] { padding: 10px; }
.form-group input[type="file"]::file-selector-button {
  padding: 8px 20px;
  background: var(--chocolate);
  color: var(--white);
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-family: var(--font-primary);
  font-weight: 500;
  transition: var(--transition);
}
.form-group input[type="file"]::file-selector-button:hover { background: var(--chocolate-light); }
.order-summary {
  background: var(--peach);
  padding: 25px;
  border-radius: var(--radius-sm);
  margin-top: 30px;
}
.order-summary h4 { font-family: var(--font-primary); color: var(--chocolate); margin-bottom: 15px; }
.order-summary-item { display: flex; justify-content: space-between; padding: 10px 0; border-bottom: 1px solid rgba(92,58,33,0.1); font-size: 14px; }
.order-summary-total { display: flex; justify-content: space-between; padding: 15px 0 0; font-weight: 700; font-size: 20px; color: var(--chocolate); }

/* ===== GALLERY PAGE ===== */
.gallery-page-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 20px;
}
.gallery-page-item {
  position: relative;
  border-radius: var(--radius-sm);
  overflow: hidden;
  cursor: pointer;
  box-shadow: var(--shadow);
  height: 280px;
}
.gallery-page-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s;
}
.gallery-page-item:hover img { transform: scale(1.1); }
.gallery-page-item .overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(92,58,33,0.8) 0%, transparent 50%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 25px;
  opacity: 0;
  transition: var(--transition);
}
.gallery-page-item:hover .overlay { opacity: 1; }
.gallery-page-item .overlay h4 { color: var(--white); font-family: var(--font-primary); font-size: 18px; }
.gallery-page-item .overlay p { color: rgba(255,255,255,0.8); font-size: 14px; }

/* ===== GALLERY LIGHTBOX ===== */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.92);
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s;
}
.lightbox.open { opacity: 1; pointer-events: auto; }
.lightbox-content {
  max-width: 800px;
  max-height: 80vh;
  position: relative;
}
.lightbox-content img {
  width: 100%;
  max-height: 80vh;
  object-fit: contain;
  border-radius: 10px;
}
.lightbox-close {
  position: absolute;
  top: -40px;
  right: 0;
  color: var(--white);
  font-size: 36px;
  cursor: pointer;
  background: none;
  border: none;
  transition: var(--transition);
}
.lightbox-close:hover { color: var(--pink); transform: rotate(90deg); }
.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  color: var(--white);
  font-size: 40px;
  cursor: pointer;
  background: none;
  border: none;
  transition: var(--transition);
  padding: 10px;
}
.lightbox-nav:hover { color: var(--pink); transform: translateY(-50%) scale(1.2); }
.lightbox-prev { left: -60px; }
.lightbox-next { right: -60px; }

/* ===== OFFERS PAGE ===== */
.offers-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
}
.offer-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}
.offer-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-hover); }
.offer-card-img {
  height: 220px;
  overflow: hidden;
  position: relative;
}
.offer-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s;
}
.offer-card:hover .offer-card-img img { transform: scale(1.08); }
.offer-tag {
  position: absolute;
  top: 15px;
  left: 15px;
  background: var(--pink);
  color: var(--white);
  padding: 8px 18px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 700;
}
.offer-card-body { padding: 25px; flex: 1; display: flex; flex-direction: column; }
.offer-card-body h3 { font-family: var(--font-primary); font-size: 20px; margin-bottom: 10px; }
.offer-card-body p { color: var(--gray); font-size: 14px; margin-bottom: 15px; flex: 1; }
.offer-validity { font-size: 13px; color: var(--pink); font-weight: 600; }

/* ===== CONTACT PAGE ===== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
}
.contact-info-card {
  background: var(--white);
  padding: 40px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.contact-info-item {
  display: flex;
  gap: 20px;
  margin-bottom: 30px;
}
.contact-icon {
  width: 55px;
  height: 55px;
  background: var(--peach);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: var(--chocolate);
  flex-shrink: 0;
}
.contact-info-item h4 { font-family: var(--font-primary); font-size: 16px; margin-bottom: 5px; }
.contact-info-item p { color: var(--gray); font-size: 14px; }
.contact-form-wrap {
  background: var(--white);
  padding: 40px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.contact-form-wrap textarea { min-height: 150px; }

.map-wrap {
  margin-top: 50px;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  height: 400px;
}
.map-wrap iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* ===== COUNTERS ===== */
.counters-section { background: var(--cream-dark); }
.counters-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}
.counter-item {
  text-align: center;
  padding: 30px;
}
.counter-number {
  font-family: var(--font-secondary);
  font-size: 48px;
  font-weight: 700;
  color: var(--pink);
  line-height: 1;
  margin-bottom: 8px;
}
.counter-item p { font-size: 15px; color: var(--gray); font-weight: 500; }

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

/* ===== RESPONSIVE ===== */
@media (max-width: 1200px) {
  .hero-title { font-size: 46px; }
  .section-title { font-size: 36px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
}

@media (max-width: 1024px) {
  .hero .container { grid-template-columns: 1fr; text-align: center; }
  .hero-text { margin: 0 auto 35px; }
  .hero-stats { justify-content: center; }
  .hero-buttons { justify-content: center; }
  .hero-img-wrap img { height: 400px; }
  .hero-badge { right: 10px; bottom: -15px; }
  .about-grid { grid-template-columns: 1fr; text-align: center; }
  .about-features { justify-items: center; }
  .about-experience { left: 10px; bottom: -15px; }
  .contact-grid { grid-template-columns: 1fr; }
  .counters-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-template-rows: auto; }
  .gallery-item:first-child { grid-column: span 2; grid-row: span 1; }
  .insta-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 768px) {
  .hamburger { display: flex; }
  .nav-list {
    position: fixed;
    top: 0;
    right: -100%;
    width: 300px;
    height: 100vh;
    background: var(--cream);
    flex-direction: column;
    padding: 100px 40px;
    gap: 20px;
    box-shadow: -10px 0 40px rgba(0,0,0,0.1);
    transition: right 0.4s;
    z-index: 9998;
  }
  .nav-list.open { right: 0; }
  .nav-list a { font-size: 18px; }

  .hero-title { font-size: 36px; }
  .hero-img-wrap img { height: 300px; }
  .hero-stats { gap: 25px; flex-wrap: wrap; }
  .hero-stat h3 { font-size: 28px; }
  .section-title { font-size: 30px; }
  .page-hero h1 { font-size: 36px; }
  .offers-banner .section-title { font-size: 32px; }

  .about-features { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 30px; }
  .footer-bottom { flex-direction: column; gap: 10px; text-align: center; }
  .order-form-wrap { padding: 25px; }
  .form-row { grid-template-columns: 1fr; }
  .gallery-page-grid { grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); }
  .offers-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }

  .offer-countdown { gap: 15px; flex-wrap: wrap; }
  .countdown-item { width: 75px; height: 75px; }
  .countdown-item span:first-child { font-size: 26px; }
  .newsletter-form { flex-direction: column; border-radius: var(--radius-sm); }
  .newsletter-form input { border-radius: 0; }
  .counters-grid { grid-template-columns: repeat(2, 1fr); }
  .menu-filters { gap: 8px; }
  .menu-filter { padding: 8px 18px; font-size: 13px; }
  .insta-grid { grid-template-columns: repeat(2, 1fr); }

  .whatsapp-btn { width: 50px; height: 50px; font-size: 24px; bottom: 20px; right: 20px; }
  .scroll-top { width: 42px; height: 42px; font-size: 18px; bottom: 20px; left: 20px; }
  .lightbox-nav { font-size: 30px; }
  .lightbox-prev { left: 10px; }
  .lightbox-next { right: 10px; }
}

@media (max-width: 480px) {
  .hero-title { font-size: 30px; }
  .hero-img-wrap img { height: 250px; }
  .hero-badge { padding: 15px 20px; }
  .hero-badge h4 { font-size: 24px; }
  .section-title { font-size: 26px; }
  .page-hero h1 { font-size: 28px; }
  .btn { padding: 12px 28px; font-size: 14px; }
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-item:first-child { grid-column: span 1; }
  .counter-number { font-size: 36px; }
  .logo-text { font-size: 22px; }
}
