/* ========== RESET ========== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --red: #C61F1B;
  --cream: #F9E7D8;
  --cream-dark: #EDD4BC;
  --black: #1A1A1A;
  --white: #FFFFFF;
  --gray: #666666;
  --gray-light: #999999;

  --font-impact: 'Oswald', Impact, 'Arial Narrow', Arial, sans-serif;
  --font-body: 'DM Sans', sans-serif;
  --font-script: 'Dancing Script', cursive;

  --header-height: 68px;
  --radius: 16px;
  --radius-sm: 10px;
  --shadow: 0 4px 24px rgba(0,0,0,0.08);
  --shadow-lg: 0 12px 48px rgba(0,0,0,0.12);
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--font-body);
  color: var(--black);
  background: var(--cream);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: subpixel-antialiased;
  -moz-osx-font-smoothing: auto;
  text-rendering: optimizeLegibility;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input { font-family: inherit; }

/* ========== ANIMATIONS ========== */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.active { opacity: 1; transform: translateY(0); }
.reveal:nth-child(2) { transition-delay: 0.1s; }
.reveal:nth-child(3) { transition-delay: 0.2s; }
.reveal:nth-child(4) { transition-delay: 0.3s; }
.reveal:nth-child(5) { transition-delay: 0.35s; }
.reveal:nth-child(6) { transition-delay: 0.4s; }

/* ========== SECTION TITLES ========== */
.section-title {
  font-family: var(--font-impact);
  font-size: clamp(2.2rem, 5vw, 3.2rem);
  font-weight: 900;
  color: var(--red);
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 2px;
  line-height: 1.15;
  padding-top: 0.1em;
  margin-bottom: 0.5rem;
  overflow: visible;
}

.section-subtitle {
  font-size: 1rem;
  color: var(--gray);
  text-align: center;
  max-width: 520px;
  margin: 0 auto 3rem;
  line-height: 1.6;
}


/* ========== HERO ========== */
.hero {
  background: var(--black);
  overflow: hidden;
}

.hero__bg-img {
  width: 100%;
  height: 100vh;
  object-fit: cover;
  object-position: center top;
  display: block;
}

/* ========== PRODUCT OPTIONS ========== */
.product-card__options {
  margin-bottom: 0.85rem;
}

.product-card__options-label {
  display: block;
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--gray);
  margin-bottom: 0.4rem;
}

.product-card__options-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
}

.option-btn {
  padding: 0.28rem 0.75rem;
  border-radius: 50px;
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.3px;
  border: 1.5px solid var(--cream-dark);
  background: var(--cream);
  color: var(--black);
  transition: all var(--transition);
}

.option-btn.active {
  background: var(--red);
  color: var(--white);
  border-color: var(--red);
}

.option-btn:hover:not(.active) {
  border-color: var(--red);
  color: var(--red);
}

/* ========== OPTION ITEMS (click to reveal counter) ========== */
.option-items {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin-top: 0.5rem;
  min-height: 114px;
}

.option-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
}

.option-toggle {
  flex: 1;
  text-align: left;
  padding: 0.38rem 0.85rem;
  border-radius: 50px;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.3px;
  border: 1.5px solid var(--cream-dark);
  background: var(--cream);
  color: var(--black);
  cursor: pointer;
  transition: all var(--transition);
}

.option-toggle.active {
  background: var(--red);
  color: var(--white);
  border-color: var(--red);
}

.option-toggle:hover:not(.active) {
  border-color: var(--red);
  color: var(--red);
}

.option-item__qty {
  display: none;
  align-items: center;
  background: var(--cream);
  border: 2px solid var(--cream-dark);
  border-radius: var(--radius-sm);
  overflow: hidden;
  flex-shrink: 0;
}

.option-item__qty.visible {
  display: flex;
}

.option-item__qty .qty-btn {
  width: 34px;
  height: 36px;
  font-size: 1.1rem;
}

.option-item__qty .qty-input {
  width: 34px;
  height: 36px;
  font-size: 0.95rem;
}

/* ========== PRODUCTS ========== */
.products {
  padding: 5rem 1.5rem;
  background: var(--white);
}

#productos { padding-bottom: 1.5rem; }
#postres { padding-top: 1.5rem; }

