/* ==========================================================================
   CHUBBY BUNNY - DESIGN SYSTEM & STYLES
   Paleta: Fondo Claro Elegante, Acentos en Negro, Blanco y Rosa Vivo
   Tipografía: Times New Roman
   ========================================================================== */

:root {
  /* Color Palette - Fondo Claro Dulce y Elegante */
  --bg-main: #fff6fa;
  --bg-secondary: #fceef4;
  --bg-surface: #ffffff;
  --bg-surface-elevated: #fff0f6;
  --bg-surface-hover: #ffe4ef;
  
  --pink-primary: #ff2a85;
  --pink-hot: #e60067;
  --pink-light: #ff65a3;
  --pink-soft: #ffe8f2;
  --pink-glow: rgba(255, 42, 133, 0.25);
  --pink-glow-soft: rgba(255, 42, 133, 0.12);
  
  --black: #121217;
  --white: #ffffff;
  --text-main: #16161d;
  --text-muted: #585868;
  --text-light: #7c7c8f;

  --border-subtle: rgba(0, 0, 0, 0.08);
  --border-pink: rgba(255, 42, 133, 0.32);
  --border-pink-light: rgba(255, 42, 133, 0.18);

  /* Typography: Times New Roman */
  --font-heading: 'Times New Roman', Times, Baskerville, Georgia, serif;
  --font-body: 'Times New Roman', Times, Baskerville, Georgia, serif;

  /* Shadows & Glows */
  --shadow-sm: 0 4px 14px rgba(255, 42, 133, 0.08), 0 2px 6px rgba(0, 0, 0, 0.04);
  --shadow-md: 0 10px 28px rgba(255, 42, 133, 0.12), 0 4px 12px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 20px 48px rgba(255, 42, 133, 0.15), 0 8px 20px rgba(0, 0, 0, 0.06);
  --shadow-pink: 0 8px 25px rgba(255, 42, 133, 0.35);
  --shadow-pink-lg: 0 12px 35px rgba(255, 42, 133, 0.5);

  /* Radius */
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --radius-xl: 32px;
  --radius-full: 9999px;

  /* Transitions */
  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-normal: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-bounce: 0.45s cubic-bezier(0.34, 1.56, 0.64, 1);
}

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

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

body {
  background-color: var(--bg-main);
  color: var(--text-main);
  font-family: var(--font-body);
  line-height: 1.65;
  overflow-x: hidden;
  position: relative;
  min-height: 100vh;
}

/* Ambient Background Glows */
.ambient-glow {
  position: fixed;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
  filter: blur(140px);
  opacity: 0.45;
}

.glow-1 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, #ffb3d6, transparent 70%);
  top: -120px;
  right: -100px;
}

