@import url('https://fonts.googleapis.com/css2?family=Fredoka:wght@500;600;700&family=Quicksand:wght@400;500;600;700&display=swap');

:root {
  --cacao: #4E342E;
  --biscuit: #F7E0C0;
  --terracotta: #D27B5D;
  --olive: #848C53;

  --cream: #FFF8EC;
  --soft-cream: #FBF1DF;
  --white: #FFFFFF;

  --gold: #FFE07B;
  --warm-gold: #F4C64E;
  --red: #D6402F;
  --package-dark: #5A2708;

  --shadow-soft: 0 18px 40px rgba(78, 52, 46, 0.14);
  --shadow-card: 0 24px 50px rgba(45, 24, 5, 0.24);

  --radius-lg: 30px;
  --radius-md: 22px;
  --radius-sm: 14px;

  --heading-font: 'Fredoka', system-ui, sans-serif;
  --body-font: 'Quicksand', system-ui, sans-serif;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
}

body {
  font-family: var(--body-font);
  color: var(--cacao);
  background:
    radial-gradient(circle at top left, rgba(210, 123, 93, 0.13), transparent 28%),
    radial-gradient(circle at bottom right, rgba(132, 140, 83, 0.13), transparent 28%),
    var(--cream);
  line-height: 1.6;
}

body.modal-open {
  overflow: hidden;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input {
  font: inherit;
}

button {
  border: 0;
  cursor: pointer;
}

ul {
  list-style: none;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}

.section {
  padding: 88px 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 248, 236, 0.94);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(78, 52, 46, 0.12);
}

.header-wrapper {
  min-height: 90px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.logo-img {
  width: 175px;
  height: auto;
  object-fit: contain;
}

.main-nav {
  display: none;
  align-items: center;
  gap: 32px;
  font-weight: 800;
}

.main-nav a {
  position: relative;
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 0;
  height: 3px;
  border-radius: 999px;
  background: var(--terracotta);
  transition: width 0.25s ease;
}

.main-nav a:hover::after,
.main-nav a.active::after {
  width: 100%;
}

.nav-toggle {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--biscuit);
  display: grid;
  place-content: center;
  gap: 5px;
  box-shadow: 0 8px 18px rgba(78, 52, 46, 0.1);
}

.nav-toggle span {
  width: 21px;
  height: 2px;
  background: var(--cacao);
  border-radius: 999px;
}

.main-nav.open {
  position: absolute;
  top: 100px;
  left: 40px;
  right: 40px;
  display: grid;
  gap: 18px;
  padding: 24px;
  border-radius: var(--radius-md);
  background: var(--biscuit);
  box-shadow: var(--shadow-soft);
  text-align: center;
}

.eyebrow {
  margin-bottom: 14px;
  color: var(--terracotta);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

h1,
h2,
h3,
h4 {
  font-family: var(--heading-font);
  color: var(--cacao);
  line-height: 1.05;
}

h1 {
  max-width: 780px;
  font-size: clamp(3rem, 8vw, 6.2rem);
}

h2 {
  font-size: clamp(2.2rem, 5vw, 4rem);
}

.section-heading {
  max-width: 760px;
  margin: 0 auto 48px;
  text-align: center;
}

.section-heading p:last-child {
  margin-top: 14px;
  font-weight: 600;
}

.light-heading h2,
.light-heading p {
  color: var(--cream);
}

.light-heading .eyebrow {
  color: var(--gold);
}

.btn,
.package-btn,
.inquire-btn,
.qty-btn,
.quote-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  font-weight: 900;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    background 0.25s ease,
    color 0.25s ease;
}

.btn {
  min-height: 52px;
  padding: 0 26px;
}

.btn:hover,
.package-btn:hover,
.inquire-btn:hover {
  transform: translateY(-3px);
}

.primary-btn {
  background: var(--terracotta);
  color: var(--white);
  box-shadow: 0 12px 24px rgba(210, 123, 93, 0.32);
}

.ghost-btn {
  border: 2px solid var(--cacao);
  color: var(--cacao);
  background: rgba(255, 248, 236, 0.56);
}

.hero {
  min-height: calc(100vh - 90px);
  display: grid;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero::before,
.hero::after {
  content: "✦";
  position: absolute;
  color: rgba(132, 140, 83, 0.22);
  font-size: 6rem;
  pointer-events: none;
}

.hero::before {
  top: 90px;
  left: 4%;
}

.hero::after {
  right: 5%;
  bottom: 80px;
}

.hero-grid {
  display: grid;
  align-items: center;
  gap: 56px;
}

.hero-text {
  max-width: 620px;
  margin: 24px 0 34px;
  font-size: 1.13rem;
  font-weight: 600;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.hero-image-card {
  min-height: 390px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 28px;
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at center, rgba(247, 224, 192, 0.95), rgba(255, 248, 236, 0.92));
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}

.hero-img {
  width: 100%;
  max-width: 500px;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 24px 28px rgba(78, 52, 46, 0.25));
}

.packages-section {
  position: relative;
  overflow: hidden;
  color: var(--cream);
  background:
    radial-gradient(circle at top left, rgba(255, 224, 123, 0.14), transparent 24%),
    linear-gradient(180deg, #8A5200, #6F3F00);
}

.packages-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.08), transparent 20%),
    radial-gradient(circle at 80% 70%, rgba(78, 52, 46, 0.22), transparent 28%);
  pointer-events: none;
}

.packages-section .container {
  position: relative;
  z-index: 1;
}

.packages-grid,
.menu-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
}

.package-card {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 22px;
  padding: 28px;
  border-radius: var(--radius-lg);
  background:
    linear-gradient(145deg, rgba(124, 70, 0, 0.98), rgba(86, 42, 8, 0.98));
  border: 1px solid rgba(255, 224, 123, 0.26);
  box-shadow: var(--shadow-card);
}

.package-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 12% 20%, rgba(255, 224, 123, 0.16), transparent 26%),
    radial-gradient(circle at 90% 10%, rgba(255, 248, 236, 0.08), transparent 24%);
  pointer-events: none;
}

.package-card > * {
  position: relative;
  z-index: 1;
}

.package-top {
  display: grid;
  gap: 18px;
  align-items: start;
}

