:root {
  --black: #0f0f0f;
  --dark: #1a1a1a;
  --gray: #cfd5da;
  --light: #f7f7f7;
  --accent: #dc2626;
  --accent-strong: #b91c1c;
  --accent-light: #ef4444;
  --utility-bar-height: 40px;
  --header-height: 124px;
  --sticky-total-height: calc(var(--utility-bar-height) + var(--header-height));
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Montserrat", sans-serif;
  background: var(--black);
  color: white;
  line-height: 1.6;
  padding-top: var(--sticky-total-height);
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

/* ============================================================================
   IMAGE OPTIMIZATION & LAZY LOADING STYLES
   ============================================================================ */

/* Keep existing img behavior - don't override */
/* Picture elements work with natural display */

/* ============================================================================
   END IMAGE OPTIMIZATION STYLES
   ============================================================================ */

.container {
  width: min(1200px, 92%);
  margin: 0 auto;
  box-sizing: border-box;
  padding: 0 1.5rem;
}

@media (max-width: 1024px) {
  .container {
    width: min(1000px, 92%);
    padding: 0 1.5rem;
  }
}

@media (max-width: 768px) {
  .container {
    width: min(100%, 95%);
    padding: 0 1.5rem;
  }
}

@media (max-width: 768px) {
  .utility-bar__inner {
    gap: 1rem;
    padding: 0.7rem 1.5rem;
  }
}

@media (max-width: 480px) {
  .container {
    width: 100%;
    padding: 0 1rem;
  }
  
  .utility-bar__inner {
    gap: 0.75rem;
    padding: 0.7rem 1rem;
    flex-wrap: nowrap;
    justify-content: flex-start;
  }
}

.utility-bar {
  background: #0a0c0f;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.78rem;
  letter-spacing: 0.08rem;
  text-transform: uppercase;
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  z-index: 100;
  height: var(--utility-bar-height);
  display: flex;
  align-items: center;
}

.utility-bar__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 0.85rem;
  padding: 0.55rem 1.25rem;
  width: 100%;
  box-sizing: border-box;
}

.utility-link {
  color: #d9dde2;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.88rem;
}

.utility-link--button {
  background: none;
  border: none;
  font: inherit;
  cursor: pointer;
}

.site-header {
  position: fixed;
  left: 0;
  right: 0;
  top: var(--utility-bar-height);
  z-index: 95;
  background: #ffffff;
  border-bottom: 1px solid #e5e7eb;
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.6rem 1.95rem;
  width: 100%;
  box-sizing: border-box;
  gap: 1.5rem;
}

.logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.logo__image {
  width: 300px;
  height: auto;
  max-height: 112px;
}

@media (max-width: 768px) {
  .site-header__inner {
    padding: 1.25rem 1.45rem;
    gap: 0.5rem;
  }

  .logo__image {
    width: 235px;
    max-height: 88px;
  }

  .cart-link {
    width: 64px;
    height: 52px;
    border-radius: 12px;
  }
}

@media (max-width: 480px) {
  .utility-bar__inner {
    gap: 0.55rem;
    padding: 0.45rem 0.9rem;
  }

  .site-header__inner {
    padding: 1.2rem 1rem;
  }

  .logo__image {
    width: 195px;
    max-height: 74px;
  }

  .cart-link {
    width: 60px;
    height: 50px;
    border-radius: 12px;
  }

  .cart-icon {
    width: 26px;
    height: 26px;
  }
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.cart-link {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 68px;
  height: 54px;
  color: #0f0f0f;
  border: 2px solid #0f0f0f;
  border-radius: 14px;
  transition: all 0.2s ease;
}

.cart-link--pulse {
  animation: cartPulse 1.1s ease-in-out;
  box-shadow: 0 0 0 0 rgba(220, 38, 38, 0.7);
}

@keyframes cartPulse {
  0% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(220, 38, 38, 0.7);
  }
  50% {
    transform: scale(1.06);
    box-shadow: 0 0 18px 6px rgba(220, 38, 38, 0.45);
  }
  100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(220, 38, 38, 0);
  }
}

.cart-link:hover {
  background: #0f0f0f;
  color: #fff;
}

.cart-icon {
  width: 28px;
  height: 28px;
}

.cart-badge {
  position: absolute;
  top: -6px;
  right: -6px;
  background: var(--accent);
  color: white;
  font-size: 0.7rem;
  font-weight: 700;
  min-width: 20px;
  height: 20px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 5px;
  line-height: 1;
}