.glow-2 {
  width: 550px;
  height: 550px;
  background: radial-gradient(circle, #ffd0e5, transparent 70%);
  bottom: 15%;
  left: -150px;
}

.glow-3 {
  width: 420px;
  height: 420px;
  background: radial-gradient(circle, #ff99c8, transparent 70%);
  top: 45%;
  right: -80px;
}

/* Layout Utilities */
.container {
  width: 100%;
  max-width: 1220px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 1;
}

.text-center { text-align: center; }
.text-pink { color: var(--pink-primary); }

.gradient-text {
  background: linear-gradient(135deg, var(--black) 15%, var(--pink-primary) 70%, var(--pink-hot) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

/* Section Header Styles */
.section-header {
  margin-bottom: 48px;
}

.section-subtitle {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 1.2px;
  color: var(--pink-hot);
  background: #ffffff;
  border: 1px solid var(--border-pink);
  padding: 6px 18px;
  border-radius: var(--radius-full);
  margin-bottom: 16px;
  box-shadow: var(--shadow-sm);
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(2.2rem, 3.8vw, 3rem);
  font-weight: 800;
  color: var(--black);
  line-height: 1.2;
  margin-bottom: 14px;
  letter-spacing: -0.5px;
}

.section-desc {
  color: var(--text-muted);
  font-size: 1.15rem;
  max-width: 640px;
  margin: 0 auto;
  font-style: italic;
}

/* ==========================================================================
   BUTTONS & LINKS
   ========================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  padding: 14px 30px;
  border-radius: var(--radius-full);
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: all var(--transition-normal);
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: linear-gradient(135deg, var(--pink-primary) 0%, var(--pink-hot) 100%);
  color: var(--white);
  box-shadow: var(--shadow-pink);
}

.btn-primary:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: var(--shadow-pink-lg);
  background: linear-gradient(135deg, var(--pink-light) 0%, var(--pink-primary) 100%);
}

.btn-secondary {
  background: var(--white);
  color: var(--black);
  border: 1px solid var(--border-pink);
  box-shadow: var(--shadow-sm);
}

.btn-secondary:hover {
  background: var(--bg-surface-hover);
  border-color: var(--pink-primary);
  color: var(--pink-hot);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.btn-full {
  width: 100%;
}

/* ==========================================================================
   HEADER & NAVBAR
   ========================================================================== */
.site-header {
  position: sticky;
  top: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(255, 42, 133, 0.15);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
  transition: all var(--transition-normal);
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 86px;
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
}

.logo-image-wrapper {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: #ffffff;
  border: 2px solid var(--pink-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  box-shadow: 0 0 16px var(--pink-glow);
  transition: transform var(--transition-bounce);
}

.brand-logo:hover .logo-image-wrapper {
  transform: scale(1.08) rotate(-4deg);
}

.nav-mascot {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.brand-text {
  display: flex;
  flex-direction: column;
}

.brand-title {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--black);
  letter-spacing: -0.5px;
  line-height: 1.1;
}

.brand-sub {
  font-size: 0.76rem;
  text-transform: uppercase;
  letter-spacing: 1.8px;
  color: var(--pink-hot);
  font-weight: 700;
  font-family: var(--font-heading);
}

/* Nav Menu */
.nav-list {
  display: flex;
  align-items: center;
  gap: 8px;
  list-style: none;
}

.nav-link {
  color: var(--text-main);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.05rem;
  text-decoration: none;
  padding: 10px 18px;
  border-radius: var(--radius-full);
  transition: all var(--transition-fast);
}

.nav-link:hover,
.nav-link.active {
  color: var(--pink-hot);
  background: var(--bg-surface-hover);
  box-shadow: var(--shadow-sm);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

.cart-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #ffffff;
  border: 1px solid var(--border-pink);
  color: var(--black);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.02rem;
  padding: 10px 20px;
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: all var(--transition-normal);
  box-shadow: var(--shadow-sm);
}

.cart-btn:hover {
  background: var(--pink-primary);
  border-color: var(--pink-primary);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-pink);
}

.cart-btn:hover .cart-count-badge {
  background: var(--black);
  color: var(--white);
}

.cart-count-badge {
  background: var(--pink-hot);
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 800;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--white);
}

.mobile-toggle-btn {
  display: none;
  background: var(--white);
  border: 1px solid var(--border-pink);
  color: var(--black);
  font-size: 1.3rem;
  width: 44px;
  height: 44px;
  border-radius: var(--radius-md);
  cursor: pointer;
  box-shadow: var(--shadow-sm);
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */
.hero-section {
  padding: 70px 0 95px;
  position: relative;
  overflow: hidden;
}

.hero-container {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 50px;
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 22px;
  background: #ffffff;
  border: 1px solid var(--border-pink);
  border-radius: var(--radius-full);
  margin-bottom: 24px;
  box-shadow: var(--shadow-sm);
}

.badge-dot {
  width: 10px;
  height: 10px;
  background-color: var(--pink-primary);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--pink-primary);
  animation: pulseDot 2s infinite ease-in-out;
}

@keyframes pulseDot {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.5); opacity: 0.6; }
}

.badge-text {
  font-family: var(--font-heading);
  font-size: 0.98rem;
  font-weight: 700;
  color: var(--pink-hot);
}

.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2.6rem, 5vw, 4rem);
  font-weight: 800;
  color: var(--black);
  line-height: 1.15;
  margin-bottom: 22px;
  letter-spacing: -0.5px;
}