.package-label {
  color: var(--gold);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.package-card h3 {
  color: var(--white);
  font-size: clamp(2rem, 5vw, 2.9rem);
  text-shadow: 0 4px 0 rgba(0, 0, 0, 0.16);
}

.pax {
  margin-top: 6px;
  color: var(--biscuit);
  font-size: 1.05rem;
  font-weight: 900;
}

.price-tag {
  justify-self: start;
  min-width: 210px;
  padding: 14px 20px 14px 34px;
  background: linear-gradient(90deg, #F7C648, #FFF1A8, #D5A02C);
  clip-path: polygon(14% 0, 100% 0, 92% 50%, 100% 100%, 14% 100%, 0 50%);
  filter: drop-shadow(0 12px 16px rgba(35, 18, 0, 0.28));
}

.price-tag span {
  display: block;
  color: var(--package-dark);
  font-size: 0.75rem;
  font-weight: 900;
  text-transform: uppercase;
}

.price-tag strong {
  display: block;
  color: var(--red);
  font-family: var(--heading-font);
  font-size: clamp(2rem, 5vw, 3rem);
  line-height: 1;
}

.package-image-grid {
  display: grid;
  gap: 14px;
  width: 100%;
  padding: 18px;
  border-radius: 24px;
  background:
    radial-gradient(circle at center, rgba(255, 224, 123, 0.14), transparent 65%),
    rgba(90, 39, 8, 0.38);
  border: 1px solid rgba(255, 224, 123, 0.18);
  overflow: hidden;
}

.three-images {
  grid-template-columns: repeat(3, 1fr);
}

.two-images {
  grid-template-columns: repeat(2, 1fr);
}

.package-food-img {
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  object-fit: cover;
  border: 6px solid #C99A5C;
  background: var(--biscuit);
  box-shadow:
    0 14px 22px rgba(31, 15, 0, 0.28),
    inset 0 -8px 0 rgba(78, 52, 46, 0.12);
}

.package-details {
  padding: 22px;
  border-radius: 20px;
  background: rgba(90, 39, 8, 0.76);
  border-left: 5px solid var(--gold);
}

.package-details h4 {
  margin-bottom: 12px;
  color: var(--white);
  font-size: 1.35rem;
}

.package-details li {
  display: flex;
  gap: 8px;
  margin: 9px 0;
  color: var(--cream);
  font-weight: 700;
}

.package-details li::before {
  content: "✓";
  color: var(--gold);
  font-weight: 900;
}

.promo-chip {
  display: inline-flex;
  width: fit-content;
  margin-top: 16px;
  padding: 9px 14px;
  border-radius: 999px;
  background: rgba(255, 224, 123, 0.16);
  color: var(--gold);
  font-size: 0.92rem;
  font-weight: 900;
  border: 1px solid rgba(255, 224, 123, 0.22);
}

.package-btn {
  width: 100%;
  min-height: 52px;
  padding: 0 22px;
  background: var(--gold);
  color: var(--package-dark);
  box-shadow: 0 12px 20px rgba(31, 15, 0, 0.22);
}

.standard-addons {
  margin-top: 36px;
  padding: 30px;
  border-radius: var(--radius-lg);
  background: rgba(90, 39, 8, 0.72);
  border: 1px solid rgba(255, 224, 123, 0.25);
  display: grid;
  gap: 20px;
}

.standard-addons h3 {
  color: var(--white);
  font-size: 2rem;
}

.addons-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.addon-btn {
  padding: 10px 16px;
  border-radius: 999px;
  background: var(--cream);
  color: var(--package-dark);
  font-weight: 900;
  border: 0;
}

.addon-btn strong {
  color: var(--red);
}

.menu-section {
  background:
    radial-gradient(circle at top left, rgba(210, 123, 93, 0.12), transparent 28%),
    radial-gradient(circle at bottom right, rgba(132, 140, 83, 0.12), transparent 28%),
    var(--cream);
}

.menu-category {
  margin-top: 58px;
}

.menu-category-heading {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 30px;
}

.menu-category-heading span {
  flex: 1;
  height: 2px;
  background: rgba(78, 52, 46, 0.14);
}

.menu-category-heading h2 {
  font-size: clamp(1.8rem, 4vw, 3rem);
  text-align: center;
  white-space: nowrap;
}

.menu-card {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  padding: 30px 22px 22px;
  border-radius: 26px;
  background:
    linear-gradient(180deg, rgba(255, 248, 236, 0.96), rgba(247, 224, 192, 0.78));
  border: 1px solid rgba(78, 52, 46, 0.12);
  box-shadow: 0 14px 32px rgba(78, 52, 46, 0.1);
  text-align: center;
}

.bowl-icon {
  width: 132px;
  height: 132px;
  margin: 0 auto 18px;
  border-radius: 50%;
  overflow: hidden;
  background: var(--biscuit);
  border: 6px solid rgba(255, 248, 236, 0.95);
  box-shadow: 0 14px 26px rgba(78, 52, 46, 0.16);
}

.bowl-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.menu-badge {
  position: absolute;
  top: 18px;
  left: 18px;
  padding: 7px 12px;
  border-radius: 999px;
  color: var(--white);
  font-size: 0.76rem;
  font-weight: 900;
}

.badge-terracotta {
  background: var(--terracotta);
}

.badge-olive {
  background: var(--olive);
}

.menu-card h3 {
  margin-bottom: 10px;
  font-size: 1.45rem;
}

.menu-card p {
  min-height: 52px;
  margin-bottom: 18px;
  color: rgba(78, 52, 46, 0.78);
  font-size: 0.96rem;
  font-weight: 600;
}

.menu-card strong {
  display: block;
  margin-top: auto;
  margin-bottom: 16px;
  font-size: 1.45rem;
}

.inquire-btn {
  width: 100%;
  min-height: 48px;
  border: 2px solid rgba(78, 52, 46, 0.2);
  background: rgba(255, 248, 236, 0.72);
  color: var(--cacao);
}

.inquire-btn:hover {
  background: var(--olive);
  color: var(--white);
}

.contact-section {
  background:
    linear-gradient(rgba(78, 52, 46, 0.92), rgba(78, 52, 46, 0.92)),
    repeating-linear-gradient(
      90deg,
      rgba(255, 248, 236, 0.08) 0,
      rgba(255, 248, 236, 0.08) 2px,
      transparent 2px,
      transparent 12px
    );
}

.contact-card {
  display: grid;
  gap: 30px;
  padding: 38px;
  border-radius: var(--radius-lg);
  background: var(--cream);
  box-shadow: 0 26px 50px rgba(31, 15, 0, 0.22);
}

.contact-info {
  padding: 26px;
  border-radius: 24px;
  background: var(--biscuit);
}

.contact-info p {
  margin-bottom: 12px;
  font-weight: 700;
}

.contact-info a {
  font-weight: 900;
}

.contact-btn {
  width: 100%;
  margin-top: 14px;
}

.quote-drawer {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 250;
  width: min(420px, calc(100% - 48px));
}

.quote-toggle {
  width: 100%;
  min-height: 58px;
  justify-content: space-between;
  padding: 0 20px;
  background: var(--terracotta);
  color: var(--white);
  box-shadow: 0 16px 38px rgba(78, 52, 46, 0.32);
}

.quote-panel {
  display: none;
  margin-top: 12px;
  padding: 22px;
  border-radius: 26px;
  background: var(--cream);
  box-shadow: 0 22px 60px rgba(31, 15, 0, 0.28);
  border: 1px solid rgba(78, 52, 46, 0.12);
  max-height: 74vh;
  overflow: auto;
}

.quote-panel.open {
  display: block;
}

.quote-panel-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 16px;
}

.icon-btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--biscuit);
  color: var(--cacao);
  font-size: 1.5rem;
  font-weight: 900;
}

