:root {
  --forest: #173b2a;
  --forest-deep: #0d261a;
  --forest-soft: #2d5742;
  --gold: #c49a3a;
  --gold-light: #f0d89a;
  --ink: #18201b;
  --muted: #617067;
  --paper: #ffffff;
  --canvas: #f3f6f2;
  --warm: #f4efe4;
  --line: #d8e0da;
  --danger: #9d2f2f;
  --shadow: 0 18px 46px rgba(13, 38, 26, 0.16);
  --header-height: 76px;
}

* {
  box-sizing: border-box;
  letter-spacing: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 18px);
}

body {
  margin: 0;
  min-width: 320px;
  background: var(--canvas);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

body.is-locked {
  overflow: hidden;
}

button,
input,
select,
textarea {
  color: inherit;
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  cursor: pointer;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  line-height: 1.08;
}

h1 {
  font-size: clamp(2.7rem, 5vw, 4.7rem);
  max-width: 860px;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2rem, 3vw, 3.25rem);
}

h3 {
  font-size: 1.3rem;
}

svg {
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
  stroke-width: 1.9;
}

.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;
}

.skip-link {
  position: fixed;
  z-index: 200;
  top: 10px;
  left: 10px;
  padding: 10px 14px;
  background: var(--paper);
  color: var(--forest);
  transform: translateY(-160%);
}

.skip-link:focus {
  transform: translateY(0);
}

.eyebrow {
  margin-bottom: 10px;
  color: var(--gold);
  font-size: 0.76rem;
  font-weight: 800;
  text-transform: uppercase;
}

.button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 11px 18px;
  border: 1px solid transparent;
  border-radius: 6px;
  font-weight: 760;
  line-height: 1.2;
  text-align: center;
  transition: background-color 160ms ease, border-color 160ms ease, color 160ms ease, transform 160ms ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button:focus-visible,
.icon-only:focus-visible,
.filter-button:focus-visible,
.quick-action:focus-visible,
.mobile-nav a:focus-visible,
.mobile-nav button:focus-visible,
.chat-prompts button:focus-visible,
.footer-button:focus-visible {
  outline: 3px solid var(--gold-light);
  outline-offset: 2px;
}

.button--primary {
  background: var(--gold);
  color: #15150f;
}

.button--primary:hover {
  background: #d1a748;
}

.button--secondary {
  border-color: var(--forest);
  background: transparent;
  color: var(--forest);
}

.button--secondary:hover {
  background: var(--forest);
  color: var(--paper);
}

.button--quiet {
  border-color: var(--line);
  background: transparent;
  color: inherit;
}

.button--light {
  background: var(--paper);
  color: var(--forest-deep);
}

.icon-only {
  display: inline-grid;
  width: 42px;
  height: 42px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--paper);
  place-items: center;
}

.site-header {
  position: sticky;
  z-index: 80;
  top: 0;
  height: var(--header-height);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(13, 38, 26, 0.97);
  color: var(--paper);
  backdrop-filter: blur(12px);
}

.header-inner {
  display: flex;
  width: min(1400px, calc(100% - 40px));
  height: 100%;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin: 0 auto;
}

.brand {
  display: flex;
  min-width: 196px;
  align-items: center;
  gap: 12px;
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.brand img {
  width: 142px;
  height: 44px;
  object-fit: contain;
  object-position: left center;
}

.brand span {
  padding-left: 12px;
  border-left: 1px solid rgba(255, 255, 255, 0.28);
  color: var(--gold-light);
}

.desktop-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  font-size: 0.92rem;
  font-weight: 680;
}

.desktop-nav a {
  color: rgba(255, 255, 255, 0.83);
}