.hero-description {
  font-size: 1.2rem;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 38px;
  max-width: 590px;
}

.hero-description strong {
  color: var(--black);
  font-weight: 700;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 45px;
  flex-wrap: wrap;
}

.hero-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  padding-top: 30px;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 12px;
}

.feature-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #ffffff;
  border: 1px solid var(--border-pink);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  flex-shrink: 0;
  box-shadow: var(--shadow-sm);
}

.feature-text {
  display: flex;
  flex-direction: column;
}

.feature-text strong {
  font-family: var(--font-heading);
  font-size: 1rem;
  color: var(--black);
}

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

/* Hero Visual & Floating Badges */
.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
}

.hero-image-card {
  position: relative;
  width: 100%;
  max-width: 450px;
  border-radius: var(--radius-xl);
  padding: 14px;
  background: #ffffff;
  border: 2px solid rgba(255, 42, 133, 0.25);
  box-shadow: var(--shadow-lg), 0 0 45px rgba(255, 42, 133, 0.15);
  animation: floatHero 6s ease-in-out infinite;
}

@keyframes floatHero {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

.hero-main-img {
  width: 100%;
  height: auto;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: var(--radius-lg);
  display: block;
}

.floating-badge {
  position: absolute;
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid var(--border-pink);
  backdrop-filter: blur(14px);
  padding: 12px 20px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 2;
}

.badge-top-right {
  top: -18px;
  right: -20px;
  animation: floatSlow 5s ease-in-out infinite alternate;
}

.badge-bottom-left {
  bottom: -20px;
  left: -20px;
  flex-direction: column;
  align-items: flex-start;
  gap: 6px;
  animation: floatSlow 5s ease-in-out infinite alternate-reverse;
}

@keyframes floatSlow {
  0% { transform: translate(0, 0); }
  100% { transform: translate(6px, -6px); }
}

.mini-bunny-icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--bg-surface-hover);
  object-fit: cover;
}

.badge-label {
  display: block;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--pink-hot);
  font-weight: 700;
  font-family: var(--font-heading);
}

.badge-val {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  color: var(--black);
}

.stars-row {
  color: #ff9900;
  font-size: 0.95rem;
  display: flex;
  gap: 3px;
}

.rating-text {
  font-size: 0.85rem;
  color: var(--text-muted);
  font-weight: 600;
}

/* ==========================================================================
   HIGHLIGHTS SECTION
   ========================================================================== */
.highlights-section {
  padding: 85px 0;
  background: linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.7), transparent);
}

.highlights-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}

.highlight-card {
  background: #ffffff;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 38px 28px;
  transition: all var(--transition-normal);
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.highlight-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: transparent;
  transition: background var(--transition-fast);
}

.highlight-card:hover {
  transform: translateY(-8px);
  border-color: var(--pink-primary);
  box-shadow: var(--shadow-md), 0 0 30px rgba(255, 42, 133, 0.12);
}

.highlight-card:hover::before,
.highlight-card.highlighted::before {
  background: linear-gradient(90deg, var(--pink-primary), var(--pink-light));
}

.highlight-card.highlighted {
  border-color: var(--border-pink);
  background: #ffffff;
}

.highlight-icon-box {
  width: 60px;
  height: 60px;
  border-radius: var(--radius-md);
  background: var(--bg-surface-hover);
  border: 1px solid var(--border-pink);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  color: var(--pink-hot);
  margin-bottom: 22px;
  transition: transform var(--transition-bounce);
}

.highlight-card:hover .highlight-icon-box {
  transform: scale(1.1) rotate(5deg);
  background: var(--pink-primary);
  color: var(--white);
  box-shadow: var(--shadow-pink);
}

.highlight-card h3 {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--black);
  margin-bottom: 12px;
}

.highlight-card p {
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.65;
}

/* ==========================================================================
   MENU SECTION & FILTERS
   ========================================================================== */
.menu-section {
  padding: 95px 0;
}

.menu-filters {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 50px;
}