.cart-items {
  display: grid;
  gap: 12px;
}

.empty-cart,
.loading-message {
  font-weight: 700;
  opacity: 0.78;
}

.cart-item {
  display: grid;
  gap: 8px;
  padding: 14px;
  border-radius: 18px;
  background: var(--soft-cream);
  border: 1px solid rgba(78, 52, 46, 0.1);
}

.cart-item-top {
  display: flex;
  justify-content: space-between;
  gap: 12px;
}

.cart-item-type {
  font-size: 0.74rem;
  font-weight: 900;
  color: var(--terracotta);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.cart-item-title {
  font-weight: 900;
}

.cart-controls {
  display: flex;
  align-items: center;
  gap: 8px;
}

.qty-btn {
  width: 32px;
  height: 32px;
  background: var(--biscuit);
  color: var(--cacao);
}

.remove-btn {
  background: transparent;
  color: var(--red);
  font-weight: 900;
}

.validation-message {
  margin-top: 14px;
  padding: 12px;
  border-radius: 14px;
  background: rgba(214, 64, 47, 0.12);
  color: #8A2116;
  font-weight: 800;
}

.quote-total-row {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding-top: 18px;
  margin-top: 18px;
  border-top: 2px dashed rgba(78, 52, 46, 0.18);
  font-weight: 900;
}

.quote-total-row strong {
  color: var(--red);
  font-size: 1.4rem;
}

.submit-quote-btn {
  width: 100%;
  margin-top: 18px;
}

.quote-note {
  margin-top: 12px;
  font-size: 0.88rem;
  font-weight: 700;
  opacity: 0.72;
}

/* Modal hidden by default */
.modal-backdrop {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: none;
  place-items: center;
  padding: 22px;
  background: rgba(31, 15, 0, 0.58);
}

/* Extra safety: force hidden attribute to hide */
.modal-backdrop[hidden] {
  display: none !important;
}

/* Modal only shows when JS adds .is-open */
.modal-backdrop.is-open {
  display: grid;
}

.modal-card {
  position: relative;
  z-index: 10000;
  width: min(720px, 100%);
  max-height: 92vh;
  overflow-y: auto;
  border-radius: 30px;
  background: var(--cream);
  padding: 34px;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.3);
}

/* Fix close button clickability */
.modal-close {
  position: absolute;
  top: 18px;
  right: 18px;
  z-index: 10001;
  pointer-events: auto;
}

.icon-btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--biscuit);
  color: var(--cacao);
  font-size: 1.5rem;
  font-weight: 900;
  display: grid;
  place-items: center;
  border: 0;
  cursor: pointer;
}

.icon-btn:hover {
  background: var(--terracotta);
  color: var(--white);
}

/* Optional: prevent page scroll when modal is open */
body.modal-open {
  overflow: hidden;
}

.form-intro,
.form-note {
  margin-top: 12px;
  font-weight: 700;
  opacity: 0.78;
}

.quote-form {
  display: grid;
  gap: 16px;
  margin-top: 24px;
}

.quote-form label {
  display: grid;
  gap: 7px;
  font-weight: 900;
}

.quote-form input {
  width: 100%;
  min-height: 50px;
  border-radius: 14px;
  border: 2px solid rgba(78, 52, 46, 0.16);
  background: var(--white);
  padding: 0 14px;
  color: var(--cacao);
  outline: none;
}

.quote-form input:focus {
  border-color: var(--terracotta);
}

.form-grid {
  display: grid;
  gap: 16px;
}

.form-submit-btn {
  width: 100%;
  margin-top: 8px;
}

.success-screen {
  text-align: center;
  padding: 36px 12px 12px;
}

.success-icon {
  width: 76px;
  height: 76px;
  display: grid;
  place-items: center;
  margin: 0 auto 18px;
  border-radius: 50%;
  background: var(--olive);
  color: var(--white);
  font-size: 2.4rem;
  font-weight: 900;
}

.site-footer {
  padding: 30px 0;
  background: var(--cacao);
  color: var(--cream);
}

.footer-wrapper {
  display: grid;
  gap: 16px;
  text-align: center;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 18px;
}

.footer-links a {
  font-weight: 800;
  opacity: 0.86;
}

@media (min-width: 650px) {
  .menu-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .package-top {
    grid-template-columns: 1fr auto;
  }

  .form-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 768px) {
  .logo-img {
    width: 205px;
  }

  .footer-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    text-align: left;
  }
}

@media (min-width: 850px) {
  .contact-card {
    grid-template-columns: 1.1fr 0.9fr;
    align-items: center;
  }

  .standard-addons {
    grid-template-columns: 0.75fr 1.25fr;
    align-items: center;
  }
}

@media (min-width: 900px) {
  .nav-toggle {
    display: none;
  }

  .main-nav {
    display: flex;
  }

  .hero-grid {
    grid-template-columns: 1.05fr 0.95fr;
  }

  .hero-image-card {
    min-height: 520px;
    padding: 36px;
  }
}

@media (min-width: 1000px) {
  .packages-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .menu-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 700px) {
  .container {
    padding: 0 22px;
  }

  .section {
    padding: 68px 0;
  }

  .header-wrapper {
    min-height: 78px;
  }

  .logo-img {
    width: 145px;
  }

  .main-nav.open {
    top: 86px;
    left: 22px;
    right: 22px;
  }

  h1 {
    font-size: clamp(2.7rem, 15vw, 4.1rem);
  }

  .hero {
    min-height: auto;
  }

  .hero-actions {
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }

  .package-card {
    padding: 22px;
  }

  .package-image-grid {
    padding: 14px;
    gap: 10px;
  }

  .package-food-img {
    border-width: 5px;
  }

  .quote-drawer {
    right: 14px;
    left: 14px;
    bottom: 14px;
    width: auto;
  }

  .modal-card {
    padding: 28px 22px;
  }

  body {
    padding-bottom: 84px;
  }
}
/* =======================================================
   Robust Scrollable Receipt Modal Layout
   Latest override for Submit Quote Request modal
   ======================================================= */

.modal-backdrop {
  align-items: center;
  justify-items: center;
}

.modal-card {
  width: min(1040px, calc(100% - 28px));
  max-height: 90vh;
  overflow-y: auto;
  overscroll-behavior: contain;
}

