:root {
  --danger: #c0392b;
  --ok-bg: #eaf7ef;
  --warn-bg: #fff4e4;
  --input-radius: 16px;
  --layout-gutter: clamp(10px, 2.5vw, 18px);
}

.flash {
  padding: 14px var(--layout-gutter);
  text-align: center;
  font-weight: 700;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}
.flash-ok {
  background: var(--ok-bg);
  color: var(--forest-deep);
}
.flash-warn {
  background: var(--warn-bg);
  color: var(--berry-dark);
}

.nav-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 22px;
  height: 22px;
  padding: 0 6px;
  margin-left: 6px;
  border-radius: 999px;
  background: var(--berry);
  color: #fff;
  font-size: 12px;
}

.nav-cta-ghost {
  background: transparent !important;
  color: var(--forest) !important;
  border: 1px solid rgba(31, 58, 30, 0.25) !important;
  box-shadow: none !important;
}

.nav-cta-secondary {
  background: var(--berry) !important;
  color: #fff !important;
}

.shop-intro {
  padding-top: var(--section-space-y-tight) !important;
}

.shop-grid,
.shop-grid-mini {
  display: grid;
  gap: 22px;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 240px), 1fr));
}

.shop-grid-mini {
  margin-top: 28px;
}

.product-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid rgba(200, 152, 62, 0.25);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 16px 36px rgba(52, 32, 8, 0.1);
  transition:
    transform 0.28s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.28s ease,
    border-color 0.25s ease;
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 26px 52px rgba(52, 32, 8, 0.14);
  border-color: rgba(227, 109, 31, 0.35);
}

.product-card img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.product-card-body {
  padding: 18px 20px 14px;
}

.product-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 12px 20px 20px;
  margin-top: auto;
  border-top: 1px solid rgba(200, 152, 62, 0.14);
  background: rgba(255, 252, 244, 0.65);
}

.product-card-footer .price {
  margin: 0;
  font-size: 18px;
}

.product-card-buy {
  flex-shrink: 0;
  white-space: nowrap;
}

.product-card-body h2,
.product-card-body h3 {
  font-family: inherit;
  font-size: 20px;
  margin-bottom: 8px;
  color: var(--forest-deep);
}

.product-card-link {
  display: grid;
}

.price {
  font-weight: 800;
  color: var(--berry-dark);
  margin: 12px 0 0;
}

.price-lg {
  font-size: 28px;
}

.pill {
  display: inline-flex;
  padding: 4px 12px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
  background: rgba(95, 127, 48, 0.12);
  color: var(--forest);
  margin-right: 6px;
}

.pill-cancelled {
  background: rgba(192, 57, 43, 0.15);
  color: var(--danger);
}

.pill-shipped,
.pill-packed,
.pill-confirmed {
  background: rgba(29, 127, 200, 0.12);
  color: #1d7fc8;
}

.pill-delivered {
  background: rgba(52, 140, 90, 0.15);
  color: var(--forest);
}

.muted {
  color: var(--muted);
}

.empty-state {
  padding: 40px;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.8);
  text-align: center;
  border: 1px dashed rgba(200, 152, 62, 0.5);
}

.card-panel {
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(200, 152, 62, 0.26);
  border-radius: var(--radius-lg);
  padding: var(--card-pad-y) var(--card-pad-x);
  box-shadow: var(--shadow);
}

.stack-form label {
  display: grid;
  gap: 8px;
  font-weight: 700;
}

.stack-form input,
.stack-form textarea,
.stack-form select {
  width: 100%;
  padding: 13px;
  border-radius: var(--input-radius);
  border: 1px solid rgba(31, 58, 30, 0.16);
  font: inherit;
  background: #fffaf0;
}

.spacing-top-none {
  margin-top: 0 !important;
}
.spacing-top-sm {
  margin-top: 22px !important;
}
.spacing-top-med {
  margin-top: 32px !important;
}

.stretch {
  width: 100%;
}

.btn-space {
  margin-top: 10px !important;
}

.radio-row {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
}

.check-row {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
}

.auth-card-wrap {
  max-width: 520px;
  margin: 0 auto;
}

.product-detail-grid {
  display: grid;
  gap: 40px;
  grid-template-columns: 1fr;
  align-items: start;
}

@media (min-width: 900px) {
  .product-detail-grid {
    grid-template-columns: minmax(0, 1fr) minmax(0, 0.82fr);
  }
}

.product-detail-grid > div:last-child {
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-width: 0;
}

.product-detail-grid .price-lg {
  margin: 0;
}

.product-price-buy-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 14px 18px;
  margin: 6px 0 14px;
}

.product-price-buy-row .price-lg {
  margin: 0;
}

.product-buy-now-btn {
  min-height: 48px !important;
  padding-left: 22px !important;
  padding-right: 22px !important;
}

.product-detail-grid .form-note {
  margin-top: 6px;
}

.product-detail .form-note {
  margin: 10px 0 0;
}

.product-cart-hint {
  min-height: 1.25em;
  margin-top: 8px !important;
}

.product-detail-media img {
  width: 100%;
  border-radius: 28px;
  border: 1px solid rgba(200, 152, 62, 0.25);
}

.product-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  gap: 12px;
}

.product-actions-toolbar {
  margin-top: 8px;
}

.product-qty-field {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-height: 48px;
  padding: 0 14px 0 16px;
  border-radius: 999px;
  border: 1px solid rgba(31, 58, 30, 0.14);
  background: rgba(255, 250, 240, 0.96);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.65);
}

.qty-label {
  margin: 0;
}

.qty-label-text {
  font-weight: 800;
  font-size: 13px;
  color: var(--forest-deep);
}

.qty-input,
.qty-input--toolbar {
  width: 72px !important;
  min-height: 36px !important;
  padding: 8px 10px !important;
  margin: 6px 0;
  border-radius: 12px !important;
  border: 1px solid rgba(31, 58, 30, 0.12) !important;
  background: rgba(255, 255, 255, 0.92) !important;
  font-weight: 700;
  text-align: center;
}

.product-toolbar-btn {
  flex: 1 1 140px;
  min-height: 48px !important;
}

@media (max-width: 540px) {
  .product-actions-toolbar {
    flex-direction: column;
    align-items: stretch;
  }

  .product-qty-field {
    width: 100%;
    justify-content: space-between;
  }

  .product-toolbar-btn {
    flex: 1 1 auto;
    width: 100%;
  }

  .product-price-buy-row {
    flex-direction: column;
    align-items: stretch;
  }

  .product-buy-now-btn {
    width: 100%;
  }
}