.filter-btn {
  background: #ffffff;
  border: 1px solid var(--border-pink);
  color: var(--text-main);
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  padding: 12px 26px;
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: all var(--transition-fast);
  box-shadow: var(--shadow-sm);
}

.filter-btn:hover {
  color: var(--pink-hot);
  background: var(--bg-surface-hover);
  border-color: var(--pink-primary);
}

.filter-btn.active {
  background: linear-gradient(135deg, var(--pink-primary), var(--pink-hot));
  color: var(--white);
  border-color: var(--pink-hot);
  box-shadow: var(--shadow-pink);
  transform: scale(1.04);
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 32px;
}

/* Menu Item Card */
.menu-card {
  background: #ffffff;
  border: 1px solid rgba(255, 42, 133, 0.2);
  border-radius: var(--radius-xl);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: all var(--transition-normal);
  position: relative;
  box-shadow: var(--shadow-sm);
}

.menu-card:hover {
  transform: translateY(-8px);
  border-color: var(--pink-primary);
  box-shadow: var(--shadow-lg), 0 0 35px rgba(255, 42, 133, 0.18);
}

.menu-card-img-wrapper {
  position: relative;
  width: 100%;
  height: 250px;
  overflow: hidden;
  background: #fdf0f5;
}

.menu-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.card-tag {
  position: absolute;
  top: 16px;
  right: 16px;
  padding: 6px 14px;
  border-radius: var(--radius-full);
  font-family: var(--font-heading);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.5px;
  z-index: 2;
  box-shadow: var(--shadow-sm);
}

.tag-hot {
  background: linear-gradient(135deg, #ff0055, #ff5500);
  color: var(--white);
}

.tag-new {
  background: linear-gradient(135deg, var(--pink-primary), #d9006c);
  color: var(--white);
}

.tag-badge {
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid var(--border-pink);
  color: var(--pink-hot);
}

.menu-card-body {
  padding: 28px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.menu-card-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 12px;
}

.item-name {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--black);
  line-height: 1.25;
}

.item-price {
  font-family: var(--font-heading);
  font-size: 1.55rem;
  font-weight: 800;
  color: var(--pink-hot);
  white-space: nowrap;
}

.item-price small {
  font-size: 0.78rem;
  color: var(--text-muted);
  font-weight: 600;
}

.item-description {
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.65;
  margin-bottom: 20px;
  flex-grow: 1;
}

.item-meta {
  margin-bottom: 22px;
}

.meta-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.88rem;
  color: var(--pink-hot);
  background: var(--bg-surface-hover);
  padding: 6px 14px;
  border-radius: var(--radius-sm);
  font-family: var(--font-heading);
  font-weight: 700;
}

.btn-card {
  width: 100%;
  background: var(--white);
  border: 1.5px solid var(--pink-primary);
  color: var(--black);
  padding: 12px 20px;
  font-size: 1.05rem;
}

.btn-card:hover {
  background: linear-gradient(135deg, var(--pink-primary), var(--pink-hot));
  border-color: var(--pink-hot);
  color: var(--white);
  box-shadow: var(--shadow-pink);
  transform: translateY(-2px);
}

/* ==========================================================================
   ABOUT SECTION
   ========================================================================== */
.about-section {
  padding: 100px 0;
  position: relative;
  background: linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.8), transparent);
}

.about-container {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 60px;
  align-items: center;
}

.about-visual {
  display: flex;
  justify-content: center;
}

.about-card-frame {
  position: relative;
  width: 100%;
  max-width: 430px;
  background: #ffffff;
  border: 2px solid rgba(255, 42, 133, 0.25);
  border-radius: var(--radius-xl);
  padding: 20px;
  box-shadow: var(--shadow-lg), 0 0 45px rgba(255, 42, 133, 0.15);
}

.about-sticker-img {
  width: 100%;
  height: auto;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: var(--radius-lg);
  display: block;
}

.about-badge-overlay {
  position: absolute;
  bottom: -15px;
  right: -15px;
  background: #ffffff;
  border: 1px solid var(--border-pink);
  backdrop-filter: blur(14px);
  padding: 10px 20px;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--black);
  box-shadow: var(--shadow-md);
}