.quote-form.quote-modal-layout {
  display: grid;
  gap: 24px;
  margin-top: 24px;
}

.modal-form-fields {
  display: grid;
  gap: 16px;
  min-width: 0;
}

.modal-order-summary {
  order: -1;
  display: flex;
  flex-direction: column;
  min-height: 0;
  padding: 18px;
  border-radius: 26px;
  background:
    linear-gradient(180deg, rgba(247, 224, 192, 0.95), rgba(255, 248, 236, 0.98));
  border: 1px solid rgba(78, 52, 46, 0.16);
  box-shadow: 0 16px 34px rgba(78, 52, 46, 0.12);
}

.modal-order-summary-header {
  flex: 0 0 auto;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
  padding-bottom: 14px;
  margin-bottom: 14px;
  border-bottom: 2px dashed rgba(78, 52, 46, 0.2);
}

.modal-order-summary-header h3 {
  font-size: 1.45rem;
  line-height: 1.05;
}

.modal-order-summary-header small {
  display: block;
  margin-top: 5px;
  color: rgba(78, 52, 46, 0.72);
  font-weight: 800;
  line-height: 1.35;
}

.summary-count-pill {
  flex: 0 0 auto;
  padding: 7px 12px;
  border-radius: 999px;
  background: var(--terracotta);
  color: var(--white);
  font-size: 0.82rem;
  font-weight: 900;
  white-space: nowrap;
}

.modal-receipt-items {
  flex: 1 1 auto;
  min-height: 0;
  max-height: 280px;
  overflow-y: auto;
  padding: 14px;
  border-radius: 20px;
  background: rgba(247, 224, 192, 0.58);
  border: 1px solid rgba(78, 52, 46, 0.1);
  scrollbar-width: thin;
  scrollbar-color: rgba(78, 52, 46, 0.35) transparent;
}

.modal-receipt-items::-webkit-scrollbar {
  width: 8px;
}

.modal-receipt-items::-webkit-scrollbar-track {
  background: transparent;
}

.modal-receipt-items::-webkit-scrollbar-thumb {
  background: rgba(78, 52, 46, 0.28);
  border-radius: 999px;
}

.modal-summary-section {
  display: grid;
  gap: 10px;
}

.modal-summary-section + .modal-summary-section {
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px dashed rgba(78, 52, 46, 0.18);
}

.modal-summary-section h4 {
  font-size: 1.02rem;
  color: var(--cacao);
}

.discount-scope-note {
  display: block;
  margin-top: -4px;
  color: rgba(78, 52, 46, 0.72);
  font-size: 0.8rem;
  font-weight: 800;
  line-height: 1.4;
}

.modal-summary-list {
  display: grid;
  gap: 10px;
}

.modal-summary-item {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 14px;
  padding: 12px;
  border-radius: 16px;
  background: rgba(255, 248, 236, 0.86);
  border: 1px solid rgba(78, 52, 46, 0.08);
}

.modal-summary-item strong {
  display: block;
  line-height: 1.25;
}

.modal-summary-item small {
  display: block;
  margin-top: 4px;
  color: rgba(78, 52, 46, 0.72);
  font-size: 0.8rem;
  font-weight: 800;
  line-height: 1.35;
}

.modal-summary-price {
  flex: 0 0 auto;
  color: var(--red);
  font-weight: 900;
  white-space: nowrap;
}

.modal-summary-empty {
  padding: 12px;
  border-radius: 14px;
  background: rgba(255, 248, 236, 0.7);
  color: rgba(78, 52, 46, 0.7);
  font-size: 0.86rem;
  font-weight: 800;
}

.modal-summary-footer {
  flex: 0 0 auto;
  padding-top: 14px;
  margin-top: 14px;
  border-top: 2px dashed rgba(78, 52, 46, 0.2);
  background: linear-gradient(180deg, rgba(255, 248, 236, 0), rgba(255, 248, 236, 0.72));
}

.modal-summary-totals {
  display: grid;
  gap: 8px;
}

.modal-summary-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 14px;
  font-weight: 900;
}

.modal-summary-row small {
  display: block;
  margin-top: 2px;
  font-size: 0.76rem;
  font-weight: 800;
  opacity: 0.78;
  line-height: 1.35;
}

.modal-summary-row.discount {
  padding: 10px 12px;
  border-radius: 14px;
  background: rgba(132, 140, 83, 0.12);
  color: var(--olive);
}

.modal-summary-row.total {
  padding-top: 10px;
  margin-top: 4px;
  border-top: 1px solid rgba(78, 52, 46, 0.14);
  font-size: 1.1rem;
}

.modal-summary-row.total strong {
  color: var(--red);
  font-size: 1.35rem;
}

.modal-summary-submit {
  width: 100%;
  margin-top: 14px;
}

.modal-summary-note {
  margin-top: 10px;
  color: rgba(78, 52, 46, 0.72);
  font-size: 0.82rem;
  font-weight: 800;
  line-height: 1.45;
}

.quote-form textarea {
  width: 100%;
  min-height: 130px;
  border-radius: 14px;
  border: 2px solid rgba(78, 52, 46, 0.16);
  background: var(--white);
  padding: 14px;
  color: var(--cacao);
  outline: none;
  resize: vertical;
  font: inherit;
}

.quote-form textarea:focus {
  border-color: var(--terracotta);
}

.phone-input-wrap {
  display: flex;
  align-items: center;
  min-height: 50px;
  border-radius: 14px;
  border: 2px solid rgba(78, 52, 46, 0.16);
  background: var(--white);
  overflow: hidden;
}

.phone-input-wrap:focus-within {
  border-color: var(--terracotta);
}

.phone-prefix {
  align-self: stretch;
  display: inline-flex;
  align-items: center;
  padding: 0 14px;
  background: var(--biscuit);
  color: var(--cacao);
  font-weight: 900;
  border-right: 1px solid rgba(78, 52, 46, 0.12);
}

.phone-input-wrap input {
  border: 0;
  border-radius: 0;
  min-height: 48px;
}

.phone-input-wrap input:focus {
  border: 0;
}

.field-hint {
  display: block;
  margin-top: 4px;
  color: rgba(78, 52, 46, 0.72);
  font-size: 0.82rem;
  font-weight: 700;
  line-height: 1.4;
}

.truth-check {
  display: flex !important;
  align-items: flex-start;
  gap: 10px !important;
  padding: 12px 14px;
  border-radius: 14px;
  background: rgba(132, 140, 83, 0.1);
  color: var(--cacao);
  font-size: 0.9rem;
  font-weight: 800;
}

.truth-check input {
  width: 18px;
  min-height: 18px;
  margin-top: 3px;
}