.products__container { max-width: 1100px; margin: 0 auto; }

.products__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-bottom: 2rem;
}

.products__grid--2 {
  grid-template-columns: repeat(2, 1fr);
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

.product-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1.5px solid #F0EBE0;
  transition: transform var(--transition), box-shadow var(--transition);
  display: flex;
  flex-direction: column;
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.product-card__image-wrap {
  position: relative;
  width: 100%;
  height: 240px;
  overflow: hidden;
  background: var(--cream);
}

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

.product-card:hover .product-card__image { transform: scale(1.06); }

.product-card__badge {
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 0.3rem 0.75rem;
  background: var(--cream);
  color: var(--black);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.72rem;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border: 1.5px solid var(--cream-dark);
}

.product-card__badge.badge--premium {
  background: var(--red);
  color: var(--white);
  border-color: var(--red);
}

.product-card__info {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.product-card__name {
  font-family: var(--font-impact);
  font-size: 1.25rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  line-height: 1.2;
  color: var(--red);
  margin-bottom: 0.3rem;
  overflow: visible;
}

.product-card__tagline {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--red);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 0.5rem;
}

.product-card__desc {
  font-size: 0.88rem;
  color: var(--gray);
  margin-bottom: 0.9rem;
  line-height: 1.5;
  flex: 1;
  flex: 1;
}

.product-card__nutrition {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  margin-bottom: 1rem;
}

.product-card__nutrition span {
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--black);
  background: var(--cream);
  padding: 0.2rem 0.55rem;
  border-radius: 50px;
  border: 1px solid var(--cream-dark);
}


.product-card__price-row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.product-card__price {
  font-family: var(--font-impact);
  font-size: 1.6rem;
  font-weight: 900;
  color: var(--red);
}

.product-card__price.striked {
  text-decoration: line-through;
  color: var(--gray-light);
  font-size: 1.1rem;
}

.product-card__price-discount {
  font-family: var(--font-impact);
  font-size: 1.6rem;
  font-weight: 900;
  color: #2D7A3A;
}

.product-card__qty {
  display: flex;
  align-items: center;
  background: var(--cream);
  border-radius: var(--radius-sm);
  overflow: hidden;
  width: fit-content;
  border: 2px solid var(--cream-dark);
}

.qty-btn {
  width: 42px;
  height: 42px;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--black);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition), color var(--transition);
  user-select: none;
}

.qty-btn:hover { background: var(--red); color: var(--white); }
.qty-btn:active { transform: scale(0.95); }

.qty-input {
  width: 48px;
  height: 42px;
  text-align: center;
  font-family: var(--font-impact);
  font-size: 1.05rem;
  font-weight: 900;
  color: var(--black);
  border: none;
  background: transparent;
  outline: none;
  -moz-appearance: textfield;
}

.qty-input::-webkit-inner-spin-button,
.qty-input::-webkit-outer-spin-button { -webkit-appearance: none; }

/* ========== ORDER SUMMARY ========== */
.order-summary {
  position: sticky;
  bottom: 80px;
  z-index: 100;
  padding: 1rem 0;
  opacity: 0;
  transform: translateY(20px);
  pointer-events: none;
  transition: opacity var(--transition), transform var(--transition);
}

.order-summary.visible { opacity: 1; transform: translateY(0); pointer-events: all; }

.order-summary__inner {
  background: var(--black);
  border-radius: var(--radius);
  padding: 1.2rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  box-shadow: 0 -4px 30px rgba(0,0,0,0.2);
  border: 2px solid var(--red);
}

.order-summary__details {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  color: var(--white);
  font-weight: 500;
}

.order-summary__count {
  font-family: var(--font-impact);
  font-size: 1rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.order-summary__discount {
  background: var(--red);
  color: var(--white);
  padding: 0.25rem 0.75rem;
  border-radius: 50px;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  animation: pulse 1.5s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.08); }
}

.order-summary__total strong {
  font-family: var(--font-impact);
  font-size: 1.3rem;
  font-weight: 900;
  color: var(--cream);
}

.order-summary__btn {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: #25D366;
  color: var(--white);
  padding: 0.9rem 2rem;
  border-radius: 50px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: transform var(--transition), box-shadow var(--transition);
  white-space: nowrap;
}