.about-paragraph {
  color: var(--text-muted);
  font-size: 1.15rem;
  line-height: 1.85;
  margin-bottom: 20px;
}

.about-paragraph strong {
  color: var(--black);
  font-weight: 700;
}

.about-paragraph em {
  color: var(--pink-hot);
  font-style: italic;
  font-weight: 700;
}

.about-stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 36px;
  padding-top: 30px;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.about-stat-item {
  display: flex;
  flex-direction: column;
}

.stat-number {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 6px;
}

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

/* ==========================================================================
   TESTIMONIALS SECTION
   ========================================================================== */
.testimonials-section {
  padding: 85px 0;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 28px;
}

.testimonial-card {
  background: #ffffff;
  border: 1px solid rgba(255, 42, 133, 0.18);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  display: flex;
  flex-direction: column;
  transition: all var(--transition-normal);
  box-shadow: var(--shadow-sm);
}

.testimonial-card:hover {
  transform: translateY(-6px);
  border-color: var(--pink-primary);
  box-shadow: var(--shadow-md), 0 0 25px rgba(255, 42, 133, 0.12);
}

.testimonial-card.highlighted {
  border-color: var(--pink-primary);
  background: #ffffff;
}

.testimonial-stars {
  color: #ff9900;
  font-size: 1.1rem;
  margin-bottom: 18px;
  display: flex;
  gap: 4px;
}

.testimonial-text {
  color: var(--text-main);
  font-size: 1.05rem;
  line-height: 1.75;
  font-style: italic;
  margin-bottom: 24px;
  flex-grow: 1;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
}

.author-avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--bg-surface-hover);
  border: 1px solid var(--border-pink);
  color: var(--pink-hot);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
}

.author-name {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--black);
}

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

/* ==========================================================================
   CONTACT & ORDER BUILDER SECTION
   ========================================================================== */
.contact-section {
  padding: 95px 0;
  position: relative;
}

.contact-wrapper {
  display: grid;
  grid-template-columns: 1.25fr 0.85fr;
  gap: 40px;
  align-items: flex-start;
}

.order-form-box {
  background: #ffffff;
  border: 2px solid rgba(255, 42, 133, 0.25);
  border-radius: var(--radius-xl);
  padding: 42px;
  box-shadow: var(--shadow-lg), 0 0 40px rgba(255, 42, 133, 0.12);
}

.form-header {
  margin-bottom: 30px;
}

.form-header h3 {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--black);
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.form-header p {
  color: var(--text-muted);
  font-size: 1.05rem;
}

.order-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group label {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  color: var(--black);
  display: flex;
  align-items: center;
  gap: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: #faf8f9;
  border: 1px solid rgba(0, 0, 0, 0.12);
  border-radius: var(--radius-md);
  padding: 14px 18px;
  color: var(--black);
  font-family: var(--font-body);
  font-size: 1.05rem;
  outline: none;
  transition: all var(--transition-fast);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--pink-primary);
  box-shadow: 0 0 14px var(--pink-glow);
  background: #ffffff;
}

.form-group select option {
  background: #ffffff;
  color: var(--black);
}

/* Live Cart Summary Inside Form */
.form-cart-summary {
  background: #fff8fb;
  border: 1.5px dashed var(--pink-primary);
  border-radius: var(--radius-md);
  padding: 20px;
  margin: 10px 0;
}

.summary-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 14px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--black);
}

.summary-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  max-height: 160px;
  overflow-y: auto;
  padding-right: 4px;
}

.summary-item-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.98rem;
  color: var(--text-muted);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  padding-bottom: 6px;
}

.summary-item-row strong {
  color: var(--black);
  font-weight: 700;
}

.empty-cart-text {
  font-size: 0.95rem;
  color: var(--text-muted);
  font-style: italic;
  text-align: center;
  padding: 10px 0;
}

.summary-total-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 14px;
  padding-top: 12px;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 800;
}

.total-price {
  color: var(--pink-hot);
  font-size: 1.45rem;
}