.desktop-nav a:hover {
  color: var(--paper);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.header-contact {
  border-color: rgba(255, 255, 255, 0.26);
}

.hero {
  position: relative;
  display: grid;
  min-height: min(690px, calc(100svh - var(--header-height)));
  overflow: hidden;
  background-image: url("/assets/retail-shelf.jpg");
  background-position: center;
  background-size: cover;
  color: var(--paper);
  isolation: isolate;
}

.hero__shade {
  position: absolute;
  z-index: -1;
  inset: 0;
  background: rgba(7, 22, 15, 0.69);
}

.hero__content {
  width: min(1400px, calc(100% - 40px));
  align-self: center;
  margin: 0 auto;
  padding: 76px 0 92px;
}

.hero h1 {
  margin-bottom: 24px;
}

.hero__content > p:not(.eyebrow) {
  max-width: 720px;
  margin-bottom: 30px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 1.13rem;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero__trust {
  display: flex;
  flex-wrap: wrap;
  gap: 18px 28px;
  margin-top: 34px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.22);
  color: rgba(255, 255, 255, 0.83);
  font-size: 0.88rem;
}

.hero__trust span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.hero__trust svg {
  color: var(--gold-light);
}

.quick-actions {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  width: min(1400px, calc(100% - 40px));
  margin: -34px auto 0;
  border: 1px solid var(--line);
  background: var(--paper);
  box-shadow: var(--shadow);
  position: relative;
  z-index: 4;
}

.quick-action {
  display: grid;
  min-height: 118px;
  grid-template-columns: 34px 1fr 20px;
  align-items: center;
  gap: 13px;
  padding: 24px 22px;
  border-right: 1px solid var(--line);
}

.quick-action:last-child {
  border-right: 0;
}

.quick-action > svg:first-child {
  width: 28px;
  height: 28px;
  color: var(--gold);
}

.quick-action > svg:last-child {
  color: #8d9a91;
}

.quick-action span {
  display: grid;
  min-width: 0;
  gap: 4px;
}

.quick-action strong,
.quick-action small {
  overflow-wrap: anywhere;
}

.quick-action small {
  color: var(--muted);
  font-size: 0.8rem;
}

.catalog-section,
.partner-section,
.process-section {
  width: min(1400px, calc(100% - 40px));
  margin: 0 auto;
  padding: 108px 0;
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 30px;
}

.section-heading > div {
  max-width: 820px;
}

.section-heading p:not(.eyebrow) {
  max-width: 730px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 1.02rem;
}

.section-heading--compact {
  margin-bottom: 18px;
}

.search-control {
  display: flex;
  width: min(360px, 100%);
  min-height: 48px;
  align-items: center;
  gap: 10px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--paper);
}

.search-control svg {
  color: var(--muted);
}

.search-control input {
  width: 100%;
  min-width: 0;
  padding: 11px 0;
  border: 0;
  outline: 0;
  background: transparent;
}

.pricing-notice {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 20px;
  padding: 18px;
  border: 1px solid #dfd2ac;
  border-radius: 6px;
  background: #fbf6e9;
}

.pricing-notice > svg {
  margin-top: 2px;
  color: #8a681d;
}

.pricing-notice div {
  display: grid;
  gap: 3px;
}

.pricing-notice span {
  color: #625b48;
  font-size: 0.9rem;
}

.catalog-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 18px;
  padding: 12px;
  border: 1px solid var(--line);
  background: var(--paper);
}

.filter-group {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.filter-button {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border: 1px solid transparent;
  border-radius: 5px;
  background: transparent;
  color: var(--muted);
  font-weight: 700;
}

.filter-button:hover,
.filter-button.is-active {
  border-color: var(--line);
  background: #eef3ef;
  color: var(--forest);
}

.brand-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
}

.brand-dot--upleef {
  background: #51ad3d;
}

.brand-dot--fronto {
  background: var(--gold);
}

.select-control {
  position: relative;
  display: flex;
  min-width: 210px;
  align-items: center;
}

.select-control select {
  width: 100%;
  min-height: 42px;
  appearance: none;
  padding: 8px 38px 8px 13px;
  border: 1px solid var(--line);
  border-radius: 5px;
  background: var(--paper);
  font-weight: 680;
}

.select-control svg {
  position: absolute;
  right: 12px;
  pointer-events: none;
}

.catalog-state {
  min-height: 28px;
  margin-bottom: 10px;
  color: var(--muted);
  font-size: 0.88rem;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.product-card {
  display: flex;
  min-width: 0;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--paper);
}

.product-card__media {
  position: relative;
  display: grid;
  height: 250px;
  padding: 18px;
  overflow: hidden;
  border-bottom: 1px solid #e6ece7;
  background: #f8faf8;
  place-items: center;
}

.product-card__media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.product-card__brand {
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 5px 8px;
  border: 1px solid rgba(23, 59, 42, 0.14);
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.93);
  color: var(--forest);
  font-size: 0.68rem;
  font-weight: 820;
  text-transform: uppercase;
}