.hidden-bot-field {
  display: none;
}

.menu-card.no-description p {
  display: none;
}

.menu-card.no-description h3 {
  margin-bottom: 22px;
}

@media (min-width: 860px) {
  .quote-form.quote-modal-layout {
    grid-template-columns: minmax(0, 1fr) 380px;
    align-items: start;
  }

  .modal-form-fields {
    order: 0;
  }

  .modal-order-summary {
    order: 1;
    position: sticky;
    top: 0;
    max-height: calc(90vh - 150px);
  }

  .modal-receipt-items {
    max-height: 300px;
  }
}

@media (max-width: 859px) {
  .modal-card {
    width: min(100% - 20px, 720px);
    max-height: 90vh;
    padding: 24px 18px;
  }

  .quote-form.quote-modal-layout {
    grid-template-columns: 1fr;
  }

  .modal-order-summary {
    order: -1;
  }

  .modal-form-fields {
    order: 0;
  }

  .modal-receipt-items {
    max-height: 220px;
  }

  .modal-summary-item {
    padding: 10px;
  }

  .modal-summary-row {
    font-size: 0.92rem;
  }
}

@media (max-width: 430px) {
  .modal-card {
    width: calc(100% - 14px);
    padding: 22px 14px;
    border-radius: 24px;
  }

  .modal-order-summary {
    padding: 14px;
    border-radius: 20px;
  }

  .modal-receipt-items {
    max-height: 190px;
    padding: 10px;
  }

  .modal-summary-item {
    display: grid;
    gap: 6px;
  }

  .modal-summary-price {
    justify-self: start;
  }

  .summary-count-pill {
    font-size: 0.72rem;
  }
}

/* =======================================================
   Premium Motion System + 3D Hero Carousel
   ======================================================= */

:root {
  --ease-premium: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-soft: cubic-bezier(0.16, 1, 0.3, 1);
}

/* Smooth GPU-friendly interactions */
.btn,
.package-btn,
.inquire-btn,
.addon-btn,
.quote-toggle,
.icon-btn,
.menu-card,
.package-card,
.contact-card,
.hero-carousel-card,
.bowl-icon,
.package-food-img {
  will-change: transform, box-shadow, opacity;
  backface-visibility: hidden;
  transform: translateZ(0);
}

/* Premium button hover */
.btn:hover,
.package-btn:hover,
.inquire-btn:hover,
.addon-btn:hover,
.quote-toggle:hover {
  transform: translate3d(0, -3px, 0) scale(1.015);
  box-shadow: 0 18px 34px rgba(78, 52, 46, 0.2);
}

.primary-btn:hover {
  box-shadow:
    0 18px 34px rgba(210, 123, 93, 0.34),
    0 0 0 6px rgba(210, 123, 93, 0.1);
}

.ghost-btn:hover {
  background: rgba(247, 224, 192, 0.72);
}

/* Premium card hover */
.package-card,
.menu-card,
.contact-card {
  transition:
    transform 0.45s var(--ease-premium),
    box-shadow 0.45s var(--ease-premium),
    border-color 0.45s var(--ease-premium),
    filter 0.45s var(--ease-premium);
}

.package-card:hover,
.menu-card:hover,
.contact-card:hover {
  transform: translate3d(0, -8px, 0);
}

.menu-card:hover {
  box-shadow:
    0 22px 44px rgba(78, 52, 46, 0.16),
    0 0 0 1px rgba(210, 123, 93, 0.12);
}

.package-card:hover {
  box-shadow:
    0 30px 70px rgba(45, 24, 5, 0.32),
    0 0 0 1px rgba(255, 224, 123, 0.2);
}

/* Gentle lighting loop for circular food images */
.bowl-icon,
.package-food-img,
.hero-carousel-card {
  animation: premiumFoodLight 5.8s ease-in-out infinite;
}

@keyframes premiumFoodLight {
  0%,
  100% {
    filter: brightness(1) saturate(1);
  }

  50% {
    filter: brightness(1.045) saturate(1.045);
  }
}

.menu-card:hover .bowl-icon {
  transform: translate3d(0, -4px, 0) scale(1.04);
  box-shadow:
    0 20px 36px rgba(78, 52, 46, 0.22),
    0 0 0 8px rgba(247, 224, 192, 0.32);
}

.menu-card:hover .bowl-icon img {
  transform: scale(1.06);
}

.bowl-icon,
.bowl-icon img {
  transition:
    transform 0.55s var(--ease-premium),
    box-shadow 0.55s var(--ease-premium),
    filter 0.55s var(--ease-premium);
}

/* Scroll reveal system */
.reveal-ready {
  opacity: 0;
  transform: translate3d(0, 28px, 0);
  transition:
    opacity 0.75s var(--ease-soft),
    transform 0.75s var(--ease-soft);
}

.reveal-ready.reveal-slide-right {
  transform: translate3d(32px, 0, 0);
}

.reveal-ready.is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

/* Hero entrance */
.hero-reveal {
  opacity: 0;
  transform: translate3d(0, 24px, 0);
  animation: heroRevealIn 0.9s var(--ease-soft) forwards;
}

.hero-reveal:nth-child(2) {
  animation-delay: 0.12s;
}

@keyframes heroRevealIn {
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

/* =======================================================
   3D Hero Carousel
   ======================================================= */

.hero-carousel-shell {
  position: relative;
  min-height: 430px;
  display: grid;
  place-items: center;
  perspective: 1200px;
  transform-style: preserve-3d;
  overflow: visible;
}

.hero-carousel-glow {
  position: absolute;
  inset: 8% 4%;
  border-radius: 42px;
  background:
    radial-gradient(circle at center, rgba(247, 224, 192, 0.82), transparent 56%),
    radial-gradient(circle at 70% 30%, rgba(210, 123, 93, 0.22), transparent 40%);
  filter: blur(4px);
  pointer-events: none;
  opacity: 0.95;
}

.hero-keen-slider {
  width: min(100%, 620px);
  overflow: visible;
  padding: 18px 0 38px;
}

.hero-slide {
  min-height: 390px;
  display: grid;
  place-items: center;
  overflow: visible;
  transform-style: preserve-3d;
}

.hero-carousel-card {
  width: min(440px, 76vw);
  min-height: 390px;
  padding: 28px;
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at center, rgba(247, 224, 192, 0.96), rgba(255, 248, 236, 0.92));
  box-shadow:
    0 24px 60px rgba(78, 52, 46, 0.18),
    inset 0 0 0 1px rgba(78, 52, 46, 0.06);
  display: grid;
  place-items: center;
  transition:
    transform 0.7s var(--ease-premium),
    opacity 0.7s var(--ease-premium),
    filter 0.7s var(--ease-premium),
    box-shadow 0.7s var(--ease-premium);
  transform: translate3d(0, 18px, -90px) rotateY(0deg) scale(0.72);
  opacity: 0.36;
  filter: blur(0.5px) saturate(0.88);
}