.order-summary__btn:hover:not(:disabled) {
  transform: scale(1.05);
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.5);
}

.order-summary__btn:disabled { opacity: 0.4; cursor: not-allowed; }

/* ========== INGREDIENTS ========== */
.ingredients {
  padding: 5rem 1.5rem;
  background: var(--cream);
}

.ingredients__container { max-width: 1000px; margin: 0 auto; }

.ingredients__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.ingredients__item {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 1;
  cursor: pointer;
  border: 3px solid var(--white);
}

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

.ingredients__item:hover img { transform: scale(1.1); }

.ingredients__label {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 1rem;
  background: linear-gradient(transparent, rgba(0,0,0,0.75));
  color: var(--white);
  font-family: var(--font-impact);
  font-size: 1rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-align: center;
}

/* ========== PROCESS ========== */
.process {
  padding: 5rem 1.5rem;
  background: var(--white);
}

.process__container { max-width: 900px; margin: 0 auto; }

.process__steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

.process__step {
  text-align: center;
  padding: 2rem 1.5rem;
  background: var(--cream);
  border-radius: var(--radius);
  border: 1.5px solid var(--cream-dark);
  transition: transform var(--transition);
}

.process__step:hover { transform: translateY(-4px); }

.process__number {
  width: 56px;
  height: 56px;
  background: var(--red);
  color: var(--white);
  font-family: var(--font-impact);
  font-size: 1.5rem;
  font-weight: 900;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
}

.process__step h3 {
  font-family: var(--font-impact);
  font-size: 1.3rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--black);
  margin-bottom: 0.5rem;
}

.process__step p { font-size: 0.92rem; color: var(--gray); line-height: 1.5; }

/* ========== GALLERY ========== */
.gallery {
  padding: 5rem 1.5rem;
  background: var(--cream);
}

.gallery__container { max-width: 1000px; margin: 0 auto; }

.gallery__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-top: 3rem;
}

.gallery__item {
  border-radius: var(--radius-sm);
  overflow: hidden;
  aspect-ratio: 1;
  border: 3px solid var(--white);
}

.gallery__item.gallery__item--wide { grid-column: span 2; aspect-ratio: 2/1; }

.gallery__item img,
.gallery__item video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.gallery__item:hover img,
.gallery__item:hover video { transform: scale(1.06); }

.gallery__item--video { grid-row: span 2; aspect-ratio: auto; }

/* ========== FAQ ========== */
.faq {
  padding: 5rem 1.5rem;
  background: var(--white);
}

.faq__container { max-width: 700px; margin: 0 auto; }

.faq__list { margin-top: 2rem; }

.faq__item { border-bottom: 2px solid var(--cream-dark); overflow: hidden; }

.faq__question {
  width: 100%;
  text-align: left;
  padding: 1.25rem 0;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 700;
  color: var(--black);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  transition: color var(--transition);
}

.faq__question:hover { color: var(--red); }

.faq__chevron {
  flex-shrink: 0;
  transition: transform var(--transition);
  color: var(--red);
}

.faq__item.open .faq__chevron { transform: rotate(180deg); }

.faq__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq__item.open .faq__answer { max-height: 500px; }

.faq__answer p {
  padding-bottom: 1.25rem;
  font-size: 0.92rem;
  color: var(--gray);
  line-height: 1.6;
}

.faq__instructions { padding-bottom: 1.25rem; }

.faq__instructions h4 {
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--red);
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.faq__instructions h4:not(:first-child) { margin-top: 1rem; }

.faq__instructions ul { list-style: none; padding-left: 0; }

.faq__instructions li {
  font-size: 0.92rem;
  color: var(--gray);
  line-height: 1.6;
  padding: 0.25rem 0 0.25rem 1rem;
  position: relative;
}

.faq__instructions li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.75em;
  width: 5px;
  height: 5px;
  background: var(--red);
  border-radius: 50%;
}

/* ========== CTA ========== */
.cta {
  padding: 5rem 1.5rem;
  background: var(--red);
  text-align: center;
}

.cta__container { max-width: 600px; margin: 0 auto; }

.cta__title {
  font-family: var(--font-impact);
  font-size: clamp(2.2rem, 6vw, 3.5rem);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 2px;
  line-height: 1.15;
  padding-top: 0.1em;
  color: var(--white);
  margin-bottom: 0.75rem;
  overflow: visible;
}