.product-card__body {
  display: flex;
  min-height: 270px;
  flex: 1;
  flex-direction: column;
  padding: 18px;
}

.product-card__category {
  margin-bottom: 7px;
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 820;
  text-transform: uppercase;
}

.product-card h3 {
  min-height: 44px;
  margin-bottom: 10px;
  font-size: 1.14rem;
}

.product-card__format {
  min-height: 42px;
  margin-bottom: 12px;
  color: var(--muted);
  font-size: 0.84rem;
}

.product-card__price {
  display: flex;
  align-items: center;
  gap: 7px;
  margin: auto 0 14px;
  padding: 10px;
  background: #edf3ef;
  color: var(--forest);
  font-size: 0.8rem;
  font-weight: 720;
}

.product-card__actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.product-card__actions .button {
  min-height: 42px;
  padding: 9px 10px;
  font-size: 0.82rem;
}

.empty-state {
  grid-column: 1 / -1;
  padding: 46px 24px;
  border: 1px dashed #b6c0b9;
  background: var(--paper);
  text-align: center;
}

.empty-state h3 {
  margin-bottom: 8px;
}

.empty-state p {
  margin-bottom: 0;
  color: var(--muted);
}

.brand-band {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(230px, 0.7fr) minmax(230px, 0.7fr);
  gap: 1px;
  background: rgba(255, 255, 255, 0.15);
  color: var(--paper);
}

.brand-band > * {
  min-width: 0;
  padding: 58px clamp(24px, 4vw, 66px);
  background: var(--forest-deep);
}

.brand-band__copy p:not(.eyebrow) {
  max-width: 680px;
  margin-bottom: 24px;
  color: rgba(255, 255, 255, 0.72);
}

.brand-lockup {
  display: flex;
  min-height: 320px;
  flex-direction: column;
  justify-content: center;
}

.brand-lockup img {
  width: min(190px, 100%);
  height: 78px;
  margin-bottom: 28px;
  object-fit: contain;
  object-position: left center;
}

.brand-lockup--upleef img {
  filter: drop-shadow(0 3px 0 rgba(0, 0, 0, 0.1));
}

.brand-lockup strong {
  margin-bottom: 6px;
  color: var(--gold-light);
}

.brand-lockup span {
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.86rem;
}

.partner-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 15px;
}

.partner-lane {
  display: flex;
  min-height: 344px;
  flex-direction: column;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--paper);
}

.partner-lane__icon {
  display: grid;
  width: 48px;
  height: 48px;
  margin-bottom: 30px;
  border: 1px solid #d4c292;
  background: #fbf5e6;
  color: #856619;
  place-items: center;
}

.partner-lane__label {
  margin-bottom: 8px;
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 820;
  text-transform: uppercase;
}

.partner-lane h3 {
  min-height: 54px;
  margin-bottom: 12px;
}

.partner-lane > p:not(.partner-lane__label) {
  margin-bottom: 22px;
  color: var(--muted);
}

.partner-lane .button {
  width: 100%;
  margin-top: auto;
}

.coverage-section {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 1px;
  background: #d4ddd6;
}

.coverage-section__intro,
.coverage-checker {
  padding: 76px max(28px, calc((100vw - 1400px) / 2));
  background: #e8eee9;
}

.coverage-section__intro {
  padding-right: clamp(30px, 7vw, 110px);
}

.coverage-section__intro > p:not(.eyebrow) {
  max-width: 710px;
  color: var(--muted);
}

.operating-lanes {
  display: grid;
  gap: 1px;
  margin-top: 30px;
  background: #c8d4ca;
}

.operating-lanes span {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 16px;
  padding: 15px;
  background: rgba(255, 255, 255, 0.72);
}

.operating-lanes strong {
  color: var(--forest);
}

.coverage-checker {
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--warm);
}

.coverage-checker__heading {
  display: flex;
  align-items: center;
  gap: 14px;
}

.coverage-checker__heading > svg {
  width: 34px;
  height: 34px;
  color: var(--gold);
}

.coverage-checker__heading span {
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 720;
  text-transform: uppercase;
}

.coverage-checker__heading h3 {
  margin: 2px 0 0;
}

.coverage-checker > p {
  max-width: 430px;
  margin: 24px 0;
  color: #625b4c;
}