.hero-slide.is-active .hero-carousel-card {
  transform: translate3d(0, 0, 90px) rotateY(0deg) scale(1);
  opacity: 1;
  filter: blur(0) saturate(1.05);
  box-shadow:
    0 34px 78px rgba(78, 52, 46, 0.26),
    0 0 0 10px rgba(247, 224, 192, 0.18),
    inset 0 0 0 1px rgba(78, 52, 46, 0.08);
}

.hero-slide.is-prev .hero-carousel-card {
  transform: translate3d(32px, 16px, -120px) rotateY(24deg) scale(0.76);
  opacity: 0.58;
}

.hero-slide.is-next .hero-carousel-card {
  transform: translate3d(-32px, 16px, -120px) rotateY(-24deg) scale(0.76);
  opacity: 0.58;
}

.hero-slide.is-far .hero-carousel-card {
  transform: translate3d(0, 24px, -180px) rotateY(0deg) scale(0.64);
  opacity: 0.24;
}

.hero-carousel-card .hero-img {
  width: 100%;
  max-width: 430px;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 28px 28px rgba(78, 52, 46, 0.28));
  transition: transform 0.7s var(--ease-premium);
}

.hero-slide.is-active .hero-img {
  transform: translate3d(0, -4px, 0) scale(1.04);
}

.hero-carousel-arrow {
  position: absolute;
  top: 50%;
  z-index: 5;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 248, 236, 0.84);
  color: var(--cacao);
  font-size: 2rem;
  font-weight: 900;
  box-shadow: 0 12px 28px rgba(78, 52, 46, 0.16);
  transform: translateY(-50%);
  transition:
    transform 0.3s var(--ease-premium),
    background 0.3s var(--ease-premium),
    color 0.3s var(--ease-premium),
    box-shadow 0.3s var(--ease-premium);
}

.hero-carousel-arrow:hover {
  background: var(--terracotta);
  color: var(--white);
  transform: translateY(-50%) scale(1.08);
}

.hero-carousel-prev {
  left: 0;
}

.hero-carousel-next {
  right: 0;
}

.hero-carousel-dots {
  position: absolute;
  left: 50%;
  bottom: 2px;
  display: flex;
  justify-content: center;
  gap: 8px;
  transform: translateX(-50%);
  z-index: 6;
}

.hero-carousel-dot {
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: rgba(78, 52, 46, 0.22);
  transition:
    width 0.3s var(--ease-premium),
    background 0.3s var(--ease-premium),
    transform 0.3s var(--ease-premium);
}

.hero-carousel-dot.active {
  width: 26px;
  background: var(--terracotta);
}

.hero-carousel-dot:hover {
  transform: scale(1.15);
}

/* Make loaded dynamic cards eligible for reveal */
.package-card,
.menu-card,
.standard-addons,
.contact-card,
.section-heading,
.menu-category-heading {
  transition-delay: var(--reveal-delay, 0ms);
}

/* Responsive carousel polish */
@media (min-width: 900px) {
  .hero-carousel-shell {
    min-height: 560px;
  }

  .hero-slide {
    min-height: 520px;
  }

  .hero-carousel-card {
    min-height: 500px;
  }

  .hero-carousel-prev {
    left: -8px;
  }

  .hero-carousel-next {
    right: -8px;
  }
}

@media (max-width: 700px) {
  .hero-grid {
    gap: 38px;
  }

  .hero-carousel-shell {
    min-height: 370px;
  }

  .hero-keen-slider {
    width: 100%;
    padding-bottom: 34px;
  }

  .hero-slide {
    min-height: 340px;
  }

  .hero-carousel-card {
    width: min(310px, 76vw);
    min-height: 310px;
    padding: 20px;
  }

  .hero-slide.is-prev .hero-carousel-card {
    transform: translate3d(22px, 10px, -110px) rotateY(20deg) scale(0.72);
  }

  .hero-slide.is-next .hero-carousel-card {
    transform: translate3d(-22px, 10px, -110px) rotateY(-20deg) scale(0.72);
  }

  .hero-carousel-arrow {
    width: 36px;
    height: 36px;
    font-size: 1.7rem;
  }

  .hero-carousel-prev {
    left: 4px;
  }

  .hero-carousel-next {
    right: 4px;
  }
}

/* Accessibility: reduce movement when requested */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.001ms !important;
  }

  .reveal-ready {
    opacity: 1;
    transform: none;
  }

  .hero-carousel-card,
  .hero-slide.is-active .hero-carousel-card,
  .hero-slide.is-prev .hero-carousel-card,
  .hero-slide.is-next .hero-carousel-card,
  .hero-slide.is-far .hero-carousel-card {
    transform: none;
    opacity: 1;
    filter: none;
  }
}

/* =======================================================
   Engaging Smart Discount Card
   ======================================================= */

.quote-discount-shell {
  display: block;
  width: 100%;
  margin: 12px 0;
}

.quote-discount-shell[hidden] {
  display: none !important;
}

.discount-progress-card {
  width: 100%;
  display: grid;
  gap: 10px;
  padding: 14px;
  border-radius: 18px;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(78, 52, 46, 0.12);
  box-shadow: 0 14px 30px rgba(78, 52, 46, 0.08);
}

.discount-progress-card::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.75;
}

.discount-progress-card.is-locked {
  background:
    linear-gradient(135deg, rgba(247, 224, 192, 0.96), rgba(255, 248, 236, 0.98));
}

.discount-progress-card.is-locked::before {
  background:
    radial-gradient(circle at 10% 10%, rgba(210, 123, 93, 0.18), transparent 34%),
    radial-gradient(circle at 90% 15%, rgba(255, 255, 255, 0.72), transparent 26%);
}

.discount-progress-card.is-unlocked {
  background:
    linear-gradient(135deg, rgba(132, 140, 83, 0.18), rgba(255, 248, 236, 0.98));
  border-color: rgba(132, 140, 83, 0.28);
}

.discount-progress-card.is-unlocked::before {
  background:
    radial-gradient(circle at 12% 10%, rgba(132, 140, 83, 0.24), transparent 36%),
    radial-gradient(circle at 90% 15%, rgba(255, 255, 255, 0.72), transparent 26%);
}

.discount-card-top,
.discount-card-details,
.discount-progress-track {
  position: relative;
  z-index: 1;
}

.discount-card-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}