.cta__text {
  color: rgba(255,255,255,0.85);
  font-size: 1.05rem;
  margin-bottom: 2rem;
}

.cta__btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: var(--white);
  color: var(--red);
  padding: 1rem 2.5rem;
  border-radius: 50px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: transform var(--transition), box-shadow var(--transition);
}

.cta__btn:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 30px rgba(0,0,0,0.2);
}

/* ========== FOOTER ========== */
.footer {
  padding: 3rem 1.5rem;
  background: var(--black);
  text-align: center;
}

.footer__container { max-width: 600px; margin: 0 auto; }

.footer__logo {
  max-width: 120px;
  height: auto;
  margin: 0 auto 1.5rem;
  opacity: 0.85;
}

.footer__social {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.footer__social a {
  color: rgba(249,231,216,0.5);
  transition: color var(--transition), transform var(--transition);
}

.footer__social a:hover { color: var(--cream); transform: scale(1.15); }

.footer__copy { font-size: 0.82rem; color: rgba(249,231,216,0.3); }

/* ========== SECTION NAV ========== */
.section-nav {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 950;
  background: rgba(26, 26, 26, 0.95);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-radius: 50px;
  padding: 0.55rem 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.1rem;
  box-shadow: 0 8px 32px rgba(0,0,0,0.45), inset 0 0 0 1.5px rgba(255,255,255,0.07);
  white-space: nowrap;
}

.section-nav__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.2rem;
  padding: 0.5rem 0.9rem;
  border-radius: 40px;
  color: rgba(249,231,216,0.4);
  transition: color var(--transition), background var(--transition), transform var(--transition);
}

.section-nav__item span {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.2px;
}

.section-nav__item:hover,
.section-nav__item.active {
  color: var(--cream);
  background: rgba(255,255,255,0.1);
}

.section-nav__logo {
  display: flex;
  align-items: center;
  padding: 0.2rem 0.7rem 0.2rem 0.3rem;
  margin-right: 0.15rem;
  border-right: 1.5px solid rgba(255,255,255,0.12);
}

.section-nav__logo img {
  height: 42px;
  width: auto;
  filter: brightness(0) invert(1);
}

.section-nav__item--cta {
  background: var(--red) !important;
  color: var(--white) !important;
  margin-left: 0.3rem;
}

.section-nav__item--cta:hover {
  background: #a51815 !important;
  transform: scale(1.05);
}

@media (max-width: 540px) {
  .section-nav { padding: 0.5rem 0.5rem; gap: 0; }
  .section-nav__item { padding: 0.45rem 0.6rem; }
  .section-nav__item span { font-size: 0.55rem; }
}

@media (max-width: 400px) {
  .section-nav__item span { display: none; }
  .section-nav__item { padding: 0.65rem 0.75rem; }
}

/* ========== ORDER PREVIEW MODAL ========== */
.order-modal__overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.55);
  z-index: 10000;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.order-modal__overlay.open {
  display: flex;
}

.order-modal {
  background: var(--white);
  border-radius: 20px;
  padding: 2rem;
  width: 100%;
  max-width: 460px;
  position: relative;
  box-shadow: 0 20px 60px rgba(0,0,0,0.2);
  animation: modalIn 0.25s ease;
}

@keyframes modalIn {
  from { opacity: 0; transform: translateY(20px) scale(0.97); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}

.order-modal__close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: var(--cream);
  border: none;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  font-size: 0.85rem;
  cursor: pointer;
  color: var(--black);
  display: flex;
  align-items: center;
  justify-content: center;
}

.order-modal__title {
  font-family: var(--font-impact);
  font-size: 1.4rem;
  color: var(--black);
  margin-bottom: 1.25rem;
  padding-right: 2rem;
}

.order-modal__items {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin-bottom: 1rem;
}

.order-modal__item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font-body);
  font-size: 0.9rem;
}

.order-modal__item-name {
  color: var(--black);
  font-weight: 600;
}

.order-modal__item-qty {
  font-size: 0.78rem;
  color: var(--gray-light);
  margin-left: 0.3rem;
}

.order-modal__item-price {
  color: var(--gray-light);
  font-size: 0.88rem;
}