.coverage-checker .button {
  align-self: flex-start;
}

.jamaica-operation {
  display: grid;
  grid-column: 1 / -1;
  grid-template-columns: minmax(220px, 0.55fr) minmax(280px, 1fr) auto;
  align-items: center;
  gap: 28px;
  padding: 36px max(28px, calc((100vw - 1400px) / 2));
  background: #183628;
  color: var(--paper);
}

.jamaica-operation > div {
  display: grid;
  grid-template-columns: 52px 1fr;
  column-gap: 14px;
  align-items: center;
}

.jamaica-operation__flag {
  display: grid;
  width: 52px;
  height: 52px;
  grid-row: 1 / span 2;
  border: 1px solid var(--gold);
  color: var(--gold-light);
  font-weight: 820;
  place-items: center;
}

.jamaica-operation .eyebrow,
.jamaica-operation h3,
.jamaica-operation p {
  margin-bottom: 0;
}

.jamaica-operation > p {
  color: rgba(255, 255, 255, 0.72);
}

.status-pill {
  padding: 9px 12px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 999px;
  color: var(--gold-light);
  font-size: 0.76rem;
  font-weight: 740;
  white-space: nowrap;
}

.business-section {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(340px, 0.75fr);
  gap: 60px;
  padding: 98px max(28px, calc((100vw - 1400px) / 2));
  background: var(--paper);
}

.business-section__intro > p:not(.eyebrow) {
  max-width: 750px;
  color: var(--muted);
}

.business-section__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.account-status {
  align-self: start;
  border: 1px solid var(--line);
  border-top: 4px solid var(--gold);
  background: #f7f9f7;
}

.account-status__header {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 22px;
}

.status-icon {
  display: grid;
  width: 48px;
  height: 48px;
  background: var(--forest);
  color: var(--paper);
  place-items: center;
}

.status-kicker {
  color: var(--muted);
  font-size: 0.74rem;
  font-weight: 750;
  text-transform: uppercase;
}

.account-status h3 {
  margin: 2px 0 0;
}

.status-list {
  margin: 0;
}

.status-list > div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 13px 22px;
  border-top: 1px solid var(--line);
}

.status-list dt {
  color: var(--muted);
}

.status-list dd {
  margin: 0;
  color: var(--forest);
  font-weight: 780;
  text-align: right;
}

.process-section {
  padding-top: 86px;
}

.process-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  padding: 0;
  margin: 0;
  background: var(--line);
  list-style: none;
}

.process-list li {
  display: flex;
  min-height: 180px;
  gap: 14px;
  padding: 26px;
  background: var(--paper);
}

.process-list li > span {
  display: grid;
  width: 34px;
  height: 34px;
  flex: 0 0 auto;
  border: 1px solid var(--gold);
  color: #765a18;
  font-weight: 800;
  place-items: center;
}

.process-list p {
  margin: 7px 0 0;
  color: var(--muted);
  font-size: 0.88rem;
}

.company-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  padding: 86px max(28px, calc((100vw - 1400px) / 2));
  background: #1c3528;
  color: var(--paper);
}

.company-section h2 {
  max-width: 690px;
}

.company-section__copy {
  align-self: center;
}

.company-section__copy > p {
  color: rgba(255, 255, 255, 0.72);
}

.company-contact {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 24px;
  margin-top: 24px;
}

.company-contact a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--gold-light);
  font-weight: 720;
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(260px, 1.4fr) repeat(3, minmax(170px, 0.55fr));
  gap: 42px;
  padding: 54px max(28px, calc((100vw - 1400px) / 2)) 66px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  background: var(--forest-deep);
  color: var(--paper);
}

.site-footer__brand img {
  width: 190px;
  height: 60px;
  margin-bottom: 16px;
  object-fit: contain;
  object-position: left center;
}

.site-footer__brand p {
  max-width: 300px;
  color: rgba(255, 255, 255, 0.64);
}

.site-footer > div:not(.site-footer__brand) {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 11px;
}

.site-footer strong {
  margin-bottom: 6px;
  color: var(--gold-light);
  font-size: 0.78rem;
  text-transform: uppercase;
}

.site-footer a,
.footer-button,
.site-footer span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.86rem;
}

.site-footer a:hover,
.footer-button:hover {
  color: var(--paper);
}