.discount-card-label {
  margin: 0 0 2px;
  color: var(--terracotta);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.discount-progress-card.is-unlocked .discount-card-label {
  color: var(--olive);
}

.discount-card-top h4 {
  margin: 0;
  color: var(--cacao);
  font-size: 1rem;
  line-height: 1.15;
}

.discount-status-pill {
  flex: 0 0 auto;
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 900;
  white-space: nowrap;
}

.discount-status-pill.locked {
  background: rgba(210, 123, 93, 0.16);
  color: var(--terracotta);
}

.discount-status-pill.unlocked {
  background: rgba(132, 140, 83, 0.18);
  color: var(--olive);
}

.discount-progress-track {
  width: 100%;
  height: 9px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(78, 52, 46, 0.12);
  box-shadow: inset 0 1px 3px rgba(78, 52, 46, 0.12);
}

.discount-progress-fill {
  height: 100%;
  border-radius: inherit;
  background:
    linear-gradient(90deg, var(--terracotta), rgba(210, 123, 93, 0.72));
  transition: width 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

.discount-progress-card.is-unlocked .discount-progress-fill {
  background:
    linear-gradient(90deg, var(--olive), rgba(132, 140, 83, 0.74));
}

.discount-card-details {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}

.discount-card-details p {
  margin: 0;
  color: rgba(78, 52, 46, 0.78);
  font-size: 0.82rem;
  font-weight: 800;
  line-height: 1.45;
}

.discount-card-details p strong {
  color: var(--terracotta);
}

.discount-card-amount {
  flex: 0 0 auto;
  color: var(--olive);
  font-size: 1rem;
  font-weight: 1000;
  white-space: nowrap;
}

.discount-card-amount.muted {
  color: rgba(78, 52, 46, 0.48);
  font-size: 0.86rem;
}

/* Modal version: slightly more compact */
.discount-progress-card.in-modal {
  margin: 4px 0;
  padding: 13px;
  box-shadow: none;
}

.discount-progress-card.in-modal .discount-card-details {
  align-items: center;
}

.discount-progress-card.in-modal .discount-card-details p {
  font-size: 0.78rem;
}

/* Drawer/mobile safety */
@media (max-width: 430px) {
  .discount-card-details {
    display: grid;
    gap: 8px;
  }

  .discount-card-amount {
    justify-self: start;
  }

  .discount-status-pill {
    font-size: 0.68rem;
  }
}

/* =======================================================
   FINAL HERO CAROUSEL REDESIGN
   Clean premium single-card carousel, no clipping
   ======================================================= */

.container {
  width: 100%;
  max-width: 1280px;
  margin-inline: auto;
  padding-inline: 40px;
}

.hero {
  min-height: calc(100vh - 90px);
  overflow: hidden;
}

.hero-container {
  min-height: calc(100vh - 90px);
  display: flex;
  align-items: center;
}

.hero-grid {
  width: 100%;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 0.85fr);
  align-items: center;
  gap: clamp(48px, 5vw, 86px);
}

.hero-content {
  max-width: 560px;
  justify-self: start;
}

.hero-content h1,
.hero-text {
  max-width: 560px;
}

.hero-carousel-shell {
  width: 100%;
  max-width: 500px;
  min-width: 0;
  min-height: 540px;
  justify-self: center;
  position: relative;
  display: grid;
  place-items: center;
  overflow: visible;
  padding: 22px 0 48px;
  perspective: none;
  transform-style: flat;
}

.hero-carousel-shell::before {
  content: "";
  position: absolute;
  inset: 34px 18px 54px;
  border-radius: 42px;
  background:
    radial-gradient(circle at 50% 36%, rgba(247, 224, 192, 0.95), rgba(255, 248, 236, 0.72) 58%, transparent 72%),
    linear-gradient(180deg, rgba(255, 248, 236, 0.75), rgba(247, 224, 192, 0.34));
  box-shadow:
    0 34px 80px rgba(78, 52, 46, 0.14),
    inset 0 0 0 1px rgba(78, 52, 46, 0.06);
  pointer-events: none;
}

.hero-carousel-glow {
  position: absolute;
  inset: 4% -4% 8%;
  border-radius: 46px;
  background:
    radial-gradient(circle at 55% 40%, rgba(247, 224, 192, 0.78), transparent 55%),
    radial-gradient(circle at 45% 62%, rgba(210, 123, 93, 0.16), transparent 42%);
  filter: blur(10px);
  pointer-events: none;
  opacity: 0.9;
}

.hero-keen-slider {
  width: min(100%, 440px);
  max-width: 440px;
  overflow: hidden;
  border-radius: 38px;
  position: relative;
  z-index: 2;
  padding: 0;
  background:
    radial-gradient(circle at center, rgba(255, 248, 236, 0.98), rgba(247, 224, 192, 0.74));
  box-shadow:
    0 24px 56px rgba(78, 52, 46, 0.18),
    0 0 0 1px rgba(78, 52, 46, 0.06);
}

.hero-slide {
  min-height: 470px;
  display: grid;
  place-items: center;
  overflow: hidden;
  transform-style: flat;
}

.hero-carousel-card,
.hero-slide.is-active .hero-carousel-card,
.hero-slide.is-prev .hero-carousel-card,
.hero-slide.is-next .hero-carousel-card,
.hero-slide.is-far .hero-carousel-card {
  width: 100%;
  min-height: 470px;
  padding: 34px;
  border-radius: 38px;
  display: grid;
  place-items: center;
  background: transparent;
  box-shadow: none;
  transform: none;
  opacity: 1;
  filter: none;
  transition:
    transform 0.55s var(--ease-premium, cubic-bezier(0.22, 1, 0.36, 1)),
    opacity 0.55s var(--ease-premium, cubic-bezier(0.22, 1, 0.36, 1));
}

.hero-carousel-card .hero-img {
  width: 100%;
  max-width: 360px;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 30px 28px rgba(78, 52, 46, 0.27));
  transform: translate3d(0, 0, 0) scale(1.02);
  transition: transform 0.65s var(--ease-premium, cubic-bezier(0.22, 1, 0.36, 1));
}

.hero-slide.is-active .hero-img {
  transform: translate3d(0, -3px, 0) scale(1.06);
}

.hero-carousel-arrow {
  position: absolute;
  top: 50%;
  z-index: 5;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(255, 248, 236, 0.92);
  color: var(--cacao);
  font-size: 2rem;
  font-weight: 900;
  box-shadow: 0 14px 28px rgba(78, 52, 46, 0.14);
  transform: translateY(-50%);
  transition:
    transform 0.25s ease,
    background 0.25s ease,
    color 0.25s ease,
    box-shadow 0.25s ease;
}

.hero-carousel-arrow:hover {
  background: var(--terracotta);
  color: var(--white);
  transform: translateY(-50%) scale(1.06);
  box-shadow: 0 18px 34px rgba(210, 123, 93, 0.24);
}

.hero-carousel-prev {
  left: 8px;
}

