* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--surface);
  font-family: var(--sans);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}
body.modal-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
.ui-icon { display: block; flex: 0 0 auto; }
/* Real logo <img> icons (WhatsApp/Facebook/Instagram/Gmail/FSSAI) - one
   fixed size everywhere regardless of each source image's own dimensions,
   so a wide logo and a square logo read as the same visual size. */
.brand-icon { display: block; flex: 0 0 auto; width: 44px; height: 44px; object-fit: contain; }
/* Gmail and FSSAI are cropped tight to their mark (~99.7% canvas fill) while
   Instagram/WhatsApp/Facebook have a built-in padded circle (~59.7% fill),
   so at identical box size the former read visually larger/bolder. Shrink
   them to match the others' apparent visual weight (ratio measured from
   the source files' actual pixel content, not guessed). */
.brand-icon--tight { transform: scale(.6); }
/* Shared rounded-square "badge" treatment for the five brand-logo icons
   (Email/Instagram/WhatsApp/Facebook/FSSAI) -- the one consistent visual
   presentation used at every location: footer, Contact page, Help page,
   My Account "Need Help?" card, and the Licences page email line. */
.icon-badge { width: 44px; height: 44px; border-radius: 11px; display: grid; place-items: center; flex: 0 0 auto; background: var(--beige); overflow: hidden; }
button, input, select, textarea { font: inherit; }
button, a, input, select, textarea { -webkit-tap-highlight-color: transparent; }
button { color: inherit; }
:focus-visible { outline: 3px solid rgba(10,146,63,.38); outline-offset: 3px; }
.container { width: min(calc(100% - 48px), var(--container)); margin-inline: auto; }
.page-main { min-height: 62vh; }
.section { padding: 30px 0; }
.section-soft { background: linear-gradient(180deg, var(--cream), var(--surface)); }
.section-head { display: flex; align-items: end; justify-content: space-between; gap: 20px; margin-bottom: 18px; }
.section-title { margin: 0; font: 700 clamp(1.45rem, 2vw, 2rem)/1.15 var(--serif); }
.section-title.sans { font-family: var(--sans); font-size: clamp(1.25rem, 1.7vw, 1.55rem); }
.eyebrow { color: var(--red); font-size: .78rem; font-weight: 800; text-transform: uppercase; letter-spacing: .14em; }
.muted { color: var(--muted); }
.red-link { color: var(--red); font-weight: 700; white-space: nowrap; }
.text-link { color: var(--green); font-weight: 700; }
.serif { font-family: var(--serif); }
.hidden { display: none !important; }
.mobile-only { display: none; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
/* Shared "icon + text" row: icon top-aligns to the first line of the text
   instead of vertically centering, so a wrapped email/phone number on
   narrow screens never overlaps the icon on its second line. */
.icon-text-row { display: flex; align-items: center; gap: 13px; }
.btn {
  min-height: 44px; border: 1px solid transparent; border-radius: 10px; padding: 0 20px;
  display: inline-flex; align-items: center; justify-content: center; gap: 8px; cursor: pointer;
  font-weight: 750; transition: .2s ease; background: var(--surface);
}
.btn:hover { transform: translateY(-1px); box-shadow: var(--shadow-sm); }
.btn-primary { color: #fff; background: var(--green); }
.btn-primary:hover { background: var(--green-dark); }
.btn-secondary { color: var(--green); border-color: #b7dcc3; }
.btn-danger { color: var(--red); border-color: #efc3c4; }
.btn-wide { width: 100%; }
.icon-btn { width: 44px; height: 44px; border: 1px solid var(--line); border-radius: 50%; background: var(--surface); display: inline-grid; place-items: center; cursor: pointer; position: relative; }
.count { position: absolute; top: -5px; right: -5px; min-width: 19px; height: 19px; padding: 0 5px; border-radius: 99px; background: var(--red); color: #fff; font-size: .68rem; font-weight: 800; display: grid; place-items: center; }
.count[hidden] { display: none !important; }
.badge { display: inline-flex; align-items: center; border-radius: 6px; padding: 4px 9px; background: var(--green-soft); color: var(--green); font-size: .78rem; font-weight: 700; }
.badge.warning { background: #fff1db; color: #c66b00; }
.badge.danger { background: #fde9ea; color: var(--red); }
.card { border: 1px solid var(--line); border-radius: var(--radius); background: var(--surface); box-shadow: var(--shadow-sm); }
.empty-state { text-align: center; padding: 64px 24px; border: 1px dashed var(--line); border-radius: var(--radius); background: var(--cream); }
.empty-state .empty-icon { font-size: 2.6rem; margin-bottom: 12px; }
.toast-region { position: fixed; z-index: 1000; right: 24px; bottom: 90px; display: grid; gap: 10px; }
.toast { color: #fff; background: #1d2c22; border-radius: 10px; padding: 13px 18px; box-shadow: var(--shadow); animation: toastIn .25s ease both; }
@keyframes toastIn { from { opacity: 0; transform: translateY(12px); } }

/* WooCommerce's own wc_print_notices() output (account save, order flows,
   etc.) — restyled to match this design system's success/error language. */
.woocommerce-message, .woocommerce-error, .woocommerce-info {
  margin: 0 0 16px; padding: 11px 14px; display: flex; align-items: center; gap: 9px;
  border-radius: 10px; font-size: .84rem; font-weight: 700; list-style: none;
}
.woocommerce-message { color: var(--green); background: var(--green-soft); border: 1px solid #b9dfc4; }
.woocommerce-error, .woocommerce-error li { color: var(--red); }
.woocommerce-error { background: #fde9ea; border: 1px solid #f3c4c6; }
.woocommerce-info { color: var(--ink); background: var(--cream); border: 1px solid var(--line); }
.woocommerce-error li { list-style: none; }

@media (prefers-color-scheme: dark) {
  .brand-lockup, .footer-brand img { background: #fff; border-radius: 10px; }
}