.hamburger {
  width: 42px;
  height: 36px;
  background: none;
  border: none;
  display: grid;
  gap: 6px;
  cursor: pointer;
  padding: 4px;
}

.hamburger span {
  height: 3px;
  background: #0f0f0f;
  border-radius: 999px;
}

.menu-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  display: none;
  align-items: flex-start;
  justify-content: flex-end;
  z-index: 50;
}

.menu-overlay.active {
  display: flex;
}

.menu-panel {
  width: min(380px, 90%);
  background: var(--dark);
  padding: 2rem;
  min-height: 100vh;
  box-shadow: -20px 0 40px rgba(0, 0, 0, 0.4);
  animation: slideIn 0.25s ease;
}

@keyframes slideIn {
  from {
    transform: translateX(40px);
    opacity: 0.4;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

.menu-panel__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
}

.menu-title {
  font-size: 1.1rem;
  letter-spacing: 0.2rem;
  text-transform: uppercase;
}

.menu-close {
  background: none;
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
  font-size: 0.75rem;
  padding: 0.4rem 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.18rem;
  cursor: pointer;
}

.menu-links {
  display: grid;
  gap: 1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08rem;
}

.menu-links a {
  padding-bottom: 0.4rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.menu-cta {
  margin-top: 2rem;
  display: grid;
  gap: 0.8rem;
}

.hero {
  position: relative;
  min-height: 75vh;
  display: grid;
  align-items: center;
  overflow: hidden;
}

.hero__media {
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(0, 0, 0, 0.75), rgba(0, 0, 0, 0.2)),
    url("https://images.unsplash.com/photo-1500530855697-b586d89ba3ee?auto=format&fit=crop&w=1600&q=80")
      center/cover no-repeat;
  z-index: 0;
}

.hero__content {
  position: relative;
  z-index: 1;
  padding: 6rem 0 7rem;
}

.hero__eyebrow {
  display: block;
  font-family: "Oswald", sans-serif;
  font-size: 2.2rem;
  line-height: 1.15;
  padding-top: 0.1em;
  margin-bottom: 0.35rem;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.2rem;
  text-shadow:
    1px 1px 0 #000,
    -1px 1px 0 #000,
    1px -1px 0 #000,
    -1px -1px 0 #000;
}

.hero h1 {
  font-family: "Oswald", sans-serif;
  font-size: clamp(2.2rem, 4vw, 3.6rem);
  text-transform: uppercase;
  margin-bottom: 1rem;
  letter-spacing: 0.03em;
  color: #fff;
  text-shadow:
    2px 2px 0 var(--accent),
    -2px 2px 0 var(--accent),
    2px -2px 0 var(--accent),
    -2px -2px 0 var(--accent);
}

.hero p {
  max-width: 560px;
  color: #e2e7ea;
  margin-bottom: 2rem;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.primary-btn,
.ghost-btn {
  padding: 0.85rem 1.8rem;
  border-radius: 999px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08rem;
  border: none;
  cursor: pointer;
}

.primary-btn {
  background: var(--accent);
  color: #101215;
}

.ghost-btn {
  background: transparent;
  border: 1px solid var(--accent);
  color: var(--accent);
}

.warning-btn {
  background: #f59e0b;
  color: #101215;
}

.success-btn {
  background: #10b981;
  color: #101215;
}

.quick-cards {
  padding: 4rem 0;
  background: #0d1014;
}

.quick-cards__grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.card {
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  min-height: 320px;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.35);
}

.card__media {
  position: absolute;
  inset: 0;
  background: linear-gradient(140deg, rgba(0, 0, 0, 0.75), rgba(0, 0, 0, 0.1));
  z-index: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.card__video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.card--b2b .card__media {
  background-image:
    linear-gradient(140deg, rgba(0, 0, 0, 0.75), rgba(0, 0, 0, 0.1)),
    url("https://images.unsplash.com/photo-1520975922284-5d11d5a98bb6?auto=format&fit=crop&w=1200&q=80");
  background-size: cover;
  background-position: center;
}

.card--b2c .card__media {
  background-image:
    linear-gradient(140deg, rgba(0, 0, 0, 0.75), rgba(0, 0, 0, 0.1)),
    url("https://images.unsplash.com/photo-1485965120184-e220f721d03e?auto=format&fit=crop&w=1200&q=80");
  background-size: cover;
  background-position: center;
}

.card--service .card__media {
  background-image:
    linear-gradient(140deg, rgba(0, 0, 0, 0.75), rgba(0, 0, 0, 0.15)),
    url("https://images.unsplash.com/photo-1503376780353-7e6692767b70?auto=format&fit=crop&w=1200&q=80");
  background-size: cover;
  background-position: center;
}

.card--size .card__media {
  background-image:
    linear-gradient(140deg, rgba(0, 0, 0, 0.75), rgba(0, 0, 0, 0.15)),
    url("https://images.unsplash.com/photo-1486262715619-67b85e0b08d3?auto=format&fit=crop&w=1200&q=80");
  background-size: cover;
  background-position: center;
}

.card--size-300ml-pouch .card__media {
  background-image:
    linear-gradient(140deg, rgba(0, 0, 0, 0.75), rgba(0, 0, 0, 0.15)),
    image-set(
      url("images/optimized/product-pouch-300ml.webp") type("image/webp"),
      url("images/optimized/product-pouch-300ml-fallback.jpg") type("image/jpeg")
    ),
    url("https://images.unsplash.com/photo-1572981779307-38b8cabb2407?auto=format&fit=crop&w=1200&q=80");
  background-size: cover, cover, cover;
  background-position: center, center, center;
}

.card--size-5l .card__media {
  background-image:
    linear-gradient(140deg, rgba(0, 0, 0, 0.75), rgba(0, 0, 0, 0.15)),
    image-set(
      url("images/optimized/product-5l.webp") type("image/webp"),
      url("images/optimized/product-5l-fallback.jpg") type("image/jpeg")
    ),
    url("https://images.unsplash.com/photo-1486262715619-67b85e0b08d3?auto=format&fit=crop&w=1200&q=80");
  background-size: cover, cover, cover;
  background-position: center, center, center;
}

.card--size-25l .card__media {
  background-image:
    linear-gradient(140deg, rgba(0, 0, 0, 0.75), rgba(0, 0, 0, 0.15)),
    image-set(
      url("images/optimized/product-25l.webp") type("image/webp"),
      url("images/optimized/product-25l-fallback.jpg") type("image/jpeg")
    ),
    url("https://images.unsplash.com/photo-1486262715619-67b85e0b08d3?auto=format&fit=crop&w=1200&q=80");
  background-size: cover, cover, cover;
  background-position: center, center, center;
}

.card--size-25l-heavy .card__media {
  background-image:
    linear-gradient(140deg, rgba(0, 0, 0, 0.75), rgba(0, 0, 0, 0.15)),
    image-set(
      url("images/optimized/product-25l-heavy.webp") type("image/webp"),
      url("images/optimized/product-25l-heavy-fallback.jpg") type("image/jpeg")
    ),
    url("https://images.unsplash.com/photo-1486262715619-67b85e0b08d3?auto=format&fit=crop&w=1200&q=80");
  background-size: cover, cover, cover;
  background-position: center, center, center;
}

.card--package .card__media {
  background-image: none;
  background-color: #000;
}

.card--package .card__video {
  object-fit: cover;
}

.card--package {
  min-height: 520px;
}

.card--package .card__content {
  min-height: 520px;
}

.card__content {
  position: relative;
  z-index: 1;
  padding: 0;
  display: grid;
  gap: 0.9rem;
  align-content: end;
  min-height: 320px;
}

.card__content-wrapper {
  padding: 2.4rem;
}

.card__tag {
  font-family: "Oswald", sans-serif;
  color: var(--accent);
  font-size: 1.4rem;
  letter-spacing: 0.18rem;
  text-transform: uppercase;
  text-shadow:
    1px 1px 0 #000,
    -1px 1px 0 #000,
    1px -1px 0 #000,
    -1px -1px 0 #000;
}

.card h3 {
  font-family: "Oswald", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.04rem;
  font-size: 1.25rem;
}

.card p {
  color: #c7ced4;
  max-width: 360px;
}

.card__price {
  font-family: "Oswald", sans-serif;
  font-size: 2rem;
  color: #ffffff;
  letter-spacing: 0.08rem;
  text-shadow:
    2px 2px 0 #000,
    -2px 2px 0 #000,
    2px -2px 0 #000,
    -2px -2px 0 #000;
}

.about {
  padding: 5rem 0;
}

.about__grid {
  display: grid;
  gap: 3rem;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  align-items: center;
}

.section-kicker {
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.3rem;
  font-size: 0.75rem;
  margin-bottom: 0.8rem;
}

.about h2 {
  font-family: "Oswald", sans-serif;
  font-size: 2.2rem;
  margin-bottom: 1rem;
  color: #fff;
  text-shadow:
    2px 2px 0 var(--accent),
    -2px 2px 0 var(--accent),
    2px -2px 0 var(--accent),
    -2px -2px 0 var(--accent);
}

.stats {
  display: flex;
  gap: 2rem;
  margin-top: 2rem;
  flex-wrap: wrap;
}

.stat__value {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--accent);
}

.stat__label {
  display: block;
  color: #b7c0c8;
  font-size: 0.85rem;
}

.brand-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
}