.cart-table td[data-label="Qty"] .qty-input {
  width: 88px !important;
  min-height: 44px !important;
}

.cart-page-heading,
.page-header--tight {
  margin-bottom: var(--heading-gap);
}

.cart-page-heading h1,
.page-header--tight h1 {
  margin: 0 0 8px;
}

.cart-page-heading .muted,
.page-header--tight .lead,
.page-header--tight .muted {
  margin: 0;
}

.section-heading.page-header--tight h1 {
  margin: 0 0 8px;
}

.cart-layout {
  display: grid;
  gap: 24px;
  grid-template-columns: 1fr;
  align-items: start;
}

@media (min-width: 900px) {
  .cart-layout {
    grid-template-columns: minmax(0, 2fr) minmax(0, 1fr);
  }
}

.cart-table {
  width: 100%;
  border-collapse: collapse;
}

.cart-table th,
.cart-table td {
  padding: 14px 12px;
  border-bottom: 1px solid rgba(200, 152, 62, 0.25);
  text-align: left;
}

.btn-small {
  min-height: 40px !important;
  padding: 8px 14px !important;
  border-radius: 999px !important;
}

.cart-summary strong.pull-right {
  float: none;
}

.summary-total strong {
  font-size: 24px;
  color: var(--forest-deep);
}

.checkout-grid {
  display: grid;
  gap: 32px;
  grid-template-columns: 1fr;
  align-items: start;
}

@media (min-width: 900px) {
  .checkout-grid {
    grid-template-columns: minmax(0, 2fr) minmax(0, 1fr);
  }
}

.checkout-form-wrap h1 {
  margin-bottom: 14px;
}

.checkout-form-wrap fieldset {
  border: 1px solid rgba(200, 152, 62, 0.22);
  border-radius: 18px;
  padding: 18px;
  margin: 0 0 18px;
  min-width: 0;
}

.checkout-form-wrap legend {
  padding: 0 10px;
  font-weight: 900;
  color: var(--forest-deep);
}

.checkout-summary {
  position: sticky;
  top: 110px;
}

.checkout-summary h2 {
  margin-top: 0;
}

.summary-row {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 10px;
}

.summary-row span {
  min-width: 0;
}

.summary-row span:first-child {
  flex: 1;
  overflow-wrap: anywhere;
}

.summary-row span:last-child {
  flex: 0 0 auto;
  white-space: nowrap;
}

.checkout-summary p {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin: 10px 0;
}

.checkout-summary p strong.pull-right {
  margin-left: auto;
  white-space: nowrap;
}

.checkout-summary hr {
  border: none;
  border-top: 1px solid rgba(52, 32, 8, 0.12);
  margin: 16px 0;
}

.checkout-express-panel .checkout-guest-note {
  margin-bottom: 18px;
  font-size: 15px;
  line-height: 1.55;
}

.checkout-express-form label {
  margin-bottom: 12px;
}

.cart-page-head {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: space-between;
  gap: 6px 16px;
  margin-bottom: 18px;
}

.cart-page-head h1 {
  margin: 0;
}

.cart-page-head__note {
  margin: 0;
  font-size: 14px;
}

.cart-lines {
  list-style: none;
  margin: 0;
  padding: 0;
}

.cart-line {
  padding: 14px 0;
  border-bottom: 1px solid rgba(200, 152, 62, 0.25);
}

.cart-line:first-child {
  padding-top: 0;
}

.cart-line__top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}

.cart-line__name {
  flex: 1;
  min-width: 0;
  font-size: 15px;
  line-height: 1.35;
}

.cart-line__price {
  flex: 0 0 auto;
  font-weight: 800;
  color: var(--forest-deep);
  white-space: nowrap;
}

.cart-line__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 8px;
}

.cart-line__qty {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  font-size: 14px;
  margin: 0;
}

.cart-line__qty .cart-qty {
  width: 72px;
  min-height: 40px;
  padding: 8px 10px;
}

.cart-summary--compact h2 {
  margin-top: 0;
  margin-bottom: 12px;
}

.cart-summary__dl {
  margin: 0 0 16px;
}

.cart-summary__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 8px;
  font-size: 15px;
}

.cart-summary__row dt {
  margin: 0;
  font-weight: 600;
  color: var(--muted);
}

.cart-summary__row dd {
  margin: 0;
  font-weight: 800;
  color: var(--forest-deep);
  text-align: right;
}

.cart-summary__row--total dt,
.cart-summary__row--total dd {
  font-size: 18px;
  color: var(--forest-deep);
}

.cart-summary__ship-note {
  font-weight: 600;
  font-size: 13px;
  color: var(--muted);
  margin-left: 4px;
}

.cart-summary__row dd .price-strike,
.cart-summary__row dd .price-free {
  display: inline;
}

.checkout-field-highlight input {
  border-color: rgba(227, 109, 31, 0.45);
  background: #fffaf4;
}

.checkout-pay-fieldset {
  margin-top: 8px;
}

.checkout-pay-options {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  gap: 10px 18px;
}

.checkout-pay-options .radio-row,
.checkout-pay-options .check-row {
  margin: 0;
  white-space: nowrap;
  flex-shrink: 0;
  font-size: 0.92rem;
}

@media (max-width: 400px) {
  .checkout-pay-options {
    gap: 6px 10px;
  }

  .checkout-pay-options .radio-row,
  .checkout-pay-options .check-row {
    font-size: 0.8rem;
    gap: 6px;
  }
}

.pay-panel {
  text-align: center;
  max-width: 440px;
  margin: 0 auto;
}

.pay-panel__hint {
  min-height: 1.25em;
  margin-top: 10px;
}

/* Status pages: sign-out, order success, payment */
.status-page {
  padding: clamp(28px, 6vw, 56px) 0;
}

.status-page .container {
  width: 100%;
  max-width: min(560px, 100%);
  margin-inline: auto;
  padding-inline: var(--layout-gutter);
  box-sizing: border-box;
}

.status-card {
  text-align: center;
  padding: clamp(22px, 5vw, 36px) clamp(18px, 4vw, 28px);
  width: 100%;
  box-sizing: border-box;
}

.status-card__icon {
  display: flex;
  justify-content: center;
  margin-bottom: 12px;
  color: var(--forest-deep);
}

.status-card__icon svg {
  width: clamp(48px, 12vw, 56px);
  height: auto;
}

.status-card h1 {
  margin: 0 0 10px;
  font-size: clamp(1.35rem, 4.5vw, 1.75rem);
  line-height: 1.25;
  overflow-wrap: anywhere;
}

.status-card__lead,
.status-card__ref {
  margin: 0 0 14px;
  line-height: 1.6;
}