.footer-button {
  padding: 0;
  border: 0;
  background: transparent;
}

.mobile-nav {
  display: none;
}

.scrim {
  position: fixed;
  z-index: 110;
  inset: 0;
  background: rgba(7, 18, 12, 0.56);
  backdrop-filter: blur(2px);
}

.cart-drawer {
  position: fixed;
  z-index: 120;
  top: 0;
  right: 0;
  display: flex;
  width: min(480px, 100%);
  height: 100dvh;
  flex-direction: column;
  border-left: 1px solid var(--line);
  background: var(--paper);
  box-shadow: -18px 0 44px rgba(7, 25, 15, 0.18);
  transform: translateX(102%);
  transition: transform 180ms ease;
}

.cart-drawer.is-open {
  transform: translateX(0);
}

.drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 22px;
  border-bottom: 1px solid var(--line);
}

.drawer-header .eyebrow,
.drawer-header h2 {
  margin-bottom: 0;
}

.drawer-header h2 {
  font-size: 1.7rem;
}

.cart-pricing-note {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 15px 22px;
  background: #eef4ef;
  color: #405548;
  font-size: 0.82rem;
}

.cart-pricing-note svg {
  color: var(--forest);
}

.cart-items {
  flex: 1;
  overflow-y: auto;
  padding: 8px 22px;
}

.cart-empty {
  display: grid;
  min-height: 240px;
  align-content: center;
  justify-items: center;
  color: var(--muted);
  text-align: center;
}

.cart-empty svg {
  width: 42px;
  height: 42px;
  margin-bottom: 12px;
  color: #9eaaa1;
}

.cart-empty p {
  max-width: 260px;
}

.cart-item {
  display: grid;
  grid-template-columns: 72px 1fr auto;
  gap: 12px;
  align-items: center;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
}

.cart-item__image {
  display: grid;
  width: 72px;
  height: 72px;
  padding: 5px;
  background: #f5f7f5;
  place-items: center;
}

.cart-item__image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.cart-item__details {
  min-width: 0;
}

.cart-item__details span {
  color: var(--muted);
  font-size: 0.72rem;
}

.cart-item__details strong {
  display: block;
  margin: 2px 0 8px;
  overflow-wrap: anywhere;
  font-size: 0.88rem;
}

.quantity-control {
  display: inline-grid;
  grid-template-columns: 30px 36px 30px;
  align-items: center;
  border: 1px solid var(--line);
}

.quantity-control button {
  display: grid;
  width: 30px;
  height: 30px;
  padding: 0;
  border: 0;
  background: transparent;
  place-items: center;
}

.quantity-control input {
  width: 36px;
  height: 30px;
  padding: 0;
  border: 0;
  border-right: 1px solid var(--line);
  border-left: 1px solid var(--line);
  outline: 0;
  text-align: center;
}

.cart-remove {
  width: 34px;
  height: 34px;
  border: 0;
  background: transparent;
  color: var(--muted);
}

.cart-recommendations {
  margin: 0 22px 12px;
  padding: 14px;
  border: 1px solid #dfd2ac;
  background: #fbf6e9;
}

.cart-recommendations .eyebrow {
  margin-bottom: 9px;
}

.recommendation {
  display: grid;
  grid-template-columns: 54px 1fr auto;
  gap: 10px;
  align-items: center;
}

.recommendation img {
  width: 54px;
  height: 54px;
  object-fit: contain;
}

.recommendation strong {
  display: block;
  font-size: 0.82rem;
}

.recommendation span {
  color: var(--muted);
  font-size: 0.7rem;
}

.recommendation button {
  width: 36px;
  height: 36px;
}

.cart-summary {
  padding: 18px 22px 22px;
  border-top: 1px solid var(--line);
}

.cart-summary .button {
  width: 100%;
}

.cart-summary p {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 0.74rem;
  text-align: center;
}

dialog {
  width: min(780px, calc(100% - 28px));
  max-height: calc(100dvh - 28px);
  padding: 0;
  overflow: auto;
  border: 0;
  border-radius: 7px;
  background: var(--paper);
  box-shadow: var(--shadow);
}

dialog::backdrop {
  background: rgba(7, 18, 12, 0.68);
  backdrop-filter: blur(3px);
}

.modal-close {
  position: sticky;
  z-index: 2;
  top: 14px;
  display: grid;
  width: 42px;
  height: 42px;
  float: right;
  margin: 14px 14px -56px 0;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.94);
  place-items: center;
}