.brand {
  background: #12161b;
  padding: 1.2rem;
  border-radius: 12px;
  text-align: center;
  font-weight: 600;
  color: #e6ebee;
}

.news {
  padding: 5rem 0;
  background: #0d1014;
}

.section-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 1rem;
  margin-bottom: 2rem;
}

.section-head h2,
.booking-form h2,
.login-modal__header h2 {
  color: #fff;
  text-shadow:
    2px 2px 0 var(--accent),
    -2px 2px 0 var(--accent),
    2px -2px 0 var(--accent),
    -2px -2px 0 var(--accent);
}

.news-grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.news-grid article {
  background: #14191e;
  padding: 1.5rem;
  border-radius: 16px;
}

.news-thumb {
  height: 140px;
  border-radius: 12px;
  background: url("https://images.unsplash.com/photo-1519682577862-22b62b24e493?auto=format&fit=crop&w=800&q=80")
    center/cover no-repeat;
  margin-bottom: 1rem;
}

.news-thumb--two {
  background-image: url("https://images.unsplash.com/photo-1500530855697-b586d89ba3ee?auto=format&fit=crop&w=800&q=80");
}

.news-thumb--three {
  background-image: url("https://images.unsplash.com/photo-1485965120184-e220f721d03e?auto=format&fit=crop&w=800&q=80");
}