.status-card__details {
  text-align: left;
  margin: 20px 0 8px;
  padding-top: 16px;
  border-top: 1px solid rgba(200, 152, 62, 0.28);
}

.status-card__details h2 {
  font-size: 1.05rem;
  margin: 0 0 8px;
}

.status-card__details p {
  margin: 6px 0;
}

.status-card__items {
  margin: 8px 0 0;
  padding-left: 1.1rem;
}

.status-card__items li {
  margin-bottom: 6px;
  overflow-wrap: anywhere;
}

.status-badge {
  display: inline-block;
  margin: 0 0 14px;
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.status-badge--paid {
  background: var(--ok-bg);
  color: var(--forest-deep);
  border: 1px solid rgba(95, 127, 48, 0.35);
}

.status-badge--cod {
  background: var(--warn-bg);
  color: var(--berry-dark);
  border: 1px solid rgba(227, 109, 31, 0.25);
}

.status-card__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-top: 22px;
}

.status-card__actions .btn {
  flex: 1 1 180px;
  max-width: 100%;
  min-width: min(100%, 200px);
}

.status-card__note {
  margin-top: 16px;
  text-align: center;
}

.pay-redirect-page .pay-redirect-card {
  max-width: 480px;
  margin-inline: auto;
}

.pay-redirect-actions {
  flex-direction: column;
  align-items: stretch;
}

.pay-redirect-actions .btn {
  flex: 1 1 auto;
  width: 100%;
  min-width: 0;
}

.btn-pay-gateways {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding-top: 14px;
  padding-bottom: 14px;
}

.pay-cta-label {
  line-height: 1.1;
}

.pay-method-selector {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
  border: 0;
  padding: 0;
  margin: 10px 0 4px;
}

.pay-method-option {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  min-height: 72px;
  padding: 8px 6px;
  border-radius: 12px;
  border: 1px solid rgba(31, 58, 30, 0.14);
  background: rgba(255, 255, 255, 0.72);
  cursor: pointer;
  font-size: 11px;
  font-weight: 700;
  color: var(--forest);
  text-align: center;
}

.pay-method-brand {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  flex-shrink: 0;
}

.pay-brand-svg {
  display: block;
  width: 22px;
  height: 22px;
}

.pay-method-name {
  line-height: 1.15;
}

@media (max-width: 680px) {
  .pay-method-selector {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.pay-method-option input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.pay-method-dot {
  position: absolute;
  top: 6px;
  right: 6px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 2px solid rgba(31, 58, 30, 0.28);
  background: #fff;
}

.pay-method-option input:checked + .pay-method-dot {
  border-color: var(--berry);
  box-shadow: inset 0 0 0 3px #fff;
  background: var(--berry);
}

.pay-method-option:has(input:checked) {
  border-color: rgba(227, 109, 31, 0.55);
  background: rgba(243, 127, 54, 0.12);
  color: #7b2f06;
}

.upi-pay-block {
  margin-top: 12px;
  border: 1px solid rgba(31, 58, 30, 0.14);
  border-radius: 14px;
  padding: 12px;
  background: rgba(255, 255, 255, 0.68);
}

.upi-pay-title {
  margin: 0 0 8px;
  font-weight: 700;
  text-align: left;
}

.upi-pay-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
}

.upi-id {
  font-size: 13px;
  font-weight: 700;
  color: var(--forest-deep);
  background: #eef6ec;
  border: 1px dashed rgba(31, 58, 30, 0.22);
  border-radius: 10px;
  padding: 7px 10px;
}

.upi-open-link {
  min-height: 40px;
  padding: 10px 14px;
}

.upi-qr {
  margin-top: 10px;
  text-align: center;
}

.upi-qr summary {
  cursor: pointer;
  font-weight: 700;
  color: var(--forest);
  text-align: left;
}

.upi-qr img {
  display: block;
  margin-top: 10px;
  margin-left: auto;
  margin-right: auto;
  border-radius: 12px;
  border: 1px solid rgba(31, 58, 30, 0.14);
  background: #fff;
}

@media (max-width: 980px) {
  .status-page {
    padding: 22px 0 32px;
  }

  .status-card__actions {
    flex-direction: column;
    align-items: stretch;
  }

  .status-card__actions .btn {
    width: 100%;
    min-width: 0;
    flex: 1 1 auto;
  }
}

.checkout-submit-btn {
  min-height: 54px;
  font-size: 17px;
  margin-top: 8px;
}

.checkout-trust-note,
.checkout-signin-hint,
.checkout-cart-hint {
  text-align: center;
  margin-top: 12px;
}

.checkout-signin-hint a {
  font-weight: 800;
  color: var(--berry-dark);
}

.checkout-shipping-prices {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.price-strike {
  text-decoration: line-through;
  opacity: 0.55;
  font-weight: 600;
  color: var(--muted);
}

.price-free {
  font-weight: 800;
  color: var(--forest-deep);
}

.checkout-shipping-row {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
}

@media (max-width: 980px) {
  .checkout-express-form label {
    margin-bottom: 6px;
    gap: 4px;
  }

  .checkout-express-form .form-row-two {
    gap: 6px;
  }

  .checkout-pay-fieldset {
    padding: 12px 14px;
    margin-bottom: 10px;
  }

  .checkout-summary--sticky {
    position: static;
    top: auto;
  }

  .checkout-page .checkout-submit-btn {
    position: sticky;
    bottom: max(12px, env(safe-area-inset-bottom));
    z-index: 5;
    box-shadow: 0 12px 32px rgba(179, 71, 18, 0.35);
  }
}

.summary-total {
  margin-top: 14px !important;
  padding-top: 12px;
  border-top: 1px dashed rgba(200, 152, 62, 0.38);
}

.form-row-two {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.order-row {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 16px;
  text-decoration: none;
  align-items: center;
}

.order-row > * {
  min-width: 0;
}

.order-row__right {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  flex: 0 0 auto;
}

.order-row .amount {
  white-space: nowrap;
}

.order-row:hover {
  border-color: var(--berry);
}

.order-list-modern {
  display: grid;
  gap: 14px;
}

.order-row-modern {
  padding: 22px 26px !important;
}

.order-row-main {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 14px;
}

.order-row-number {
  font-size: 17px;
  color: var(--forest-deep);
}

.order-row-meta {
  flex-basis: 100%;
  margin: 4px 0 0 !important;
}

.order-row-total {
  font-size: 20px;
  font-weight: 900;
  color: var(--berry-dark);
}

.orders-empty .orders-empty-title {
  margin: 0 0 10px;
  font-size: 20px;
  font-weight: 800;
  color: var(--forest-deep);
}

.orders-empty .muted {
  margin: 0 auto 22px;
  max-width: 420px;
}

.order-list-modern .order-row {
  margin-bottom: 0;
}

@media (max-width: 560px) {
  .order-row-modern {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
  }

  .order-row-total {
    align-self: stretch;
    text-align: right;
    width: 100%;
  }
}

.order-detail-layout {
  display: grid;
  gap: 24px;
  grid-template-columns: minmax(0, 3fr) minmax(260px, 2fr);
  align-items: start;
}

.timeline {
  padding-left: 18px;
  margin: 0;
  display: grid;
  gap: 14px;
}

.timeline li strong {
  display: block;
  margin-bottom: 4px;
}

.bare-list {
  padding-left: 18px;
  margin: 0;
  color: var(--muted);
}

.data-table {
  width: 100%;
  border-collapse: collapse;
  background: rgba(255, 255, 255, 0.9);
  border-radius: var(--radius-md);
  overflow: hidden;
}

.data-table th,
.data-table td {
  padding: 14px 12px;
  border-bottom: 1px solid rgba(52, 32, 8, 0.08);
  text-align: left;
}

.data-table thead {
  background: rgba(31, 58, 30, 0.08);
  font-weight: 800;
}

.admin-head {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: flex-start;
  margin-bottom: 24px;
  flex-wrap: wrap;
}

.success-panel hr {
  border: none;
  border-top: 1px solid rgba(52, 32, 8, 0.1);
}

.small-link {
  font-weight: 700;
  display: inline-block;
  margin-bottom: 14px;
}

.spaced-top-small {
  margin-top: 14px !important;
}

.shop-note {
  margin-top: 18px !important;
}

@media (max-width: 980px) {
  .product-detail-grid,
  .checkout-grid,
  .cart-layout,
  .order-detail-layout {
    grid-template-columns: 1fr;
  }

  .checkout-summary {
    position: static;
    top: auto;
  }

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

  .cart-table thead {
    display: none;
  }

  .cart-table tr {
    display: grid;
    padding: 12px 0;
  }

  .cart-table td {
    border: none;
    padding: 6px 0;
  }

  .cart-table td::before {
    content: attr(data-label);
    font-weight: 800;
    display: block;
    margin-bottom: 4px;
    color: var(--forest-deep);
  }
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 12px;
  z-index: 100;
  padding: 12px 20px;
  background: var(--forest-deep);
  color: var(--cream);
  font-weight: 800;
  border-radius: 12px;
  box-shadow: var(--shadow);
  transition: transform 0.2s ease;
}

.skip-link:focus {
  left: 12px;
  outline: 3px solid var(--gold);
  outline-offset: 2px;
}

.nav-cart-icon {
  position: relative;
  width: 40px;
  height: 40px;
  display: inline-grid;
  place-items: center;
  border-radius: 14px;
  border: 1px solid rgba(31, 58, 30, 0.14);
  background: rgba(255, 255, 255, 0.72);
  color: var(--forest-deep);
  transition:
    transform 0.22s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.22s ease,
    border-color 0.2s ease,
    background 0.2s ease;
}

.nav-cart-icon:hover,
.nav-account-trigger--icon-only:hover {
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 14px 28px rgba(52, 32, 8, 0.12);
  border-color: rgba(227, 109, 31, 0.35);
}

.nav-cart-badge {
  position: absolute;
  top: -4px;
  right: -4px;
  min-width: 18px;
  height: 18px;
  padding: 0 6px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--berry), var(--berry-dark));
  color: #fff;
  font-size: 10px;
  font-weight: 800;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 14px rgba(179, 71, 18, 0.35);
}

.nav-account-wrap {
  position: relative;
}

.nav-account-trigger {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid rgba(31, 58, 30, 0.18);
  background: rgba(255, 255, 255, 0.85);
  color: var(--forest-deep);
  font: inherit;
  font-weight: 700;
  cursor: pointer;
  transition:
    transform 0.22s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.22s ease,
    border-color 0.2s ease;
}

.nav-account-trigger:not(.nav-account-trigger--icon-only):hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 26px rgba(52, 32, 8, 0.12);
  border-color: rgba(227, 109, 31, 0.35);
}