.hero-carousel-next {
  right: 8px;
}

.hero-carousel-dots {
  position: absolute;
  left: 50%;
  bottom: 16px;
  z-index: 6;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transform: translateX(-50%);
}

.hero-carousel-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: rgba(78, 52, 46, 0.2);
  transition:
    width 0.28s ease,
    background 0.28s ease,
    transform 0.28s ease;
}

.hero-carousel-dot.active {
  width: 26px;
  background: var(--terracotta);
}

.hero-carousel-dot:hover {
  transform: scale(1.15);
}

@media (max-width: 1100px) {
  .hero-grid {
    grid-template-columns: minmax(0, 1fr) minmax(340px, 0.85fr);
    gap: 44px;
  }

  .hero-carousel-shell {
    max-width: 450px;
    min-height: 480px;
  }

  .hero-keen-slider {
    width: min(100%, 390px);
  }

  .hero-slide,
  .hero-carousel-card,
  .hero-slide.is-active .hero-carousel-card,
  .hero-slide.is-prev .hero-carousel-card,
  .hero-slide.is-next .hero-carousel-card,
  .hero-slide.is-far .hero-carousel-card {
    min-height: 420px;
  }

  .hero-carousel-card .hero-img {
    max-width: 320px;
  }
}

@media (max-width: 860px) {
  .container {
    padding-inline: 22px;
  }

  .hero-container {
    min-height: auto;
    padding-top: 68px;
    padding-bottom: 76px;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .hero-carousel-shell {
    max-width: 500px;
    min-height: 420px;
    padding-bottom: 46px;
  }

  .hero-keen-slider {
    width: min(100%, 370px);
  }

  .hero-slide,
  .hero-carousel-card,
  .hero-slide.is-active .hero-carousel-card,
  .hero-slide.is-prev .hero-carousel-card,
  .hero-slide.is-next .hero-carousel-card,
  .hero-slide.is-far .hero-carousel-card {
    min-height: 370px;
  }

  .hero-carousel-card .hero-img {
    max-width: 292px;
  }
}

@media (max-width: 520px) {
  .container {
    padding-inline: 16px;
  }

  .hero-carousel-shell {
    min-height: 350px;
  }

  .hero-keen-slider {
    width: min(100%, 310px);
    border-radius: 30px;
  }

  .hero-slide,
  .hero-carousel-card,
  .hero-slide.is-active .hero-carousel-card,
  .hero-slide.is-prev .hero-carousel-card,
  .hero-slide.is-next .hero-carousel-card,
  .hero-slide.is-far .hero-carousel-card {
    min-height: 305px;
    border-radius: 30px;
    padding: 22px;
  }

  .hero-carousel-card .hero-img {
    max-width: 246px;
  }

  .hero-carousel-prev {
    left: 0;
  }

  .hero-carousel-next {
    right: 0;
  }
}

/* =======================================================
   FINAL CLEAN HERO CAROUSEL
   No frame, no arrows, auto-slide only
   ======================================================= */

.hero-carousel-shell {
  width: 100%;
  max-width: 620px;
  min-width: 0;
  justify-self: center;
  position: relative;
  min-height: 500px;
  display: grid;
  place-items: center;
  overflow: visible;
  padding-inline: 20px;
}

.hero-carousel-glow {
  position: absolute;
  inset: 12% 8%;
  border-radius: 999px;
  background:
    radial-gradient(circle at center, rgba(247, 224, 192, 0.55), transparent 52%),
    radial-gradient(circle at 50% 60%, rgba(210, 123, 93, 0.12), transparent 42%);
  filter: blur(18px);
  pointer-events: none;
  opacity: 1;
}

.hero-keen-slider {
  width: 100%;
  max-width: 520px;
  overflow: hidden;
  padding: 10px 0 44px;
}

.hero-slide {
  min-height: 420px;
  display: grid;
  place-items: center;
}

.hero-image-card,
.hero-carousel-card {
  width: 100%;
  min-height: auto;
  padding: 0;
  background: transparent !important;
  border: 0 !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  display: grid;
  place-items: center;
}

.hero-img {
  width: min(460px, 82vw);
  height: auto;
  object-fit: contain;
  filter:
    drop-shadow(0 28px 26px rgba(78, 52, 46, 0.28))
    drop-shadow(0 8px 10px rgba(78, 52, 46, 0.12));
  transform: scale(1.04);
  transition: transform 0.45s ease, filter 0.45s ease;
}

.hero-slide.is-active .hero-img {
  transform: scale(1.08);
}

.hero-slide.is-prev .hero-carousel-card,
.hero-slide.is-next .hero-carousel-card,
.hero-slide.is-far .hero-carousel-card {
  opacity: 0;
  transform: scale(0.96);
  pointer-events: none;
}

/* Remove arrows completely */
.hero-carousel-arrow {
  display: none !important;
}

/* Dots only */
.hero-carousel-dots {
  position: absolute;
  left: 50%;
  bottom: 18px;
  display: flex;
  justify-content: center;
  gap: 8px;
  transform: translateX(-50%);
  z-index: 5;
}

.hero-carousel-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: rgba(78, 52, 46, 0.22);
  transition: width 0.25s ease, background 0.25s ease;
}

.hero-carousel-dot.active {
  width: 26px;
  background: var(--terracotta);
}

@media (max-width: 860px) {
  .hero-carousel-shell {
    min-height: 360px;
    padding-inline: 10px;
  }

  .hero-keen-slider {
    max-width: 390px;
    padding-bottom: 38px;
  }

  .hero-slide {
    min-height: 320px;
  }

  .hero-img {
    width: min(340px, 78vw);
  }

  .hero-carousel-dots {
    bottom: 10px;
  }
}

@media (max-width: 520px) {
  .hero-carousel-shell {
    min-height: 300px;
  }

  .hero-keen-slider {
    max-width: 310px;
  }

  .hero-slide {
    min-height: 270px;
  }

  .hero-img {
    width: min(285px, 82vw);
  }
}

/* =======================================================
   FINAL FIX: Remove extra header-to-hero gap
   ======================================================= */

.hero.section {
  padding-top: 30px;
  padding-bottom: 48px;
}

/* Keep hero vertically balanced after removing the 88px top padding */
.hero-container {
  min-height: calc(100vh - 90px - 70px);
  display: flex;
  align-items: center;
}

/* Slightly tighter header */
.header-wrapper {
  min-height: 78px;
}

/* Mobile spacing */
@media (max-width: 860px) {
  .hero.section {
    padding-top: 28px;
    padding-bottom: 52px;
  }

  .hero-container {
    min-height: auto;
  }
}

@media (max-width: 520px) {
  .hero.section {
    padding-top: 20px;
    padding-bottom: 44px;
  }
}