.btn-whatsapp-submit {
  background: linear-gradient(135deg, #25D366, #128C7E);
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 800;
  padding: 16px 28px;
  border-radius: var(--radius-full);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.35);
  transition: all var(--transition-normal);
}

.btn-whatsapp-submit:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 12px 35px rgba(37, 211, 102, 0.55);
  background: linear-gradient(135deg, #2ae772, #18a090);
}

/* Contact Info Card */
.contact-info-card {
  background: #ffffff;
  border: 1px solid rgba(255, 42, 133, 0.2);
  border-radius: var(--radius-xl);
  padding: 38px;
  display: flex;
  flex-direction: column;
  gap: 28px;
  box-shadow: var(--shadow-sm);
}

.info-bunny-banner {
  text-align: center;
  padding: 26px;
  background: linear-gradient(145deg, var(--bg-surface-hover), #ffffff);
  border: 1px solid var(--border-pink);
  border-radius: var(--radius-lg);
}

.info-bunny-img {
  width: 95px;
  height: 95px;
  object-fit: cover;
  margin: 0 auto 14px;
  display: block;
  animation: floatSlow 4s ease-in-out infinite alternate;
}

.info-bunny-banner h4 {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  color: var(--black);
  margin-bottom: 6px;
  font-weight: 800;
}

.info-bunny-banner p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

.info-details-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.info-detail-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.info-icon {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--bg-surface-hover);
  border: 1px solid var(--border-pink);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
  color: var(--pink-hot);
}

.info-detail-item strong {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  color: var(--black);
  display: block;
  margin-bottom: 3px;
  font-weight: 700;
}

.info-detail-item p {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.55;
}

.social-channels {
  padding-top: 20px;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.social-title {
  display: block;
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 14px;
}

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

.social-link {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: #ffffff;
  border: 1px solid var(--border-pink);
  color: var(--black);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  text-decoration: none;
  transition: all var(--transition-fast);
  box-shadow: var(--shadow-sm);
}

.social-link:hover {
  background: var(--pink-primary);
  border-color: var(--pink-primary);
  color: var(--white);
  transform: translateY(-4px);
  box-shadow: var(--shadow-pink);
}

/* ==========================================================================
   CART DRAWER & BACKDROP
   ========================================================================== */
.cart-drawer-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(5px);
  z-index: 1998;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-normal);
}

.cart-drawer-backdrop.active {
  opacity: 1;
  visibility: visible;
}

.cart-drawer {
  position: fixed;
  top: 0;
  right: -480px;
  width: 100%;
  max-width: 450px;
  height: 100vh;
  background: #ffffff;
  border-left: 2px solid var(--border-pink);
  z-index: 1999;
  display: flex;
  flex-direction: column;
  transition: right var(--transition-bounce);
  box-shadow: -10px 0 40px rgba(0, 0, 0, 0.15);
}

.cart-drawer.active {
  right: 0;
}

.drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.drawer-title {
  display: flex;
  align-items: center;
  gap: 12px;
}

.drawer-title h3 {
  font-family: var(--font-heading);
  font-size: 1.45rem;
  font-weight: 800;
  color: var(--black);
}

.drawer-close-btn {
  background: transparent;
  border: none;
  color: var(--text-muted);
  font-size: 1.5rem;
  cursor: pointer;
  padding: 6px;
  transition: color var(--transition-fast);
}

.drawer-close-btn:hover {
  color: var(--pink-primary);
}