.product-modal__layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
}

.product-modal__media {
  display: grid;
  min-height: 520px;
  padding: 38px;
  background: #f5f8f5;
  place-items: center;
}

.product-modal__media img {
  width: 100%;
  max-height: 420px;
  object-fit: contain;
}

.product-modal__details {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 46px 38px;
}

.product-modal__details h2 {
  font-size: 2rem;
}

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

.product-modal__facts {
  display: grid;
  gap: 1px;
  margin: 18px 0 22px;
  background: var(--line);
}

.product-modal__facts div {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 11px 12px;
  background: #f7f9f7;
}

.product-modal__facts span {
  color: var(--muted);
}

.product-modal__facts strong {
  text-align: right;
}

.product-modal__details .button {
  width: 100%;
}

.order-modal {
  width: min(700px, calc(100% - 28px));
  padding: 36px;
}

.order-modal__heading {
  padding-right: 48px;
}

.order-modal__heading > p:last-child {
  color: var(--muted);
}

.order-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.order-modal label {
  display: grid;
  gap: 6px;
  color: #425147;
  font-size: 0.8rem;
  font-weight: 720;
}

.order-modal input:not([type="checkbox"]),
.order-modal select {
  width: 100%;
  min-height: 46px;
  padding: 10px 12px;
  border: 1px solid #bec9c1;
  border-radius: 5px;
  background: var(--paper);
  outline: 0;
}

.order-modal input:focus,
.order-modal select:focus {
  border-color: var(--forest);
  box-shadow: 0 0 0 3px rgba(23, 59, 42, 0.12);
}

.order-acknowledgment {
  display: grid !important;
  grid-template-columns: 20px 1fr;
  gap: 10px !important;
  margin: 20px 0;
  padding: 14px;
  background: #f1f5f2;
}

.order-acknowledgment input {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  accent-color: var(--forest);
}

.payment-safety {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 18px;
  padding: 13px;
  border-left: 4px solid var(--gold);
  background: #fbf6e9;
  color: #5c5543;
  font-size: 0.82rem;
}

.order-modal form > .button {
  width: 100%;
}

.order-form-status {
  min-height: 22px;
  margin: 10px 0 0;
  color: var(--forest);
  font-size: 0.8rem;
  text-align: center;
}

.age-gate {
  width: min(760px, calc(100% - 28px));
  max-height: none;
  overflow: hidden;
}

.age-gate[open] {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
}

.age-gate__brand {
  display: grid;
  min-height: 320px;
  padding: 30px;
  background: var(--forest-deep);
  place-items: center;
}

.age-gate__brand img {
  width: 220px;
}

.age-gate__body {
  align-self: center;
  padding: 44px;
}

.age-gate__body h1 {
  margin-bottom: 16px;
  font-size: 2.5rem;
}

.age-gate__body > p:not(.eyebrow) {
  color: var(--muted);
}

.age-gate__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.chat-launcher {
  position: fixed;
  z-index: 75;
  right: 22px;
  bottom: 22px;
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  gap: 9px;
  padding: 12px 17px;
  border: 0;
  border-radius: 7px;
  background: var(--forest);
  color: var(--paper);
  box-shadow: 0 12px 28px rgba(13, 38, 26, 0.25);
  font-weight: 760;
}

.chat-panel {
  position: fixed;
  z-index: 100;
  right: 20px;
  bottom: 20px;
  display: flex;
  width: min(390px, calc(100% - 24px));
  height: min(610px, calc(100dvh - 40px));
  flex-direction: column;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: var(--paper);
  box-shadow: var(--shadow);
  opacity: 0;
  pointer-events: none;
  transform: translateY(16px);
  transition: opacity 160ms ease, transform 160ms ease;
}

.chat-panel.is-open {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.chat-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 16px;
  background: var(--forest-deep);
  color: var(--paper);
}

.chat-header > div {
  display: flex;
  align-items: center;
  gap: 10px;
}

.chat-status {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #7fcb5d;
  box-shadow: 0 0 0 4px rgba(127, 203, 93, 0.14);
}

.chat-header h2 {
  margin: 0;
  font-size: 1rem;
}

.chat-header p {
  margin: 2px 0 0;
  color: rgba(255, 255, 255, 0.64);
  font-size: 0.7rem;
}