.news-thumb--package {
  background-image: url("images/package.jpg");
}

.site-footer {
  padding: 1.2rem 0 0.8rem;
  background: #0a0c0f;
}

.footer-grid {
  display: grid;
  gap: 1.5rem 2rem;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  margin-bottom: 0.8rem;
}

.footer-col h4 {
  margin-bottom: 0.4rem;
  text-transform: uppercase;
  letter-spacing: 0.1rem;
  font-size: 0.65rem;
  color: var(--accent);
  font-weight: 700;
}

.footer-col p {
  font-size: 0.75rem;
  line-height: 1.4;
  margin-bottom: 0.2rem;
}

.footer-col ul {
  list-style: none;
  display: grid;
  gap: 0.2rem;
  font-size: 0.75rem;
}

.socials {
  display: grid;
  gap: 0.2rem;
}

.social-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: #fff;
  font-weight: 600;
  font-size: 0.75rem;
}

.social-icon {
  width: 16px;
  height: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #0f0f0f;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.social-icon svg {
  width: 11px;
  height: 11px;
  fill: #ffffff;
}

.footer-bottom {
  text-align: center;
  padding-top: 0.8rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: #7f8790;
  font-size: 0.65rem;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.4rem;
  flex-wrap: wrap;
}

.footer-bottom a {
  color: var(--accent);
  font-weight: 600;
  text-decoration: none;
}

.footer-bottom a:hover {
  text-decoration: underline;
}

.booking-form {
  padding: 5rem 0;
  background: var(--black);
}

.booking-form__header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 3rem;
}

.booking-form__form {
  max-width: 700px;
  margin: 0 auto;
  background: var(--dark);
  padding: 3rem;
  border-radius: 20px;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4);
}

.booking-form__form--stack {
  max-width: 560px;
  margin: 0 auto;
  display: grid;
  gap: 0.95rem;
}

.booking-form__form--stack .form-group {
  margin-bottom: 0;
}

.booking-form__form--stack .form-group label {
  text-align: center;
}

.booking-form__form--stack .form-group input,
.booking-form__form--stack .form-group select,
.booking-form__form--stack .form-group textarea {
  text-align: left;
  border-radius: 10px;
}

.booking-form__form--stack .form-group select:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.booking-form__form--stack .primary-btn {
  margin-top: 0.35rem;
}

.form-row {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  margin-bottom: 1.5rem;
}

.form-group {
  display: grid;
  gap: 0.5rem;
}

.form-group label {
  font-weight: 600;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.08rem;
  color: #e2e7ea;
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 0.9rem 1.2rem;
  background: #0f0f0f;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  color: white;
  font-family: inherit;
  font-size: 1rem;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent);
}

.form-group textarea {
  resize: vertical;
}

.booking-form__form .primary-btn {
  width: 100%;
  margin-top: 1rem;
  padding: 1rem;
}

.login-modal,
.booking-modal {
  position: fixed;
  inset: 0;
  z-index: 220;
  display: none;
  align-items: center;
  justify-content: center;
}