.nav-account-trigger[aria-expanded="true"] {
  border-color: rgba(227, 109, 31, 0.55);
  box-shadow: 0 12px 28px rgba(227, 109, 31, 0.18);
}

.nav-account-trigger--icon-only {
  width: 40px;
  height: 40px;
  padding: 0;
  justify-content: center;
  border-radius: 14px;
  gap: 0;
  background: rgba(255, 255, 255, 0.72);
}

.nav-account-trigger--icon-only .nav-client-ring {
  width: 28px;
  height: 28px;
}

.nav-account-trigger--icon-only .nav-client-ring svg {
  width: 15px;
  height: 15px;
}

.nav-account-text {
  display: grid;
  text-align: left;
  line-height: 1.15;
}

.nav-account-title {
  font-size: 13px;
  font-weight: 800;
}

.nav-account-sub {
  font-size: 11px;
  font-weight: 600;
  color: var(--muted);
  max-width: 120px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.nav-account-chevron {
  display: none;
}

.nav-account-trigger[aria-expanded="true"] .nav-account-chevron {
  transform: none;
}

.nav-dropdown {
  position: absolute;
  right: 0;
  top: calc(100% + 10px);
  min-width: 220px;
  padding: 10px;
  border-radius: 18px;
  border: 1px solid rgba(200, 152, 62, 0.28);
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(14px);
  box-shadow: 0 22px 50px rgba(52, 32, 8, 0.18);
  z-index: 80;
}

.nav-dropdown-link {
  display: block;
  padding: 12px 14px;
  border-radius: 12px;
  font-weight: 700;
  color: var(--forest-deep);
  transition: background 0.18s ease, transform 0.18s ease;
}

.nav-dropdown-link:hover {
  background: rgba(243, 234, 214, 0.85);
  transform: translateX(3px);
}

.nav-dropdown-strong {
  font-weight: 800;
  background: linear-gradient(120deg, rgba(227, 109, 31, 0.08), rgba(95, 127, 48, 0.08));
}

.nav-dropdown-divider {
  height: 1px;
  margin: 8px 6px;
  background: rgba(200, 152, 62, 0.22);
}

.nav-dropdown--account {
  min-width: 260px;
  padding: 12px;
}

.nav-dropdown-user {
  padding: 6px 8px 10px;
}

.nav-dropdown-user-label {
  margin: 0 0 4px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--berry-dark);
}