.chat-header .icon-only {
  border-color: rgba(255, 255, 255, 0.2);
  background: transparent;
  color: var(--paper);
}

.chat-messages {
  flex: 1;
  overflow-y: auto;
  padding: 16px;
  background: #f4f7f4;
}

.chat-message {
  display: flex;
  margin-bottom: 12px;
}

.chat-message p {
  max-width: 88%;
  margin: 0;
  padding: 11px 13px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--paper);
  font-size: 0.84rem;
}

.chat-message--user {
  justify-content: flex-end;
}

.chat-message--user p {
  border-color: var(--forest);
  background: var(--forest);
  color: var(--paper);
}

.chat-message a {
  color: var(--forest);
  font-weight: 760;
  text-decoration: underline;
}

.chat-prompts {
  display: flex;
  gap: 6px;
  padding: 10px 12px;
  overflow-x: auto;
  border-top: 1px solid var(--line);
  background: var(--paper);
}

.chat-prompts button {
  min-height: 34px;
  flex: 0 0 auto;
  padding: 7px 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--paper);
  color: var(--forest);
  font-size: 0.72rem;
  font-weight: 690;
}

.chat-form {
  display: grid;
  grid-template-columns: 1fr 42px;
  gap: 6px;
  padding: 10px;
  border-top: 1px solid var(--line);
  background: var(--paper);
}

.chat-form label {
  min-width: 0;
}

.chat-form input {
  width: 100%;
  height: 42px;
  padding: 9px 10px;
  border: 1px solid var(--line);
  border-radius: 5px;
  outline: 0;
}

.chat-send {
  border-color: var(--forest);
  background: var(--forest);
  color: var(--paper);
}

.toast {
  position: fixed;
  z-index: 180;
  right: 20px;
  bottom: 86px;
  max-width: min(360px, calc(100% - 40px));
  padding: 12px 16px;
  border-radius: 6px;
  background: #111c15;
  color: var(--paper);
  box-shadow: var(--shadow);
  font-size: 0.84rem;
  font-weight: 680;
  pointer-events: none;
}

@media (min-width: 1000px) {
  body.is-locked .toast {
    right: 500px;
  }
}

@media (max-width: 1180px) {
  .desktop-nav {
    display: none;
  }

  .quick-actions,
  .partner-grid,
  .product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .quick-action:nth-child(2) {
    border-right: 0;
  }

  .quick-action:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }

  .brand-band {
    grid-template-columns: 1fr 1fr;
  }

  .brand-band__copy {
    grid-column: 1 / -1;
  }

  .site-footer {
    grid-template-columns: 1.3fr 1fr 1fr;
  }

  .site-footer__legal {
    grid-column: 1 / -1;
    flex-direction: row !important;
    flex-wrap: wrap;
  }
}