.login-modal.active,
.booking-modal.active {
  display: flex;
}

.login-modal__overlay,
.booking-modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.8);
}

.login-modal__content,
.booking-modal__content {
  position: relative;
  z-index: 1;
  background: var(--dark);
  border-radius: 20px;
  padding: 4.1rem 3rem 3rem;
  max-width: 440px;
  width: 90%;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
  max-height: 90vh;
  overflow-y: auto;
}

.booking-modal__content {
  max-width: 600px;
}

.booking-modal__content .booking-form__form--stack {
  max-width: 100%;
  padding: 0;
  background: transparent;
  box-shadow: none;
}

.login-modal__content .login-modal__close,
.booking-modal__content .booking-modal__close {
  position: absolute;
  top: 0.5rem;
  right: 0.45rem;
  background: none;
  border: none;
  color: #fff;
  font-size: 1.8rem;
  padding: 0;
  line-height: 1;
  cursor: pointer;
  z-index: 3;
  width: 2rem;
  height: 2rem;
  min-height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.7;
  transition: opacity 0.2s;
  white-space: normal;
}

.login-modal__content .login-modal__close:hover,
.booking-modal__content .booking-modal__close:hover {
  opacity: 1;
}

.login-modal__header,
.booking-modal__header {
  text-align: center;
  padding-right: 3.5rem;
  margin-bottom: 2rem;
}

@media (min-width: 768px) {
  .login-modal__content .login-modal__close,
  .booking-modal__content .booking-modal__close {
    top: 1rem;
    right: 0.7rem;
  }

  .login-modal__header,
  .booking-modal__header {
    padding-right: 3.5rem;
  }
}

.login-modal__header h2 {
  font-family: "Oswald", sans-serif;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.login-form {
  display: grid;
  gap: 1.2rem;
}

.login-remember {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.9rem;
  color: #c7ced4;
}

.login-remember input {
  accent-color: var(--accent);
}

.signup-modal {
  position: fixed;
  inset: 0;
  z-index: 220;
  display: none;
  align-items: center;
  justify-content: center;
}

.signup-modal.active {
  display: flex;
}

.signup-modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.8);
}

.signup-modal__content {
  position: relative;
  z-index: 1;
  background: var(--dark);
  border-radius: 20px;
  padding: 4.1rem 3rem 3rem;
  max-width: 440px;
  width: 90%;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
  max-height: 90vh;
  overflow-y: auto;
}

.signup-modal__content .signup-modal__close {
  position: absolute;
  top: 0.5rem;
  right: 0.45rem;
  background: none;
  border: none;
  color: #fff;
  font-size: 1.8rem;
  padding: 0;
  line-height: 1;
  cursor: pointer;
  z-index: 3;
  width: 2rem;
  height: 2rem;
  min-height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.7;
  transition: opacity 0.2s;
  white-space: normal;
}

.signup-modal__content .signup-modal__close:hover {
  opacity: 1;
}

.signup-modal__header {
  text-align: center;
  padding-right: 3.5rem;
  margin-bottom: 2rem;
}

@media (min-width: 768px) {
  .signup-modal__content .signup-modal__close {
    top: 1rem;
    right: 0.7rem;
  }

  .signup-modal__header {
    padding-right: 3.5rem;
  }
}