.order-modal__separator {
  border: none;
  border-top: 1.5px solid var(--cream-dark);
  margin: 1rem 0;
}

.order-modal__totals {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin-bottom: 1.25rem;
}

.order-modal__discount-badge {
  background: var(--red);
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 0.2rem 0.6rem;
  border-radius: 50px;
  align-self: flex-start;
  letter-spacing: 0.5px;
}

.order-modal__total-row {
  display: flex;
  justify-content: space-between;
  font-family: var(--font-body);
  font-size: 1rem;
}

.order-modal__total-row strong {
  font-size: 1.2rem;
  color: var(--red);
}

.order-modal__delivery {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: var(--cream);
  border-radius: 12px;
  padding: 0.9rem 1rem;
  margin-bottom: 1.5rem;
  color: var(--black);
}

.order-modal__delivery svg {
  flex-shrink: 0;
  color: var(--red);
}

.order-modal__delivery-label {
  display: block;
  font-size: 0.75rem;
  color: var(--gray-light);
  font-family: var(--font-body);
  margin-bottom: 0.15rem;
}

.order-modal__delivery-date {
  font-family: var(--font-impact);
  font-size: 1.05rem;
  color: var(--black);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.order-modal__actions {
  display: flex;
  gap: 0.75rem;
}

.order-modal__btn {
  flex: 1;
  padding: 0.85rem 1rem;
  border-radius: 50px;
  border: none;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.9rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  transition: opacity 0.2s;
}

.order-modal__btn:hover { opacity: 0.85; }

.order-modal__btn--cancel {
  background: var(--cream);
  color: var(--black);
  flex: 0 0 auto;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
}

.order-modal__btn--confirm {
  background: #25D366;
  color: var(--white);
}

@media (max-width: 480px) {
  .order-modal { padding: 1.5rem; }
  .order-modal__actions { flex-direction: column-reverse; }
  .order-modal__btn--cancel { flex: 1; }
}

/* ========== CUSTOM CURSOR ========== */
body, body * { cursor: none !important; }

.custom-cursor {
  position: fixed;
  pointer-events: none;
  z-index: 99999;
  width: 210px;
  height: 210px;
  top: -100px;
  left: -100px;
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: opacity 0.3s ease;
  animation: cursorFloat 2.8s ease-in-out infinite;
}

.custom-cursor.visible { opacity: 1; }

.custom-cursor.cursor--hover {
  animation: cursorFloatHover 2.8s ease-in-out infinite;
}

.custom-cursor img {
  width: 100%;
  height: auto;
  display: block;
}

@keyframes cursorFloat {
  0%, 100% { transform: translate(-50%, -50%) translateY(0px); }
  50% { transform: translate(-50%, -50%) translateY(-3px); }
}

@keyframes cursorFloatHover {
  0%, 100% { transform: translate(-50%, -50%) scale(1.3) translateY(0px); }
  50% { transform: translate(-50%, -50%) scale(1.3) translateY(-3px); }
}

@media (pointer: coarse) {
  body, body * { cursor: auto !important; }
  .custom-cursor { display: none; }
}

/* ========== RESPONSIVE ========== */
@media (max-width: 900px) {
  .products__grid { grid-template-columns: 1fr; max-width: 400px; margin-left: auto; margin-right: auto; }
  .ingredients__grid { grid-template-columns: repeat(2, 1fr); }
  .process__steps { grid-template-columns: 1fr; max-width: 400px; margin-left: auto; margin-right: auto; }
  .gallery__grid { grid-template-columns: repeat(2, 1fr); }
  .gallery__item.gallery__item--wide { grid-column: span 2; }
  .order-summary__inner { flex-direction: column; text-align: center; }
  .order-summary__details { flex-wrap: wrap; justify-content: center; }
}

@media (max-width: 768px) {
  .gallery__item.gallery__item--video { grid-row: span 1; aspect-ratio: 1; }
  .gallery__item.gallery__item--wide { grid-column: span 1; aspect-ratio: 1; }
}

@media (max-width: 480px) {
  .ingredients__grid { grid-template-columns: repeat(2, 1fr); }
  .whatsapp-float { bottom: 16px; right: 16px; width: 52px; height: 52px; }
}