@media (max-width: 820px) {
  :root {
    --header-height: 66px;
  }

  body {
    padding-bottom: 70px;
  }

  h1 {
    font-size: 2.65rem;
  }

  h2 {
    font-size: 2.05rem;
  }

  .header-inner,
  .hero__content,
  .quick-actions,
  .catalog-section,
  .partner-section,
  .process-section {
    width: min(100% - 28px, 680px);
  }

  .brand img {
    width: 126px;
    height: 38px;
  }

  .brand span,
  .header-contact {
    display: none;
  }

  .header-signin {
    min-height: 40px;
    padding: 8px 12px;
    font-size: 0.76rem;
  }

  .hero {
    min-height: 590px;
    background-position: 52% center;
  }

  .hero__content {
    padding: 58px 0 76px;
  }

  .hero__content > p:not(.eyebrow) {
    font-size: 1rem;
  }

  .hero__trust {
    display: grid;
    gap: 10px;
  }

  .quick-actions {
    grid-template-columns: 1fr;
    margin-top: -24px;
  }

  .quick-action,
  .quick-action:nth-child(2) {
    min-height: 94px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .quick-action:last-child {
    border-bottom: 0;
  }

  .catalog-section,
  .partner-section,
  .process-section {
    padding: 76px 0;
  }

  .section-heading,
  .catalog-toolbar {
    align-items: stretch;
    flex-direction: column;
  }

  .search-control {
    width: 100%;
  }

  .catalog-toolbar {
    display: flex;
  }

  .select-control {
    width: 100%;
  }

  .product-grid,
  .partner-grid,
  .brand-band,
  .coverage-section,
  .business-section,
  .company-section {
    grid-template-columns: 1fr;
  }

  .brand-band__copy {
    grid-column: auto;
  }

  .brand-band > * {
    padding: 44px 28px;
  }

  .brand-lockup {
    min-height: 240px;
  }

  .partner-lane {
    min-height: 290px;
  }

  .coverage-section__intro,
  .coverage-checker,
  .business-section,
  .company-section {
    padding: 60px 28px;
  }

  .jamaica-operation {
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 34px 28px;
  }

  .status-pill {
    width: fit-content;
  }

  .business-section {
    gap: 38px;
  }

  .process-list {
    grid-template-columns: 1fr 1fr;
  }

  .company-section {
    gap: 20px;
  }

  .site-footer {
    grid-template-columns: 1fr 1fr;
    padding: 46px 28px 94px;
  }

  .site-footer__brand {
    grid-column: 1 / -1;
  }

  .site-footer__legal {
    grid-column: 1 / -1;
  }

  .mobile-nav {
    position: fixed;
    z-index: 74;
    right: 0;
    bottom: 0;
    left: 0;
    display: grid;
    height: 70px;
    grid-template-columns: repeat(3, 1fr);
    border-top: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.97);
    box-shadow: 0 -8px 22px rgba(12, 34, 22, 0.1);
    backdrop-filter: blur(12px);
  }

  .mobile-nav a,
  .mobile-nav button {
    position: relative;
    display: grid;
    min-width: 0;
    align-content: center;
    justify-items: center;
    gap: 2px;
    padding: 6px;
    border: 0;
    background: transparent;
    color: var(--forest);
    font-size: 0.68rem;
    font-weight: 730;
  }

  .mobile-nav svg {
    width: 21px;
    height: 21px;
  }

  .mobile-nav b {
    position: absolute;
    top: 7px;
    left: calc(50% + 10px);
    display: grid;
    min-width: 18px;
    height: 18px;
    padding: 0 4px;
    border-radius: 999px;
    background: var(--gold);
    color: #16150f;
    font-size: 0.63rem;
    place-items: center;
  }

  .chat-launcher {
    right: 14px;
    bottom: 82px;
    min-height: 48px;
  }

  .chat-panel {
    right: 8px;
    bottom: 78px;
    width: calc(100% - 16px);
    height: min(610px, calc(100dvh - 92px));
  }

  .toast {
    bottom: 136px;
  }

  body.is-locked .toast {
    display: none !important;
  }

  .product-card__media {
    height: 290px;
  }

  .product-card__body {
    min-height: 250px;
  }

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

  .product-modal__media {
    min-height: 310px;
  }

  .product-modal__details {
    padding: 32px 24px;
  }

  .age-gate[open] {
    grid-template-columns: 1fr;
  }

  .age-gate__brand {
    min-height: 130px;
  }

  .age-gate__brand img {
    width: 170px;
  }

  .age-gate__body {
    padding: 28px;
  }
}

@media (max-width: 540px) {
  h1 {
    font-size: 2.35rem;
  }

  .hero__actions,
  .business-section__actions,
  .age-gate__actions {
    display: grid;
  }

  .hero__actions .button,
  .business-section__actions .button,
  .age-gate__actions .button {
    width: 100%;
  }

  .filter-group {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .filter-button {
    justify-content: center;
    padding: 8px;
    font-size: 0.72rem;
  }

  .operating-lanes span {
    grid-template-columns: 1fr;
    gap: 2px;
  }

  .process-list {
    grid-template-columns: 1fr;
  }

  .process-list li {
    min-height: 140px;
  }

  .site-footer {
    grid-template-columns: 1fr;
  }

  .site-footer__brand,
  .site-footer__legal {
    grid-column: auto;
  }

  .site-footer__legal {
    flex-direction: column !important;
  }

  .order-modal {
    padding: 26px 18px;
  }

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

  .cart-item {
    grid-template-columns: 64px 1fr 32px;
  }

  .cart-item__image {
    width: 64px;
    height: 64px;
  }

  .chat-launcher span {
    display: none;
  }

  .chat-launcher {
    width: 48px;
    padding: 0;
    justify-content: center;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