.signup-modal__header h2 {
  font-family: "Oswald", sans-serif;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.signup-form {
  display: grid;
  gap: 1.2rem;
}

.signup-remember {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.9rem;
  color: #c7ced4;
}

.signup-remember input {
  accent-color: var(--accent);
}

.signup-options {
  text-align: center;
  font-size: 0.9rem;
  color: #c7ced4;
  margin-top: 1rem;
}

.login-options,
.signup-options {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  text-align: center;
  font-size: 0.9rem;
}

.login-options a,
.signup-options a {
  color: var(--accent);
  text-decoration: none;
}

.login-options a:hover,
.signup-options a:hover {
  text-decoration: underline;
}

.form-group small {
  display: block;
  font-size: 0.8rem;
  color: #999;
  margin-top: 0.3rem;
}

.toast-container {
  position: fixed;
  top: 24px;
  right: 24px;
  display: grid;
  gap: 0.75rem;
  z-index: 120;
}

.toast {
  background: #0f0f0f;
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #fff;
  padding: 0.9rem 1.1rem;
  border-radius: 12px;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.25);
  max-width: 320px;
  opacity: 0;
  transform: translateY(-8px);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.toast--show {
  opacity: 1;
  transform: translateY(0);
}

.toast--success {
  border-color: rgba(34, 197, 94, 0.6);
  box-shadow: 0 12px 24px rgba(34, 197, 94, 0.2);
}

.toast--error {
  border-color: rgba(220, 38, 38, 0.6);
  box-shadow: 0 12px 24px rgba(220, 38, 38, 0.25);
}

.toast__link {
  color: var(--accent);
  font-weight: 700;
  text-decoration: underline;
  margin-left: 0.35rem;
}

.whatsapp-float {
  position: fixed;
  bottom: 30px;
  left: 30px;
  width: 60px;
  height: 60px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  z-index: 90;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  color: #fff;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

.whatsapp-float svg {
  width: 32px;
  height: 32px;
}

.login-options {
  text-align: center;
  margin-top: 1rem;
  display: grid;
  gap: 0.4rem;
}

.login-options a {
  color: var(--accent);
  font-size: 0.9rem;
}

.link-btn {
  background: none;
  border: none;
  padding: 0;
  color: var(--accent);
  font-size: 0.9rem;
  font-family: inherit;
  cursor: pointer;
}

.cart-page {
  padding: 4rem 0 6rem;
  background: var(--black);
}

.cart-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
  flex-wrap: wrap;
  gap: 1rem;
}

.continue-shopping-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.7rem 1.2rem;
  background: transparent;
  border: 2px solid var(--accent);
  color: var(--accent);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08rem;
  font-size: 0.85rem;
  border-radius: 8px;
  transition: all 0.2s ease;
}

.continue-shopping-btn:hover {
  background: var(--accent);
  color: white;
}

.continue-shopping-btn svg {
  transition: transform 0.2s ease;
}

.continue-shopping-btn:hover svg {
  transform: translateX(-3px);
}

.cart-grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: 2fr 1fr;
}

.cart-items,
.checkout-panel {
  background: var(--dark);
  padding: 2rem;
  border-radius: 20px;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4);
}