.nav-dropdown-user-name {
  margin: 0;
  font-size: 15px;
  font-weight: 800;
  color: var(--forest-deep);
  line-height: 1.25;
}

.nav-dropdown-user-email {
  margin: 6px 0 0;
  font-size: 12px;
  font-weight: 600;
  line-height: 1.35;
  overflow-wrap: anywhere;
}

.nav-dropdown-link--rich {
  padding: 12px 14px !important;
}

.nav-dropdown-link-title {
  display: block;
  font-weight: 800;
  font-size: 14px;
}

.nav-dropdown-link-hint {
  display: block;
  margin-top: 3px;
  font-size: 12px;
  font-weight: 600;
}

.nav-dropdown-link--signout {
  text-align: center;
}

.nav-dropdown--guest {
  width: min(calc(100vw - 2 * var(--layout-gutter)), 380px);
  max-height: min(78vh, 620px);
  overflow-x: hidden;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  padding: 14px 12px 16px;
  background: #ffffff;
  scrollbar-width: thin;
}

.nav-account-trigger--guest {
  border-color: rgba(227, 109, 31, 0.38);
  box-shadow: 0 8px 18px rgba(227, 109, 31, 0.08);
}

.nav-auth-headline {
  margin: 0 0 14px;
  text-align: center;
  font-size: 17px;
  font-weight: 800;
  line-height: 1.35;
  color: var(--forest-deep);
}

.nav-auth-tabs {
  display: flex;
  gap: 6px;
  padding: 6px;
  margin-bottom: 16px;
  border-radius: 14px;
  background: rgba(31, 58, 30, 0.06);
  border: 1px solid rgba(31, 58, 30, 0.1);
}

.nav-auth-tab {
  flex: 1;
  margin: 0;
  padding: 12px 10px;
  border: 0;
  border-radius: 10px;
  background: transparent;
  font: inherit;
  font-size: 14px;
  font-weight: 800;
  color: #5c5348;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  min-height: 44px;
  transition:
    background 0.18s ease,
    color 0.18s ease,
    box-shadow 0.18s ease;
}

.nav-auth-tab:hover {
  color: var(--forest-deep);
  background: rgba(255, 255, 255, 0.55);
}

.nav-auth-tab.is-active {
  color: var(--forest-deep);
  background: #fff;
  box-shadow: 0 8px 18px rgba(52, 32, 8, 0.1);
  border: 1px solid rgba(227, 109, 31, 0.25);
}

.nav-auth-tab:focus-visible {
  outline: 3px solid rgba(227, 109, 31, 0.4);
  outline-offset: 2px;
}

.nav-auth-intro {
  font-size: 14px;
  margin: 0 0 14px;
  line-height: 1.55;
  color: var(--muted);
}

.nav-auth-form {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.nav-auth-form .auth-field {
  display: grid;
  gap: 8px;
  margin-bottom: 14px;
}

.nav-auth-form .auth-field .auth-label {
  display: block;
  margin: 0;
  font-size: 14px;
  font-weight: 800;
  color: var(--forest-deep);
  line-height: 1.3;
}

.nav-auth-form .auth-field input {
  width: 100%;
  min-height: 48px;
  padding: 12px 14px !important;
  border-radius: 14px !important;
  border: 1.5px solid rgba(31, 58, 30, 0.2) !important;
  background: #ffffff !important;
  color: var(--ink) !important;
  font-size: 16px !important;
  line-height: 1.4;
  box-sizing: border-box;
}

.nav-auth-form .auth-field input::placeholder {
  color: #6b6254;
  opacity: 1;
}

.nav-auth-form .auth-field input:focus {
  outline: none;
  border-color: var(--berry) !important;
  box-shadow: 0 0 0 3px rgba(227, 109, 31, 0.2);
}

.nav-auth-submit {
  margin-top: 6px !important;
  min-height: 52px !important;
  font-size: 16px !important;
  letter-spacing: 0.01em !important;
  text-transform: none !important;
}

.interactive-btn {
  transition:
    transform 0.22s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.22s ease !important;
}

.interactive-btn:active {
  transform: translateY(1px) scale(0.98);
}

.interactive-chip:focus-visible,
.nav-cart-icon:focus-visible,
.nav-contact-chip:focus-visible,
.nav-account-trigger:focus-visible,
.btn:focus-visible {
  outline: 3px solid rgba(227, 109, 31, 0.45);
  outline-offset: 3px;
}

.reveal-in {
  opacity: 0;
  transform: translateY(18px);
  pointer-events: none;
  transition:
    opacity 0.65s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal-in.is-visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.stagger-children > * {
  opacity: 0;
  transform: translateY(14px);
  pointer-events: none;
  transition:
    opacity 0.55s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}

.stagger-children.is-visible > * {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.stagger-children.is-visible > *:nth-child(1) {
  transition-delay: 0.05s;
}

.stagger-children.is-visible > *:nth-child(2) {
  transition-delay: 0.12s;
}

.stagger-children.is-visible > *:nth-child(3) {
  transition-delay: 0.18s;
}

.stagger-children.is-visible > *:nth-child(4) {
  transition-delay: 0.24s;
}

@media (prefers-reduced-motion: reduce) {
  .reveal-in,
  .stagger-children > *,
  .btn,
  .interactive-btn,
  .nav-cart-icon,
  .nav-contact-chip,
  .nav-account-trigger,
  .product-card {
    transition: none !important;
    transform: none !important;
  }

  .product-card:hover {
    transform: none !important;
  }

  .reveal-in,
  .stagger-children > * {
    opacity: 1 !important;
  }
}

.tilt-soft {
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.tilt-soft:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 46px rgba(52, 32, 8, 0.14);
}

.page-narrow {
  max-width: 820px;
}

.page-header .lead {
  font-size: 1.15rem;
  line-height: 1.75;
  overflow-wrap: anywhere;
}

.page-header h1 {
  overflow-wrap: anywhere;
  word-break: break-word;
  margin-bottom: 14px;
}

.about-vaid-card {
  margin-bottom: 28px;
  padding: clamp(18px, 3.5vw, 32px);
}

.about-vaid-heading {
  margin-top: 0;
  margin-bottom: 22px;
  font-size: clamp(1.15rem, 2.5vw, 1.35rem);
  line-height: 1.45;
  color: var(--forest-deep);
  text-align: center;
  overflow-wrap: anywhere;
  word-break: break-word;
  max-width: 100%;
}

.about-bilingual {
  display: grid;
  gap: 28px;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr));
}

.about-bilingual > * {
  min-width: 0;
}

.about-lang {
  padding: 20px 22px;
  border-radius: var(--radius-md);
  border: 1px solid rgba(200, 152, 62, 0.22);
  background: rgba(255, 255, 255, 0.55);
}

.about-lang-hi {
  font-size: 1.05rem;
  line-height: 1.8;
}

.about-lang-en {
  line-height: 1.75;
}

.about-lang-title {
  margin: 0 0 14px;
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--berry-dark);
}

