:root {
  --bg: #edf8ee;
  --surface: #f8fff6;
  --text: #163322;
  --muted: #2f5b43;
  --accent: #2f8f46;
  --brand-gold: #c8a44e;
  --brand-cream: #f2ebd5;
  --brand-deep: #0f3e2c;
  --olive: #3f8f61;
  --olive-dark: #2a6d48;
  --olive-light: #63b27f;
  --radius: 14px;
  --shadow: 0 12px 28px rgba(24, 64, 40, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Poppins", "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  background: linear-gradient(160deg, #e5f5e6 0%, var(--bg) 45%, #dff1e3 100%);
  color: var(--text);
  overflow-x: hidden;
}

.page {
  width: 100%;
  display: grid;
  gap: 0;
  position: relative;
}

.site-header {
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  display: grid;
  grid-template-columns: 1fr auto;
  grid-template-areas:
    "brand actions"
    "nav nav";
  align-items: center;
  gap: 0.7rem;
  min-height: 86px;
  padding: 0.9rem 1rem;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
}

.brand {
  grid-area: brand;
  display: flex;
  align-items: center;
  justify-self: start;
  gap: 0.6rem;
  text-decoration: none;
  color: #fff;
  min-width: 0;
  max-width: 100%;
}

.brand-logo {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(255, 255, 255, 0.4);
  flex-shrink: 0;
}

.brand-name {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 600;
  font-size: 1.05rem;
  letter-spacing: 0.03em;
  line-height: 1.1;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: min(52vw, 220px);
  color: #fff;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.25);
}

.header-right {
  grid-area: actions;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.6rem;
  min-width: 0;
  flex-shrink: 0;
}

.auth-slot {
  display: flex;
  align-items: center;
  position: relative;
}

.site-nav {
  grid-area: nav;
  display: none;
  width: 100%;
  flex-direction: column;
  justify-content: flex-start;
  gap: 0.45rem;
  white-space: normal;
  padding: 0.5rem 0 0.2rem;
}

.site-nav.is-open {
  display: flex;
}

.site-nav a {
  position: relative;
  text-decoration: none;
  font-weight: 400;
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #fff;
  padding: 0.42rem 0.78rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  background: rgba(255, 255, 255, 0.12);
  transition: background 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.nav-toggle-btn {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.55);
  background: rgba(255, 255, 255, 0.16);
  display: inline-grid;
  align-content: center;
  justify-items: center;
  gap: 4px;
  cursor: pointer;
}

.nav-toggle-bar {
  width: 18px;
  height: 2px;
  border-radius: 99px;
  background: #fff;
  display: block;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 16%;
  bottom: 0.24rem;
  width: 68%;
  height: 2px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.95);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.24s ease;
}

.site-nav a:hover {
  background: rgba(255, 255, 255, 0.22);
  border-color: rgba(255, 255, 255, 0.45);
}

.site-nav a:hover::after {
  transform: scaleX(1);
}

.site-nav .nav-cta {
  font-weight: 700;
  color: #0f3e2c;
  background: linear-gradient(135deg, #d5f5de 0%, #a7e7bb 100%);
  border-color: #b9edc8;
}

.site-nav .nav-cta::after {
  background: rgba(15, 62, 44, 0.85);
}

.site-nav .nav-cta:hover {
  background: linear-gradient(135deg, #def9e5 0%, #b6efc9 100%);
  box-shadow: 0 0 0 2px rgba(163, 238, 189, 0.35), 0 8px 20px rgba(62, 179, 110, 0.4);
  transform: translateY(-1px);
}

.login-btn {
  border: 1px solid #fff;
  border-radius: 999px;
  padding: 0.55rem 0.95rem;
  font-weight: 500;
  background: #fff;
  color: var(--olive-dark);
  cursor: pointer;
  flex-shrink: 0;
  min-height: 40px;
}

.login-btn:hover {
  background: #f3f7ef;
}

.profile-chip {
  border: 1px solid #fff;
  border-radius: 999px;
  padding: 0.25rem 0.7rem 0.25rem 0.3rem;
  font-weight: 600;
  background: #fff;
  color: var(--olive-dark);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  min-height: 40px;
}

.profile-chip[hidden] {
  display: none;
}

.profile-avatar {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: inline-grid;
  place-items: center;
  font-size: 0.76rem;
  color: #fff;
  background: linear-gradient(135deg, #3f8f61, #2a6d48);
}

.profile-label {
  font-size: 0.78rem;
}

.profile-menu {
  position: absolute;
  top: calc(100% + 0.5rem);
  right: 0;
  width: 170px;
  border-radius: 12px;
  border: 1px solid #c6e8cf;
  background: #fff;
  box-shadow: 0 12px 28px rgba(17, 59, 35, 0.2);
  padding: 0.35rem;
  display: grid;
  gap: 0.25rem;
  z-index: 35;
}

.profile-menu[hidden] {
  display: none;
}

.profile-menu-item {
  border: 0;
  background: #fff;
  color: #18432e;
  font: inherit;
  font-size: 0.88rem;
  font-weight: 500;
  text-align: left;
  border-radius: 8px;
  padding: 0.52rem 0.6rem;
  cursor: pointer;
  min-height: 40px;
}

.profile-menu-item:hover {
  background: #ecf8f0;
}

.profile-menu-item-danger {
  color: #a32727;
}

.profile-menu-item-danger:hover {
  background: #fdeeee;
}

.cart-btn {
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 999px;
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  padding: 0;
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
  cursor: pointer;
  flex-shrink: 0;
  position: relative;
}

.cart-btn:hover {
  background: rgba(255, 255, 255, 0.24);
  border-color: rgba(255, 255, 255, 0.6);
}

.cart-icon {
  width: 18px;
  height: 18px;
  stroke: currentColor;
  stroke-width: 1.8;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.cart-count {
  position: absolute;
  top: -6px;
  right: -6px;
  min-width: 18px;
  height: 18px;
  border-radius: 999px;
  background: #f6e9c5;
  border: 1px solid #e9d49a;
  color: #0f3e2c;
  font-size: 0.66rem;
  font-weight: 700;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 4px;
}

.shell {
  width: 100%;
  background: var(--surface);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 1rem;
  border: 1px solid #cfe8d3;
}

.textured-shell {
  background-image: linear-gradient(rgba(248, 255, 246, 0.95), rgba(248, 255, 246, 0.95)), url("./assets/images/green-pattern.svg");
  background-size: auto, 340px;
  background-position: center, right -70px bottom -80px;
  background-repeat: no-repeat, no-repeat;
}

.content {
  display: grid;
  gap: 0.75rem;
}

.section-block {
  scroll-margin-top: 1rem;
}

.hero {
  min-height: 92vh;
  display: grid;
  place-items: center;
  text-align: center;
  position: relative;
  overflow: hidden;
  padding: 8.4rem 1rem 2.2rem;
  background-image:
    linear-gradient(180deg, rgba(9, 26, 18, 0.62) 0%, rgba(12, 32, 22, 0.58) 42%, rgba(11, 27, 19, 0.72) 100%),
    url("./assets/images/hero-salad-bg.svg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero-overlay {
  width: min(100%, 52rem);
  color: #fff;
  position: relative;
  z-index: 2;
}

.hero-art {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
}

.hero-art-item {
  position: absolute;
  opacity: 0.85;
  filter: drop-shadow(0 14px 24px rgba(15, 45, 30, 0.35));
}

.hero-art-left {
  width: clamp(120px, 20vw, 220px);
  left: clamp(8px, 4vw, 48px);
  bottom: clamp(24px, 9vh, 120px);
  animation: floaty 6s ease-in-out infinite;
}

.hero-art-right {
  width: clamp(140px, 22vw, 250px);
  right: clamp(10px, 3.5vw, 52px);
  top: clamp(92px, 18vh, 180px);
  animation: floaty 7s ease-in-out infinite 0.6s;
}

.hero-kicker {
  display: inline-block;
  margin-bottom: 0.65rem;
  padding: 0.34rem 0.72rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.45);
  background: rgba(255, 255, 255, 0.16);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.hero h1 {
  margin: 0;
  font-size: clamp(2rem, 7vw, 4.6rem);
  line-height: 1.08;
  color: #fff;
}

.highlight-word {
  position: relative;
  display: inline-block;
  color: #d8f7e2;
  text-shadow: 0 2px 12px rgba(133, 241, 175, 0.45);
}

.highlight-word::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0.06em;
  height: 0.22em;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(135, 231, 167, 0.42), rgba(198, 255, 219, 0.52));
  z-index: -1;
}

.hero p {
  margin: 0.9rem auto 0;
  max-width: 58ch;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(1rem, 2.2vw, 1.2rem);
}

.hero-cta {
  display: inline-block;
  margin-top: 1.25rem;
  padding: 0.82rem 1.4rem;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  letter-spacing: 0.03em;
  color: #0f3e2c;
  background: linear-gradient(135deg, #e3faea 0%, #b9f0ca 100%);
  border: 1px solid #c8f0d3;
  box-shadow: 0 10px 24px rgba(48, 150, 92, 0.35);
}

.hero-cta:hover {
  background: linear-gradient(135deg, #edfcf1 0%, #c8f4d6 100%);
  box-shadow: 0 0 0 2px rgba(192, 246, 212, 0.42), 0 14px 30px rgba(57, 170, 106, 0.45);
}

@keyframes floaty {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
  100% {
    transform: translateY(0);
  }
}

@keyframes tgcPulse {
  0% {
    box-shadow: 0 0 0 0 rgba(63, 143, 97, 0.35);
  }
  70% {
    box-shadow: 0 0 0 8px rgba(63, 143, 97, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(63, 143, 97, 0);
  }
}

.tag {
  display: inline-block;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--accent);
  background: #ddf5e3;
  border: 1px solid #b9e5c3;
  padding: 0.3rem 0.55rem;
  border-radius: 999px;
  margin-bottom: 0.75rem;
}

h1 {
  margin: 0;
  font-size: clamp(1.45rem, 5vw, 2.4rem);
  line-height: 1.2;
}

h2 {
  margin: 0;
  font-size: clamp(1.25rem, 4vw, 2rem);
  line-height: 1.2;
}

p {
  margin: 0.75rem 0 0;
  color: var(--muted);
  max-width: 60ch;
}

.placeholder {
  margin-top: 1.25rem;
  border: 2px dashed #a9d8b3;
  border-radius: calc(var(--radius) - 4px);
  min-height: 180px;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 1rem;
  color: #2f6a49;
  background: #eef9ef;
}

.products-grid {
  margin-top: 1.25rem;
  display: grid;
  grid-template-columns: repeat(1, minmax(0, 1fr));
  gap: 1.2rem;
}

.days-selector-shell {
  border: 1px solid #c5e5cf;
  background: linear-gradient(140deg, rgba(245, 255, 248, 0.94), rgba(224, 246, 232, 0.92));
  transition: box-shadow 0.25s ease, border-color 0.25s ease;
}

.days-selector-shell.is-highlighted {
  border-color: #2f8f46;
  box-shadow: 0 0 0 3px rgba(63, 143, 97, 0.18), 0 12px 28px rgba(38, 97, 63, 0.14);
}

.days-selector-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 0.9rem;
}

.days-option-btn {
  border: 1px solid #9bcfb0;
  border-radius: 999px;
  padding: 0.5rem 0.95rem;
  background: #fff;
  color: #21583b;
  font: inherit;
  font-size: 0.86rem;
  font-weight: 600;
  cursor: pointer;
  min-height: 40px;
}

.days-option-btn:hover {
  background: #f2fbf5;
}

.days-option-btn.is-active {
  border-color: #2f8f46;
  color: #fff;
  background: linear-gradient(135deg, #3f8f61, #2a6d48);
}

.is-focus-pulse {
  animation: tgcPulse 1.1s ease-in-out 2;
}

.days-selector-hint {
  margin-top: 0.65rem;
  font-size: 0.9rem;
}

.weekday-selector {
  margin-top: 0.95rem;
  border-top: 1px dashed #b6dcc3;
  padding-top: 0.85rem;
}

.weekday-title {
  margin: 0;
  font-size: 0.92rem;
  color: #20553a;
  font-weight: 600;
}

.weekday-row {
  margin-top: 0.6rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.weekday-option-btn {
  border: 1px solid #9bcfb0;
  border-radius: 10px;
  min-width: 58px;
  padding: 0.45rem 0.65rem;
  background: #fff;
  color: #1f563a;
  font: inherit;
  font-size: 0.84rem;
  font-weight: 600;
  cursor: pointer;
  min-height: 40px;
}

.weekday-option-btn:hover {
  background: #f2fbf5;
}

.weekday-option-btn.is-active {
  border-color: #2f8f46;
  color: #fff;
  background: linear-gradient(135deg, #3f8f61, #2a6d48);
}

.weekday-status {
  margin-top: 0.55rem;
  font-size: 0.84rem;
  color: #2d674a;
}

.weekday-status.is-warning {
  color: #9b5b11;
}

.weekday-summary {
  margin-top: 0.2rem;
  font-size: 0.84rem;
  color: #2d674a;
}

.product-item {
  display: grid;
  justify-items: center;
  text-align: center;
  gap: 0.7rem;
}

.product-logo-blank {
  width: clamp(130px, 30vw, 190px);
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  border: 2px dashed #97cba7;
  background:
    radial-gradient(circle at 30% 28%, rgba(255, 255, 255, 0.8), rgba(240, 251, 244, 0.95) 52%, rgba(220, 244, 228, 0.9) 100%);
  box-shadow: inset 0 6px 18px rgba(53, 118, 81, 0.12);
}

.product-logo-wrap {
  overflow: hidden;
}

.product-logo-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.product-item h3 {
  margin: 0;
  font-size: 1rem;
  color: #1f563a;
  font-weight: 600;
}

.days-inline {
  margin: 0;
  font-size: 0.86rem;
  color: #2d674a;
}

.subscription-grid {
  margin-top: 1.1rem;
  display: grid;
  grid-template-columns: repeat(1, minmax(0, 1fr));
  gap: 1rem;
}

.subscription-card {
  border: 1px solid #bfe1ca;
  border-radius: 16px;
  padding: 1rem;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.9), rgba(233, 248, 238, 0.92));
  box-shadow: 0 10px 24px rgba(38, 97, 63, 0.11);
  display: flex;
  flex-direction: column;
  height: 100%;
  gap: 0.55rem;
}

.subscription-card-featured {
  border-color: #7cc294;
  background: linear-gradient(145deg, rgba(231, 253, 239, 0.98), rgba(203, 241, 218, 0.95));
  box-shadow: 0 14px 30px rgba(35, 112, 67, 0.18);
}

.subscription-badge {
  margin: 0;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #2f7f53;
}

.subscription-card h3 {
  margin: 0;
  font-size: 1.35rem;
  color: #17432d;
}

.subscription-days {
  margin: 0;
  font-size: 0.86rem;
  color: #2d674a;
}

.subscription-toggle {
  margin: 0.05rem 0 0;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  width: fit-content;
  cursor: pointer;
  color: #245b3e;
  font-size: 0.84rem;
  font-weight: 600;
  user-select: none;
}

.nonveg-toggle,
.smoothie-toggle,
.shots-toggle {
  appearance: none;
  -webkit-appearance: none;
  width: 44px;
  height: 24px;
  border-radius: 999px;
  border: 1px solid #9fcfb0;
  background: #e6f3ea;
  position: relative;
  cursor: pointer;
  transition: background-color 0.2s ease, border-color 0.2s ease;
}

.nonveg-toggle::before,
.smoothie-toggle::before,
.shots-toggle::before {
  content: "";
  position: absolute;
  top: 2px;
  left: 2px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 1px 4px rgba(20, 62, 41, 0.2);
  transition: transform 0.2s ease;
}

.nonveg-toggle:checked,
.smoothie-toggle:checked,
.shots-toggle:checked {
  background: linear-gradient(135deg, #3f8f61, #2a6d48);
  border-color: #2f8f46;
}

.nonveg-toggle:checked::before,
.smoothie-toggle:checked::before,
.shots-toggle:checked::before {
  transform: translateX(20px);
}

.nonveg-toggle:focus-visible,
.smoothie-toggle:focus-visible,
.shots-toggle:focus-visible {
  outline: 2px solid rgba(47, 143, 70, 0.35);
  outline-offset: 2px;
}

.subscription-price {
  margin: 0.1rem 0 0;
  font-size: 1.5rem;
  font-weight: 700;
  color: #0f3e2c;
  line-height: 1.2;
}

.subscription-price span {
  font-size: 0.85rem;
  font-weight: 500;
  color: #2c6547;
}

.subscription-copy {
  margin: 0.05rem 0 0;
  font-size: 0.92rem;
  color: #2e6247;
}

.subscription-btn {
  margin-top: auto;
  border: 0;
  border-radius: 999px;
  padding: 0.62rem 1rem;
  font: inherit;
  font-size: 0.86rem;
  font-weight: 700;
  color: #fff;
  background: linear-gradient(135deg, #3f8f61, #2a6d48);
  cursor: pointer;
  min-height: 42px;
}

.subscription-btn:hover {
  filter: brightness(1.06);
}

body.modal-open {
  overflow: hidden;
}

.otp-modal {
  position: fixed;
  inset: 0;
  z-index: 50;
  display: grid;
  place-items: center;
  padding: 1rem;
}

.otp-modal[hidden] {
  display: none;
}

.otp-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(8, 26, 16, 0.56);
}

.otp-dialog {
  width: min(100%, 420px);
  border-radius: 18px;
  background: #f7fff9;
  border: 1px solid #bde4c8;
  box-shadow: 0 18px 42px rgba(17, 59, 35, 0.28);
  padding: 1.4rem;
  position: relative;
  z-index: 1;
  max-height: min(90vh, 680px);
  overflow-y: auto;
}

.otp-dialog h2 {
  margin-bottom: 0.5rem;
}

.otp-dialog p {
  margin-top: 0;
}

.otp-close-btn {
  position: absolute;
  top: 0.7rem;
  right: 0.8rem;
  width: 30px;
  height: 30px;
  border-radius: 999px;
  border: 1px solid #c6e8cf;
  background: #fff;
  color: #2a6d48;
  cursor: pointer;
}

.otp-label {
  display: block;
  margin-top: 0.95rem;
  margin-bottom: 0.35rem;
  font-size: 0.82rem;
  font-weight: 600;
  color: #1f563a;
}

.otp-input {
  width: 100%;
  border-radius: 10px;
  border: 1px solid #b8dcc3;
  padding: 0.72rem 0.8rem;
  font: inherit;
  color: #17432d;
  background: #fff;
}

.otp-input:focus {
  outline: 2px solid rgba(63, 143, 97, 0.35);
  border-color: #58a377;
}

.otp-message {
  min-height: 1.3em;
  margin: 0.55rem 0 0;
  font-size: 0.86rem;
  color: #2f6a49;
}

.otp-message.is-error {
  color: #af2e2e;
}

.otp-action-btn {
  margin-top: 0.78rem;
  width: 100%;
  border: 0;
  border-radius: 999px;
  padding: 0.72rem 1rem;
  font-weight: 700;
  color: #fff;
  background: linear-gradient(135deg, #3f8f61, #2a6d48);
  cursor: pointer;
}

.otp-action-btn:hover {
  filter: brightness(1.05);
}

.orders-modal {
  position: fixed;
  inset: 0;
  z-index: 55;
  display: grid;
  place-items: center;
  padding: 1rem;
}

.orders-modal[hidden] {
  display: none;
}

.orders-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(8, 26, 16, 0.56);
}

.orders-dialog {
  width: min(100%, 520px);
  min-height: 320px;
  border-radius: 18px;
  background: #f7fff9;
  border: 1px solid #bde4c8;
  box-shadow: 0 18px 42px rgba(17, 59, 35, 0.28);
  padding: 1.2rem;
  position: relative;
  z-index: 1;
  max-height: min(90vh, 680px);
  overflow-y: auto;
}

.orders-close-btn {
  position: absolute;
  top: 0.7rem;
  right: 0.8rem;
  width: 30px;
  height: 30px;
  border-radius: 999px;
  border: 1px solid #c6e8cf;
  background: #fff;
  color: #2a6d48;
  cursor: pointer;
}

.orders-placeholder {
  margin-top: 1rem;
  border: 1px solid #b7dbc4;
  border-radius: 12px;
  min-height: 220px;
  padding: 1rem;
  color: #2f6a49;
  background: linear-gradient(145deg, #f4fff7, #eaf8ef);
  display: grid;
  gap: 0.7rem;
}

.proceed-pay-btn {
  width: 100%;
  margin-top: 0.9rem;
  border: 0;
  border-radius: 999px;
  padding: 0.78rem 1rem;
  font: inherit;
  font-size: 0.9rem;
  font-weight: 700;
  color: #fff;
  background: linear-gradient(135deg, #3f8f61, #2a6d48);
  box-shadow: 0 10px 20px rgba(38, 102, 64, 0.22);
  cursor: pointer;
}

.proceed-pay-btn:hover {
  filter: brightness(1.05);
}

.proceed-pay-btn:disabled {
  background: linear-gradient(135deg, #9db9a8, #8ca797);
  box-shadow: none;
  cursor: not-allowed;
}

.orders-empty {
  margin: 0;
  text-align: center;
  padding: 1.2rem 0.8rem;
  color: #3d7558;
  font-weight: 500;
}

.order-item {
  border: 1px solid #c7e0d0;
  border-radius: 14px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.97), rgba(246, 254, 248, 0.95));
  padding: 0.9rem;
  box-shadow: 0 8px 18px rgba(21, 80, 50, 0.1);
  display: grid;
  gap: 0.55rem;
}

.order-item + .order-item {
  margin-top: 0.15rem;
}

.order-item-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 0.7rem;
}

.order-plan {
  margin: 0;
  font-size: 1rem;
  font-weight: 700;
  color: #11412d;
}

.order-duration {
  margin: 0.18rem 0 0;
  color: #3c7357;
  font-size: 0.8rem;
  font-weight: 500;
}

.order-amount {
  margin: 0;
  border-radius: 999px;
  padding: 0.25rem 0.62rem;
  border: 1px solid #b7dec6;
  background: #e7f7ed;
  color: #0f4a2f;
  font-weight: 700;
  font-size: 0.84rem;
}

.order-meta-row {
  display: grid;
  gap: 0.3rem;
}

.order-meta-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: #3f785b;
}

.order-meta-value {
  font-size: 0.88rem;
  font-weight: 600;
  color: #1f5b3e;
}

.order-weekdays,
.order-addons {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
}

.order-day-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 42px;
  border-radius: 999px;
  padding: 0.22rem 0.52rem;
  border: 1px solid #bfdcc8;
  background: #fff;
  color: #1f5b3e;
  font-size: 0.75rem;
  font-weight: 600;
}

.order-chip {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 0.22rem 0.56rem;
  border: 1px solid #b5d9c0;
  background: #ecfaf1;
  color: #205d40;
  font-size: 0.74rem;
  font-weight: 600;
}

.order-chip-muted {
  background: #f5f9f6;
  border-color: #d5e4db;
  color: #5d7f6b;
}

.order-created {
  margin: 0.1rem 0 0;
  color: #5b816d;
  font-size: 0.74rem;
}

.order-remove-btn {
  margin-top: 0.3rem;
  border: 1px solid #e6b6aa;
  background: linear-gradient(135deg, #fff4ef, #ffe8df);
  color: #8b2f1a;
  border-radius: 999px;
  padding: 0.45rem 0.9rem;
  font: inherit;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  cursor: pointer;
  justify-self: start;
}

.order-remove-btn:hover {
  background: linear-gradient(135deg, #ffede6, #ffdccc);
}

.cart-toast {
  position: fixed;
  top: 1rem;
  left: 50%;
  z-index: 80;
  background: linear-gradient(135deg, #effbf3 0%, #d9f2e2 100%);
  border: 1px solid #9ecab0;
  color: #12462f;
  padding: 0.72rem 0.95rem;
  border-radius: 12px;
  box-shadow: 0 12px 24px rgba(21, 74, 48, 0.18);
  font-weight: 600;
  font-size: 0.88rem;
  opacity: 0;
  transform: translate(-50%, -10px);
  transition: opacity 0.2s ease, transform 0.2s ease;
  max-width: min(92vw, 520px);
  text-align: center;
}

.cart-toast.is-visible {
  opacity: 1;
  transform: translate(-50%, 0);
}

.cart-toast.is-error {
  background: linear-gradient(135deg, #fff3ef 0%, #ffdcd1 100%);
  border-color: #e4a495;
  color: #7d2813;
}

@media (max-width: 36rem) {
  .site-header {
    padding: 0.75rem 0.75rem;
    gap: 0.55rem;
    min-height: 82px;
  }

  .brand-logo {
    width: 40px;
    height: 40px;
  }

  .brand-name {
    font-size: 0.9rem;
    max-width: min(42vw, 145px);
  }

  .header-right {
    gap: 0.35rem;
  }

  .login-btn {
    padding: 0.5rem 0.82rem;
    font-size: 0.88rem;
  }

  .profile-chip {
    padding: 0.24rem 0.58rem 0.24rem 0.28rem;
  }

  .profile-label {
    max-width: 88px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .site-nav {
    margin-top: 0.15rem;
    padding: 0.55rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    background: rgba(9, 33, 21, 0.38);
    backdrop-filter: blur(8px);
    gap: 0.35rem;
  }

  .site-nav a {
    font-size: 0.75rem;
    padding: 0.4rem 0.62rem;
  }

  .hero {
    min-height: 88vh;
    padding-top: 9.1rem;
    padding-bottom: 2rem;
  }

  .hero p {
    max-width: 34ch;
  }

  .hero-cta {
    width: 100%;
    max-width: 320px;
    text-align: center;
  }

  .days-option-btn {
    flex: 1 1 44%;
    justify-content: center;
    display: inline-flex;
    align-items: center;
  }

  .weekday-option-btn {
    flex: 1 1 28%;
    justify-content: center;
    display: inline-flex;
    align-items: center;
  }

  .subscription-card {
    padding: 0.9rem;
  }

  .otp-dialog,
  .orders-dialog {
    border-radius: 14px;
    padding: 1rem;
  }
}

@media (min-width: 48rem) {
  .site-header {
    grid-template-columns: 1fr auto 1fr;
    grid-template-areas: "brand nav actions";
    gap: 1rem;
    min-height: 96px;
    padding: 1rem 1.4rem;
  }

  .brand {
    justify-self: start;
  }

  .site-nav {
    display: flex;
    width: auto;
    flex-direction: row;
    flex: 0 1 auto;
    align-items: center;
    justify-content: center;
    gap: 0.35rem;
    overflow: visible;
    white-space: normal;
    padding: 0;
    border-left: 1px solid rgba(255, 255, 255, 0.26);
    padding-left: 1rem;
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    justify-content: initial;
  }

  .nav-toggle-btn {
    display: none;
  }

  .header-right {
    justify-content: flex-end;
    gap: 0.6rem;
  }

  .brand-logo {
    width: 54px;
    height: 54px;
  }

  .brand-name {
    font-size: 1.35rem;
  }

  .shell {
    padding: 2rem;
  }

  .products-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.4rem;
  }

  .subscription-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    align-items: stretch;
    gap: 1rem;
  }

  .content {
    gap: 1rem;
  }

  .hero {
    min-height: 100vh;
    padding-top: 8.8rem;
  }

  .textured-shell {
    background-size: auto, 420px;
    background-position: center, right -60px bottom -60px;
  }

  .placeholder {
    min-height: 260px;
  }
}