.drawer-body {
  padding: 24px;
  overflow-y: auto;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.drawer-item {
  display: flex;
  align-items: center;
  gap: 14px;
  background: #faf8f9;
  border: 1px solid rgba(255, 42, 133, 0.2);
  border-radius: var(--radius-md);
  padding: 12px;
}

.drawer-item-img {
  width: 65px;
  height: 65px;
  border-radius: var(--radius-sm);
  object-fit: cover;
}

.drawer-item-info {
  flex-grow: 1;
}

.drawer-item-name {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 4px;
}

.drawer-item-price {
  font-size: 0.95rem;
  color: var(--pink-hot);
  font-weight: 700;
}

.drawer-item-qty {
  display: flex;
  align-items: center;
  gap: 8px;
}

.qty-btn {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1px solid var(--border-pink);
  background: #ffffff;
  color: var(--black);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  transition: all var(--transition-fast);
}

.qty-btn:hover {
  background: var(--pink-primary);
  border-color: var(--pink-primary);
  color: var(--white);
}

.qty-number {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1rem;
}

.drawer-footer {
  padding: 24px;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  background: #faf8f9;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.drawer-subtotal {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--black);
  margin-bottom: 6px;
}

.drawer-subtotal strong {
  color: var(--pink-hot);
  font-size: 1.55rem;
}

/* ==========================================================================
   TOAST NOTIFICATION
   ========================================================================== */
.toast-notification {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background: #ffffff;
  border: 2px solid var(--pink-primary);
  color: var(--black);
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  padding: 14px 26px;
  border-radius: var(--radius-full);
  box-shadow: var(--shadow-lg), 0 0 25px var(--pink-glow);
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 2100;
  transform: translateY(100px);
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-bounce);
}

.toast-notification.show {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.site-footer {
  background: #ffffff;
  border-top: 1px solid rgba(255, 42, 133, 0.2);
  padding: 75px 0 0;
  position: relative;
  z-index: 1;
}

.footer-container {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 50px;
  padding-bottom: 50px;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-bunny-img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 2px solid var(--pink-primary);
  object-fit: cover;
}

.footer-brand-name {
  font-family: var(--font-heading);
  font-size: 1.55rem;
  font-weight: 800;
  color: var(--black);
}

.footer-slogan {
  color: var(--text-muted);
  font-size: 1.05rem;
  line-height: 1.75;
  max-width: 380px;
  font-style: italic;
}

.footer-links h4,
.footer-contact h4 {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--black);
  margin-bottom: 18px;
}

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

.footer-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 1rem;
  font-family: var(--font-heading);
  font-weight: 600;
  transition: all var(--transition-fast);
}

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

.footer-contact p {
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.65;
  margin-bottom: 8px;
}

.footer-badge {
  display: inline-block;
  margin-top: 14px;
  background: var(--bg-surface-hover);
  border: 1px solid var(--border-pink);
  color: var(--pink-hot);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.92rem;
  padding: 8px 16px;
  border-radius: var(--radius-full);
}

.footer-bottom {
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  padding: 24px 0;
  background: #faf8f9;
}

.footer-bottom-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
  font-size: 0.95rem;
  color: var(--text-muted);
}

/* ==========================================================================
   RESPONSIVE DESIGN (TABLETS & MOBILES)
   ========================================================================== */
@media (max-width: 992px) {
  .hero-container {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 40px;
  }

  .hero-badge {
    margin: 0 auto 24px;
  }

  .hero-description {
    margin: 0 auto 36px;
  }

  .hero-actions {
    justify-content: center;
  }

  .hero-features {
    grid-template-columns: 1fr;
    max-width: 320px;
    margin: 0 auto;
    text-align: left;
  }

  .about-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .about-visual {
    order: -1;
  }

  .about-stats-grid {
    justify-content: center;
  }

  .contact-wrapper {
    grid-template-columns: 1fr;
  }

  .footer-container {
    grid-template-columns: 1fr;
    gap: 36px;
  }
}

@media (max-width: 768px) {
  .nav-menu {
    position: fixed;
    top: 86px;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    border-bottom: 2px solid var(--pink-primary);
    padding: 24px;
    transform: translateY(-150%);
    transition: transform var(--transition-bounce);
    box-shadow: var(--shadow-lg);
  }

  .nav-menu.mobile-active {
    transform: translateY(0);
  }

  .nav-list {
    flex-direction: column;
    width: 100%;
    gap: 12px;
  }

  .nav-link {
    display: block;
    width: 100%;
    text-align: center;
    font-size: 1.15rem;
    padding: 12px;
  }

  .mobile-toggle-btn {
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .cart-btn-text {
    display: none;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .menu-grid {
    grid-template-columns: 1fr;
  }

  .floating-badge {
    padding: 8px 14px;
  }
}