.cart-item {
  display: grid;
  grid-template-columns: 1.6fr 0.6fr 0.6fr;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.cart-item:last-child {
  border-bottom: none;
}

.cart-item__info {
  display: flex;
  gap: 1rem;
  align-items: center;
}

.cart-item__image {
  width: 72px;
  height: 72px;
  border-radius: 12px;
  object-fit: cover;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.cart-item__name {
  font-weight: 600;
  margin-bottom: 0.2rem;
}

.cart-item__price {
  color: #c7ced4;
  font-size: 0.9rem;
}

.cart-item__qty {
  display: flex;
  gap: 0.5rem;
  align-items: center;
}

.cart-item__qty button {
  background: #0f0f0f;
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #fff;
  width: 32px;
  height: 32px;
  border-radius: 6px;
  cursor: pointer;
}

.cart-summary {
  margin-top: 1.5rem;
  display: grid;
  gap: 0.6rem;
}

.cart-summary__row {
  display: flex;
  justify-content: space-between;
  font-weight: 600;
}

.checkout-panel h2 {
  margin-bottom: 1rem;
}

.payment-options {
  display: grid;
  gap: 1rem;
  margin-top: 1.5rem;
}

.payment-option {
  background: #0f0f0f;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 1rem;
}

.payment-option h3 {
  font-family: "Oswald", sans-serif;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.payment-option p {
  color: #c7ced4;
  font-size: 0.95rem;
}

.news-article {
  padding: 4rem 0 6rem;
  background: var(--black);
}

.article-meta {
  color: #c7ced4;
  margin-bottom: 2rem;
  text-transform: uppercase;
  letter-spacing: 0.12rem;
  font-size: 0.85rem;
}

.article-back {
  display: inline-block;
  margin-bottom: 1.2rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12rem;
  color: #0f0f0f;
  background: #ffffff;
  padding: 0.4rem 0.9rem;
  border-radius: 999px;
}

.article-body {
  display: grid;
  gap: 1.4rem;
  max-width: 800px;
}

.article-body h2 {
  font-family: "Oswald", sans-serif;
  text-transform: uppercase;
  color: #fff;
  text-shadow:
    2px 2px 0 var(--accent),
    -2px 2px 0 var(--accent),
    2px -2px 0 var(--accent),
    -2px -2px 0 var(--accent);
}

.article-body ol {
  padding-left: 1.2rem;
  display: grid;
  gap: 0.8rem;
}

@media (max-width: 780px) {
  .utility-bar__inner {
    justify-content: center;
    flex-wrap: nowrap;
    gap: 0.7rem;
    padding: 0.45rem 0.85rem;
  }

  .site-header__inner {
    padding: 1.25rem 0.55rem;
  }

  .hero__content {
    padding: 4.5rem 0 5rem;
  }

  .section-head {
    flex-direction: column;
    align-items: flex-start;
  }

  .booking-form__form {
    padding: 2rem;
  }

  .logo__image {
    width: 220px;
    max-height: 82px;
  }

  .login-modal__content,
  .booking-modal__content,
  .signup-modal__content {
    padding: 2rem;
  }

  .cart-grid {
    grid-template-columns: 1fr;
  }

  .cart-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .continue-shopping-btn {
    width: 100%;
    justify-content: center;
  }

  .form-group {
    margin-bottom: 1rem;
  }

  .form-group input,
  .form-group textarea,
  .form-group select {
    font-size: 16px;
    padding: 0.8rem;
    width: 100%;
  }

  .primary-btn,
  .ghost-btn,
  button[type="submit"] {
    font-size: 0.95rem;
    padding: 0.9rem 1.5rem;
    min-height: 44px;
  }

  .toast-container {
    top: 16px;
    right: 16px;
    left: 16px;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 1.2rem 1.5rem;
  }

  .footer-col h4 {
    font-size: 0.6rem;
  }

  .footer-col p,
  .footer-col ul {
    font-size: 0.7rem;
  }

  .social-link {
    font-size: 0.7rem;
  }

  .whatsapp-float {
    width: 50px;
    height: 50px;
    bottom: 20px;
    left: 20px;
  }

  .whatsapp-float svg {
    width: 26px;
    height: 26px;
  }
}

@media (max-width: 600px) {
  body {
    font-size: 15px;
  }

  .logo__image {
    width: 185px;
    max-height: 70px;
  }

  h1 {
    font-size: 1.6rem;
    line-height: 1.2;
    word-break: break-word;
  }

  h2 {
    font-size: 1.3rem;
    word-break: break-word;
  }

  h3 {
    font-size: 1rem;
  }

  .section-kicker {
    font-size: 0.7rem;
  }

  p {
    font-size: 0.9rem;
  }

  input,
  textarea,
  select {
    font-size: 16px !important;
  }

  .form-group {
    margin-bottom: 1.2rem;
  }

  .form-group input,
  .form-group textarea,
  .form-group select {
    padding: 0.9rem;
    min-height: 44px;
    border-radius: 8px;
  }

  .primary-btn,
  .ghost-btn,
  button[type="submit"],
  .link-btn {
    font-size: 0.95rem;
    padding: 0.9rem 1.2rem;
    min-height: 48px;
    width: 100%;
  }

  .cart-item {
    grid-template-columns: 1fr;
    gap: 0.8rem;
    padding: 0.8rem 0;
  }

  .cart-item__info {
    gap: 0.8rem;
  }

  .cart-item__image {
    width: 60px;
    height: 60px;
  }

  .cart-item__name {
    font-size: 0.9rem;
  }

  .cart-item__qty {
    justify-content: flex-start;
  }

  .cart-item__total {
    font-size: 1.1rem;
    font-weight: 700;
  }

  .hero__actions {
    flex-direction: column;
    align-items: stretch;
    gap: 1rem;
  }

  .hero__actions .primary-btn,
  .hero__actions .ghost-btn {
    width: 100%;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 1.2rem 1rem;
  }

  .footer-bottom {
    font-size: 0.6rem;
    gap: 0.3rem;
  }

  .login-modal__content,
  .booking-modal__content,
  .signup-modal__content {
    width: 92%;
    max-width: 100%;
  }

  .form-group label {
    font-size: 0.9rem;
  }

  .form-group small {
    font-size: 0.75rem;
  }
}

@media (max-width: 480px) {
  * {
    box-sizing: border-box;
  }

  body {
    font-size: 14px;
    margin: 0;
    padding-top: var(--sticky-total-height);
    padding-right: 0;
    padding-bottom: 0;
    padding-left: 0;
  }

  .container {
    width: 100%;
    padding: 0 0.75rem;
    margin: 0;
  }

  h1 {
    font-size: 1.4rem;
    margin: 0.5rem 0;
  }

  h2 {
    font-size: 1.1rem;
    word-break: break-word;
  }

  h3 {
    font-size: 0.95rem;
  }

  p {
    font-size: 0.85rem;
    line-height: 1.5;
  }

  .section-kicker {
    font-size: 0.6rem;
    letter-spacing: 0.05rem;
  }

  input,
  textarea,
  select {
    font-size: 16px !important;
    -webkit-appearance: none;
    appearance: none;
  }

  input[type="checkbox"],
  input[type="radio"] {
    width: 18px;
    height: 18px;
    cursor: pointer;
  }

  .form-group {
    margin-bottom: 1.2rem;
    width: 100%;
  }

  .form-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    word-break: break-word;
  }

  .form-group input,
  .form-group textarea,
  .form-group select {
    width: 100%;
    padding: 0.8rem;
    min-height: 44px;
    border-radius: 6px;
    font-size: 16px;
    border: 1px solid rgba(0, 0, 0, 0.1);
  }

  .form-group textarea {
    min-height: 100px;
    resize: vertical;
  }

  .primary-btn,
  .ghost-btn,
  .link-btn,
  button[type="submit"],
  button[type="button"] {
    font-size: 0.9rem;
    padding: 0.85rem 1rem;
    min-height: 48px;
    width: 100%;
    border-radius: 8px;
    cursor: pointer;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .cart-badge {
    min-width: 18px;
    height: 18px;
    font-size: 0.6rem;
    top: -8px;
    right: -8px;
  }

  .hamburger {
    width: 38px;
    height: 32px;
    gap: 4px;
  }

  .hamburger span {
    height: 2px;
  }

  .cart-link {
    width: 50px;
    height: 50px;
  }

  .cart-icon {
    width: 20px;
    height: 20px;
  }

  .header-actions {
    gap: 0.6rem;
  }

  .hero__content {
    padding: 2rem 0 2.5rem;
  }

  .section-head {
    flex-direction: column;
    gap: 1rem;
  }

  .section-head h2 {
    font-size: 1.2rem;
  }

  .hero__actions {
    flex-direction: column;
    gap: 0.8rem;
  }

  .hero {
    align-items: start;
    min-height: auto;
  }

  .hero__content {
    padding: 3rem 0 2.4rem;
  }

  .hero__eyebrow {
    font-size: 1.95rem;
    line-height: 1.2;
    margin-bottom: 0.45rem;
  }

  .hero__actions .primary-btn,
  .hero__actions .ghost-btn {
    width: 100%;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem 0;
  }

  .footer-col h4 {
    font-size: 0.8rem;
    margin-bottom: 0.6rem;
  }

  .footer-col p,
  .footer-col ul {
    font-size: 0.75rem;
    line-height: 1.6;
  }

  .footer-col li {
    margin-bottom: 0.3rem;
  }

  .footer-bottom {
    font-size: 0.65rem;
    gap: 0.5rem;
  }

  .social-link {
    font-size: 0.75rem;
  }

  .login-modal__content,
  .booking-modal__content,
  .signup-modal__content {
    width: 95%;
    padding: 3.2rem 1.5rem 1.5rem;
    max-height: 90vh;
    max-width: none;
  }

  .login-modal__content .login-modal__close,
  .booking-modal__content .booking-modal__close,
  .signup-modal__content .signup-modal__close {
    font-size: 1.1rem;
    padding: 0;
    width: 1.8rem;
    height: 1.8rem;
    min-height: auto;
    top: 0.5rem;
    right: 0.35rem;
  }

  .login-modal__header,
  .booking-modal__header,
  .signup-modal__header {
    padding-right: 4.6rem;
  }

  .login-modal__header h2,
  .booking-modal__header h2,
  .signup-modal__header h2 {
    font-size: 1.1rem;
  }

  .login-modal__header p,
  .booking-modal__header p,
  .signup-modal__header p {
    font-size: 0.85rem;
  }

  .login-form,
  .signup-form,
  .booking-form__form {
    gap: 1rem;
  }

  .login-remember,
  .signup-remember {
    font-size: 0.8rem;
    gap: 0.5rem;
  }

  .login-options,
  .signup-options {
    font-size: 0.8rem;
    gap: 0.6rem;
    margin-top: 0.8rem;
  }

  .login-options a,
  .signup-options a,
  .signup-options button {
    font-size: 0.8rem;
  }

  .toast-container {
    top: 10px;
    right: 10px;
    left: 10px;
    z-index: 120;
  }

  .toast {
    max-width: 100%;
    font-size: 0.85rem;
    padding: 0.75rem 1rem;
  }

  .whatsapp-float {
    width: 50px;
    height: 50px;
    bottom: 20px;
    left: 20px;
  }

  .whatsapp-float svg {
    width: 26px;
    height: 26px;
  }

  /* Ensure no horizontal scroll */
  body,
  html {
    overflow-x: hidden;
    width: 100%;
  }
}

/* Keep menu above sticky nav layers */
.menu-overlay {
  z-index: 120;
}