.about-lang p {
  margin: 0 0 14px;
  color: var(--muted);
  overflow-wrap: anywhere;
}

.about-lang p:last-child {
  margin-bottom: 0;
}

.about-lang strong {
  color: var(--forest-deep);
}

.about-grid {
  display: grid;
  gap: 22px;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 260px), 1fr));
  margin-top: 36px;
}

.about-grid > * {
  min-width: 0;
}

.about-grid .muted {
  overflow-wrap: anywhere;
}

.compact-list {
  gap: 10px !important;
}

.compact-list li {
  padding: 12px 14px 12px 42px !important;
}

.centered {
  text-align: center;
}

.contact-page-grid {
  display: grid;
  gap: clamp(28px, 4vw, 44px);
}

.contact-cards {
  display: grid;
  gap: clamp(14px, 2vw, 22px);
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 260px), 1fr));
}

@media (min-width: 900px) {
  .contact-cards {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.contact-cards > *,
.contact-location > * {
  min-width: 0;
}

.contact-channel {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  text-decoration: none;
  color: inherit;
}

.contact-channel-body {
  min-width: 0;
}

.contact-channel-body h2 {
  margin: 0 0 6px;
  font-size: clamp(1.15rem, 2.6vw, 1.35rem);
}

.contact-channel-body .muted {
  margin: 0;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.contact-location {
  display: grid;
  gap: clamp(18px, 2.5vw, 26px);
  grid-template-columns: 1fr;
  align-items: stretch;
}

@media (min-width: 880px) {
  .contact-location {
    grid-template-columns: minmax(260px, 0.95fr) minmax(0, 1.25fr);
  }
}

.contact-address-card {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.contact-address-head {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.contact-address-head h2 {
  margin: 0 0 8px;
  font-size: clamp(1.2rem, 2.8vw, 1.45rem);
}

.contact-address-lines {
  margin: 0;
  font-style: normal;
}

.contact-address-lines p {
  margin: 0 0 8px;
}

.contact-address-lines p:last-child {
  margin-bottom: 0;
}

.contact-address-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: auto;
}

.contact-address-actions .btn {
  flex: 1 1 auto;
  min-width: min(160px, 100%);
}

.contact-map-card {
  padding: 0 !important;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-height: min(380px, 52vh);
  border-radius: var(--radius-lg) !important;
}

.contact-map-frame {
  flex: 1;
  width: 100%;
  min-height: 280px;
  border: 0;
  display: block;
}

@media (min-width: 880px) {
  .contact-map-frame {
    min-height: 340px;
  }
}

.channel-icon {
  font-size: 28px;
  line-height: 1;
}

.channel-icon--whatsapp {
  display: grid;
  place-items: center;
  flex-shrink: 0;
  color: #128c7e;
}

.channel-icon--whatsapp .vmw-wa-svg {
  width: 28px;
  height: 28px;
}

.interactive-card {
  transition:
    transform 0.25s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.25s ease,
    border-color 0.2s ease;
}

.interactive-card:hover {
  transform: translateY(-5px);
  border-color: rgba(227, 109, 31, 0.45);
  box-shadow: 0 22px 48px rgba(52, 32, 8, 0.14);
}

.stack-form-lite label {
  display: grid;
  gap: 8px;
  font-weight: 700;
}

.stack-form-lite input,
.stack-form-lite textarea {
  width: 100%;
  padding: 13px;
  border-radius: var(--input-radius);
  border: 1px solid rgba(31, 58, 30, 0.16);
  font: inherit;
  background: #fffaf0;
}

.footer-nav {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 0;
  margin-bottom: 0;
  justify-content: center;
}

.footer-nav a {
  font-weight: 600;
  opacity: 1;
  transition: color 0.2s ease;
}

.footer-nav a:hover {
  opacity: 1;
  transform: none;
}

/* Auth modal + profile (Ayurvedic palette, tabbed like client reference) */
.auth-page {
  position: relative;
  padding-bottom: var(--section-space-y) !important;
}

.auth-herbal-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: transparent;
  opacity: 1;
  z-index: 0;
}

.auth-page > .container {
  position: relative;
  z-index: 1;
}

.auth-modal-wrap {
  display: flex;
  justify-content: center;
  align-items: flex-start;
}

.auth-modal-wrap--profile {
  max-width: 920px;
  margin: 0 auto;
}

.auth-overlay {
  position: fixed;
  inset: 0;
  z-index: 1200;
  display: grid;
  place-items: center;
  padding: max(16px, env(safe-area-inset-top)) 16px max(16px, env(safe-area-inset-bottom));
  box-sizing: border-box;
}

.auth-overlay[hidden] {
  display: none !important;
}

.auth-overlay__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(16, 35, 18, 0.52);
  backdrop-filter: blur(4px);
}

.auth-overlay__dialog {
  position: relative;
  z-index: 1;
  width: min(100%, 420px);
  max-height: min(92vh, 720px);
  overflow: auto;
  -webkit-overflow-scrolling: touch;
}

@media (min-width: 981px) {
  .auth-overlay__dialog {
    width: min(92vw, 380px);
  }

  .auth-overlay .nav-auth-panel {
    max-width: 100%;
  }

  .auth-overlay .nav-auth-tabs {
    gap: 6px;
  }

  .auth-overlay .nav-auth-form .auth-field input {
    padding: 11px 12px;
  }
}

body.auth-modal-open {
  overflow: hidden;
}

.auth-overlay .auth-modal {
  width: 100%;
  padding-top: 48px !important;
  padding-bottom: 32px !important;
  margin: 0;
}

.auth-modal {
  width: min(100%, 460px);
  position: relative;
  padding-top: 48px !important;
  padding-bottom: 36px !important;
  border-radius: 28px !important;
  box-shadow:
    0 28px 80px rgba(31, 58, 30, 0.14),
    0 2px 0 rgba(255, 255, 255, 0.65) inset !important;
}

.profile-dashboard.auth-modal {
  width: min(100%, 880px);
}

.auth-modal__close {
  position: absolute;
  top: 14px;
  right: 16px;
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  font-size: 26px;
  line-height: 1;
  font-weight: 700;
  color: var(--muted);
  background: rgba(255, 250, 240, 0.85);
  border: 1px solid rgba(200, 152, 62, 0.22);
  transition:
    transform 0.2s ease,
    color 0.2s ease,
    background 0.2s ease;
}

.auth-modal__close:hover {
  color: var(--berry-dark);
  transform: rotate(90deg);
  background: rgba(255, 255, 255, 0.95);
}

.auth-modal__brand {
  display: flex;
  justify-content: center;
  margin-bottom: 8px;
}

.auth-modal__eyebrow {
  display: flex;
  justify-content: center;
  margin-bottom: 8px !important;
}

.auth-modal__eyebrow::before {
  display: none;
}

.auth-modal__title {
  text-align: center;
  margin-bottom: 20px !important;
  font-size: clamp(26px, 4vw, 34px) !important;
}

.auth-client-ring {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: linear-gradient(145deg, rgba(255, 248, 234, 0.98), rgba(232, 245, 224, 0.92));
  border: 2px solid rgba(200, 152, 62, 0.45);
  box-shadow:
    0 14px 32px rgba(31, 58, 30, 0.12),
    0 0 0 6px rgba(95, 127, 48, 0.06);
  color: var(--forest-deep);
}

.auth-client-ring--lg {
  width: 88px;
  height: 88px;
}

.nav-client-ring {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  border: 2px solid rgba(31, 58, 30, 0.14);
  background: rgba(255, 255, 255, 0.72);
  color: var(--forest-deep);
}

.nav-account-icon--client {
  display: grid;
  place-items: center;
}

.auth-tabs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4px;
  margin-bottom: 28px;
  padding: 6px;
  border-radius: 16px;
  background: rgba(31, 58, 30, 0.06);
}

.auth-tab {
  text-align: center;
  padding: 14px 10px;
  font-weight: 800;
  font-size: 13px;
  letter-spacing: 0.03em;
  text-transform: capitalize;
  border-radius: 12px;
  color: var(--muted);
  transition:
    background 0.22s ease,
    color 0.22s ease,
    box-shadow 0.22s ease,
    transform 0.18s ease;
}

.auth-tab:hover {
  color: var(--forest-deep);
  transform: translateY(-1px);
}

.auth-tab.is-active {
  background: rgba(255, 255, 255, 0.94);
  color: var(--forest-deep);
  box-shadow: 0 10px 26px rgba(52, 32, 8, 0.1);
  border-bottom: 3px solid var(--berry);
}

.auth-intro {
  margin-bottom: 18px;
  font-size: 15px;
}

.auth-field .auth-label {
  display: flex;
  align-items: center;
  gap: 6px;
  font-weight: 800;
  font-size: 14px;
  color: var(--forest-deep);
  margin-bottom: 8px;
}

.auth-field .req {
  color: #c0392b;
  text-decoration: none;
}

.auth-field input {
  border-radius: 18px !important;
  border: 1px solid rgba(31, 58, 30, 0.14) !important;
  padding: 14px 16px !important;
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}

.auth-field input:hover {
  border-color: rgba(227, 109, 31, 0.35) !important;
}

.auth-field input:focus {
  outline: none;
  border-color: var(--berry) !important;
  box-shadow: 0 0 0 4px rgba(227, 109, 31, 0.14);
}

.btn-auth-primary {
  margin-top: 8px;
  border-radius: 14px !important;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 900 !important;
  font-size: 15px !important;
  min-height: 54px !important;
  border: none !important;
  background: linear-gradient(135deg, #2d6a4f, var(--forest-deep)) !important;
  box-shadow:
    0 18px 38px rgba(31, 58, 30, 0.28),
    0 2px 0 rgba(255, 255, 255, 0.15) inset !important;
  color: #fff !important;
}

.btn-auth-primary:hover {
  filter: brightness(1.05);
}

.btn-auth-secondary {
  margin-top: 8px;
  border-radius: 14px !important;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 800 !important;
  font-size: 14px !important;
  min-height: 52px !important;
  background: transparent !important;
  color: var(--forest-deep) !important;
  border: 2px solid rgba(31, 58, 30, 0.28) !important;
}

.btn-auth-secondary:hover {
  border-color: rgba(227, 109, 31, 0.45) !important;
  background: rgba(255, 250, 240, 0.85) !important;
}

.profile-dashboard__hero {
  display: flex;
  gap: 22px;
  align-items: center;
  margin-bottom: 28px;
  flex-wrap: wrap;
  text-align: left;
}

.profile-dashboard__hero > * {
  min-width: 0;
}

.profile-page .auth-modal__eyebrow {
  justify-content: flex-start;
}

.profile-page .auth-modal__title,
.profile-dashboard__title {
  text-align: left !important;
  margin-bottom: 6px !important;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.profile-dashboard__email {
  margin: 0;
  font-weight: 700;
  text-align: left;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.nav-dropdown-user {
  text-align: left;
}

.profile-split {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr));
}

.profile-split > * {
  min-width: 0;
}

.profile-card-inner {
  padding: 22px;
  border-radius: 22px;
  border: 1px solid rgba(200, 152, 62, 0.22);
  background: rgba(255, 255, 255, 0.72);
}

.profile-card-inner--muted {
  background: rgba(243, 248, 238, 0.65);
}

.profile-card-heading {
  margin: 0 0 8px;
  font-size: 20px;
  color: var(--forest-deep);
}

.profile-card-note {
  margin-top: 0 !important;
  margin-bottom: 18px !important;
}

.profile-extra-links {
  margin-top: 18px !important;
}

.profile-extra-links a {
  font-weight: 800;
  color: var(--berry-dark);
}

@media (max-width: 640px) {
  .auth-tabs {
    grid-template-columns: 1fr;
  }

  .auth-tab.is-active {
    border-bottom: none;
    border-left: 4px solid var(--berry);
  }
}

/* —— Shop storefront (merged home + shop) —— */
.shop-storefront {
  padding-top: var(--section-space-y-tight) !important;
}

.shop-storefront__card {
  display: grid;
  gap: clamp(20px, 4vw, 32px);
  padding: clamp(16px, 3vw, 24px);
  border: 1px solid rgba(200, 152, 62, 0.28);
}

@media (min-width: 768px) {
  .shop-storefront__card {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
    align-items: start;
  }
}

.shop-storefront__media {
  text-align: center;
  background: linear-gradient(165deg, rgba(255, 247, 232, 0.9), rgba(255, 255, 255, 0.95));
  border-radius: var(--radius-md);
  padding: clamp(12px, 3vw, 20px);
}

.shop-storefront__media img {
  width: min(100%, 340px);
  height: auto;
  margin: 0 auto;
  display: block;
  object-fit: contain;
}

.shop-storefront__title {
  font-size: clamp(1.35rem, 4.5vw, 1.75rem);
  line-height: 1.25;
  margin: 0.35rem 0 0.5rem;
  color: var(--forest-deep);
}

.shop-storefront__teaser {
  margin: 0 0 1rem;
  font-size: 0.92rem;
  line-height: 1.55;
  color: var(--muted);
}

.shop-storefront__details-link {
  font-weight: 700;
  color: var(--forest);
  text-decoration: none;
  white-space: nowrap;
}

.shop-storefront__details-link:hover {
  text-decoration: underline;
}

.shop-storefront__meta-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px 12px;
  margin-bottom: 1rem;
  flex-wrap: nowrap;
}

.shop-storefront__qty-group {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

.page-about--spaced .page-header--tight {
  margin-top: clamp(10px, 2.5vw, 18px);
  padding-top: clamp(6px, 1.5vw, 12px);
}

.shop-storefront__price-badges {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.pill-discount {
  background: #fef3c7;
  color: #b45309;
  font-weight: 800;
  font-size: 0.72rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 999px;
  border: 1px solid #fcd34d;
}

.footer-fssai {
  font-size: 0.88rem;
  color: #cbd5e1;
  margin-top: 0;
}

.shop-storefront__price-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 14px;
  margin-bottom: 1rem;
}

.shop-storefront__price-main {
  display: flex;
  align-items: baseline;
  gap: 10px;
  flex-wrap: wrap;
}

.shop-storefront__price-current {
  font-family: Fraunces, Georgia, serif;
  font-size: clamp(1.75rem, 6vw, 2.25rem);
  font-weight: 800;
  color: var(--forest-deep);
  letter-spacing: -0.02em;
}

.shop-storefront__price-compare {
  font-size: 1rem;
  color: var(--muted);
  text-decoration: line-through;
}

.pill-sale {
  background: linear-gradient(135deg, #f07830, #e36d1f);
  color: #fff;
  font-weight: 800;
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 999px;
}

.pill-instock {
  background: #eaf7ef;
  color: var(--forest-deep);
  font-weight: 700;
  font-size: 0.8rem;
  padding: 6px 12px;
  border-radius: 999px;
  border: 1px solid rgba(31, 58, 30, 0.12);
}

.shop-storefront__options {
  border: 0;
  margin: 0 0 1rem;
  padding: 0;
}

.shop-storefront__options-legend {
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--forest);
  margin-bottom: 10px;
  padding: 0;
}

.pack-options {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.pack-option {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2px;
  padding: 12px 10px;
  min-width: 0;
  border: 2px solid rgba(31, 58, 30, 0.14);
  border-radius: 14px;
  background: #fff;
  cursor: pointer;
  text-align: left;
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease,
    background 0.2s ease;
}

.pack-option:hover:not(:disabled) {
  border-color: rgba(227, 109, 31, 0.45);
}

.pack-option.is-selected {
  border-color: var(--berry);
  background: rgba(255, 244, 232, 0.85);
  box-shadow: 0 8px 24px rgba(227, 109, 31, 0.15);
}

.pack-option__check {
  position: absolute;
  top: 8px;
  right: 8px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--berry);
  color: #fff;
  font-size: 12px;
  line-height: 22px;
  text-align: center;
  opacity: 0;
  transform: scale(0.6);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.pack-option.is-selected .pack-option__check {
  opacity: 1;
  transform: scale(1);
}

.pack-option__label {
  font-weight: 800;
  font-size: 0.78rem;
  color: var(--forest-deep);
  line-height: 1.2;
}

.pack-option__price {
  font-weight: 800;
  font-size: 0.95rem;
  color: var(--forest-deep);
  line-height: 1.2;
}

.pack-option__compare {
  font-size: 0.72rem;
  color: var(--muted);
  text-decoration: line-through;
  line-height: 1.2;
}

.pack-option__save {
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--berry-dark);
  line-height: 1.2;
}

.shop-storefront__qty-label {
  font-weight: 700;
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  color: var(--muted);
  text-transform: uppercase;
  white-space: nowrap;
}

.qty-stepper {
  display: inline-flex;
  align-items: stretch;
  border: 1px solid rgba(31, 58, 30, 0.18);
  border-radius: 12px;
  overflow: hidden;
  background: #fff;
}

.qty-stepper__btn {
  width: 40px;
  min-height: 40px;
  border: 0;
  background: rgba(31, 58, 30, 0.06);
  color: var(--forest-deep);
  font-size: 1.25rem;
  font-weight: 700;
  cursor: pointer;
  line-height: 1;
}

.qty-stepper__btn:disabled {
  opacity: 0.45;
  cursor: not-allowed;
}

.qty-stepper__input {
  width: 44px;
  border: 0;
  border-left: 1px solid rgba(31, 58, 30, 0.1);
  border-right: 1px solid rgba(31, 58, 30, 0.1);
  text-align: center;
  font-weight: 800;
  font-size: 1rem;
  color: var(--forest-deep);
  background: #fff;
  -moz-appearance: textfield;
}

.qty-stepper__input::-webkit-outer-spin-button,
.qty-stepper__input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.shop-storefront__actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.shop-storefront__actions .btn {
  width: 100%;
  min-height: 48px;
  padding: 12px 10px;
  font-size: 0.92rem;
  font-weight: 800;
  border-radius: 14px;
}

.pill-instock {
  flex-shrink: 0;
  white-space: nowrap;
}

.btn-buy-now {
  background: var(--forest-deep) !important;
  color: #fff !important;
  border: 0 !important;
  box-shadow: 0 12px 28px rgba(16, 35, 18, 0.28) !important;
}

.btn-buy-now:hover:not(:disabled) {
  filter: brightness(1.08);
}

.shop-storefront__hint {
  min-height: 1.25em;
  margin-top: 8px;
}

.shop-home-about .about-vaid-card {
  margin-bottom: 0;
}

.shop-benefits {
  padding-top: clamp(28px, 4vw, 48px);
}

.shop-benefits .section-heading h2 {
  margin-bottom: 12px;
}

.shop-benefits__grid .benefit-card h3 {
  margin: 0 0 10px;
  font-size: clamp(1.1rem, 2.2vw, 1.35rem);
  color: var(--forest-deep);
}

.shop-product-details .card-panel {
  margin-bottom: 0;
}

@media (max-width: 720px) {
  .cards-grid--two,
  .shop-benefits__grid {
    grid-template-columns: 1fr;
  }

  .shop-product-details__trust {
    grid-template-columns: 1fr;
  }
}