:root {
  --charcoal: #111;
  --black: #050505;
  --deep-red: #9b111e;
  --red: #c1121f;
  --cream: #f8fafc;
  --light-grey: #f4f6f8;
  --border: #e5e8ec;
  --gold: #d4af37;
  --green: #128c4a;
  --text: #24262b;
  --muted: #68707a;
  --white: #fff;
  --shadow: 0 16px 34px rgba(17, 17, 17, 0.08);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: #ffffff;
  color: var(--text);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  line-height: 1.5;
  font-weight: 400;
  letter-spacing: 0;
}

[hidden] {
  display: none !important;
}

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

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

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

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

.skip-link,
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
}

.skip-link:focus {
  z-index: 99;
  width: auto;
  height: auto;
  clip: auto;
  left: 16px;
  top: 16px;
  padding: 10px 14px;
  border-radius: 6px;
  background: var(--black);
  color: var(--white);
}

.announcement {
  background: var(--black);
  color: var(--white);
  padding: 10px 18px;
  text-align: center;
  font-size: 0.92rem;
  font-weight: 700;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  display: grid;
  grid-template-columns: auto minmax(280px, 1fr) auto;
  gap: 22px;
  align-items: center;
  padding: 16px clamp(18px, 4vw, 58px);
  border-bottom: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 3px 18px rgba(17, 17, 17, 0.055);
  backdrop-filter: blur(14px);
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 210px;
  color: inherit;
  text-decoration: none;
}

.brand img {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  object-fit: cover;
  background: var(--black);
}

.brand strong {
  display: block;
  color: var(--deep-red);
  font-family: inherit;
  font-size: 1.22rem;
  line-height: 1;
}

.brand span {
  display: block;
  color: var(--charcoal);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
}

.mobile-header-controls,
.mobile-menu-toggle,
.mobile-language-toggle,
.desktop-language-switcher,
.mobile-language-menu,
.mobile-category-menu {
  display: none;
}

.search-row {
  display: grid;
  grid-template-columns: 190px 1fr auto;
  align-items: stretch;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 4px 14px rgba(17, 17, 17, 0.045);
}

.search-row select,
.search-row input {
  width: 100%;
  border: 0;
  min-height: 52px;
  padding: 0 16px;
  background: transparent;
}

.search-row select {
  border-right: 1px solid var(--border);
  background: #fbfcfd;
}

.icon-button,
.cart-button,
.primary-button,
.secondary-button,
.whatsapp-submit,
.filter-chip,
.qty button,
.close-button {
  cursor: pointer;
  border: 0;
  border-radius: 6px;
  font-weight: 800;
}

.icon-button.red,
.primary-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  background: var(--deep-red);
  color: var(--white);
  transition: transform 160ms ease, background 160ms ease;
}

.icon-button.red:hover,
.primary-button:hover {
  background: var(--red);
  transform: translateY(-1px);
}

.secondary-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border: 1px solid var(--border);
  background: var(--white);
  color: var(--charcoal);
}

.secondary-button.full {
  width: 100%;
  margin-top: 12px;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 20px;
  font-size: 0.95rem;
  font-weight: 800;
  white-space: nowrap;
}

.language-switcher {
  position: relative;
  display: inline-flex;
}

.desktop-language-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  width: 48px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: transparent;
  color: var(--white);
  font: inherit;
  font-weight: 900;
  cursor: pointer;
}

.desktop-language-toggle span {
  font-size: 1rem;
  line-height: 1;
}

.desktop-language-toggle strong {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.9rem;
  line-height: 1;
}

.desktop-language-menu {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  z-index: 40;
  display: grid;
  grid-template-columns: 1fr;
  gap: 6px;
  width: 178px;
  padding: 8px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 14px;
  background: linear-gradient(180deg, rgba(20, 20, 20, 0.98), rgba(9, 9, 9, 0.98));
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.32);
}

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

.desktop-language-menu button {
  min-height: 40px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.055);
  color: rgba(255, 255, 255, 0.86);
  font: inherit;
  font-size: 0.84rem;
  font-weight: 900;
  text-align: left;
  padding: 8px 10px;
  cursor: pointer;
}

.desktop-language-menu button.active {
  border-color: rgba(176, 22, 33, 0.82);
  background: rgba(176, 22, 33, 0.18);
  color: var(--white);
}

.cart-button {
  min-height: 44px;
  padding: 0 14px;
  background: var(--charcoal);
  color: var(--white);
}

.cart-button span {
  display: inline-grid;
  place-items: center;
  min-width: 22px;
  height: 22px;
  margin-left: 6px;
  border-radius: 999px;
  background: var(--deep-red);
  color: var(--white);
  font-size: 0.78rem;
}

.category-nav {
  position: sticky;
  top: 86px;
  z-index: 20;
  display: flex;
  gap: 30px;
  overflow-x: auto;
  padding: 12px clamp(18px, 4vw, 58px);
  border-bottom: 1px solid var(--border);
  background: var(--white);
}

.category-nav button {
  flex: 0 0 auto;
  border: 0;
  background: transparent;
  color: #292929;
  cursor: pointer;
  font-weight: 800;
}

.category-nav button.active {
  color: var(--deep-red);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1.1fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
  padding: clamp(34px, 6vw, 82px) clamp(18px, 4vw, 58px) 34px;
  background: linear-gradient(112deg, var(--charcoal), #1d1512 52%, #3a0b10);
  color: var(--white);
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.hero h1,
.section-heading h2,
.feature-band h2,
.app-promo h2 {
  margin: 0;
  font-family: inherit;
  font-weight: 900;
  letter-spacing: 0;
}

.hero h1 {
  max-width: 700px;
  font-size: clamp(2.45rem, 5.4vw, 5.2rem);
  line-height: 1.02;
}

.hero p {
  max-width: 650px;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(1rem, 1.6vw, 1.24rem);
}

.hero-support {
  color: rgba(255, 255, 255, 0.74) !important;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.hero-image img {
  width: 100%;
  border-radius: 8px;
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.38);
  object-fit: cover;
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  border-bottom: 1px solid var(--border);
  background: var(--border);
}

.trust-strip span {
  padding: 18px;
  background: var(--white);
  text-align: center;
  font-weight: 900;
}

.section {
  padding: clamp(44px, 5.4vw, 76px) clamp(18px, 4vw, 58px);
}

.section-heading {
  max-width: 820px;
  margin-bottom: 28px;
}

.section-heading.row {
  display: flex;
  max-width: none;
  align-items: end;
  justify-content: space-between;
  gap: 22px;
}

.section-heading h2 {
  color: var(--charcoal);
  font-size: clamp(2rem, 3.1vw, 3.35rem);
  line-height: 1.08;
}

.section-heading p:not(.eyebrow) {
  color: var(--muted);
  font-size: 1.08rem;
}

.category-cards {
  display: grid;
  grid-template-columns: repeat(5, minmax(150px, 1fr));
  gap: 14px;
}

.category-card {
  position: relative;
  display: grid;
  min-height: 250px;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 0;
  background: var(--white);
  box-shadow: 0 7px 20px rgba(17, 17, 17, 0.045);
  text-align: left;
}

.category-card img {
  width: 100%;
  height: 172px;
  object-fit: cover;
  background: #fbfcfd;
}

.category-card span {
  padding: 18px 20px 0;
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 600;
}

.category-card strong {
  display: block;
  padding: 4px 20px 20px;
  color: var(--charcoal);
  font-size: 1.28rem;
  font-weight: 900;
}

.sort-label {
  display: grid;
  gap: 6px;
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 800;
}

.sort-label select {
  min-width: 180px;
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 10px 12px;
  background: var(--white);
}

.shop-layout {
  display: grid;
  grid-template-columns: 250px 1fr;
  gap: 34px;
  align-items: start;
}

.filters {
  position: sticky;
  top: 150px;
  display: grid;
  gap: 10px;
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 18px;
  background: var(--white);
}

.filters h3 {
  margin: 0 0 8px;
}

.filter-chip {
  padding: 10px 12px;
  background: #f5f6f7;
  color: var(--charcoal);
  text-align: left;
}

.filter-chip.active {
  background: var(--charcoal);
  color: var(--white);
}

.check-line {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 10px;
  font-weight: 700;
}

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

.product-card {
  display: grid;
  min-height: 100%;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 4px;
  background: var(--white);
  box-shadow: 0 7px 20px rgba(17, 17, 17, 0.045);
}

.product-card figure {
  position: relative;
  margin: 0;
  aspect-ratio: 1 / 0.78;
  background: #f5f6f7;
}

.product-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.badge {
  position: absolute;
  left: 12px;
  top: 12px;
  border-radius: 4px;
  padding: 6px 8px;
  background: var(--deep-red);
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 900;
}

.product-body {
  display: grid;
  gap: 10px;
  padding: 16px;
}

.product-body h3 {
  margin: 0;
  min-height: 54px;
  font-size: 1.04rem;
  line-height: 1.32;
  font-weight: 700;
}

.product-body p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.unit-stock {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 800;
}

.stock-ok {
  color: var(--green);
}

.stock-out {
  color: var(--deep-red);
}

.price-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 10px;
}

.price-row strong {
  color: #087487;
  font-size: 1.42rem;
}

.price-row small,
.pricing-note,
.cart-note {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
}

.pricing-note,
.cart-note {
  margin: -6px 0 0;
}

.price-row del {
  color: var(--muted);
}

.card-actions {
  display: grid;
  gap: 10px;
}

.qty {
  display: inline-grid;
  grid-template-columns: 44px minmax(74px, auto) 44px;
  align-items: center;
  flex: 0 0 auto;
  width: max-content;
  max-width: 100%;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 999px;
}

.qty button {
  display: grid;
  place-items: center;
  min-width: 44px;
  height: 42px;
  background: #f5f6f7;
  font-size: 1rem;
  line-height: 1;
  touch-action: manipulation;
}

.qty span {
  min-width: 74px;
  padding: 0 8px;
  text-align: center;
  font-weight: 900;
  white-space: nowrap;
}

.feature-band,
.app-promo {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 32px;
  align-items: center;
  margin: 0 clamp(18px, 4vw, 58px);
  border-radius: 8px;
  padding: clamp(28px, 5vw, 54px);
  background: var(--charcoal);
  color: var(--white);
}

.feature-band p,
.app-promo p {
  color: rgba(255, 255, 255, 0.78);
}

.feature-band img {
  border-radius: 8px;
  aspect-ratio: 1;
  object-fit: cover;
}

.review-grid,
.step-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.review-grid blockquote,
.step-grid article {
  margin: 0;
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 22px;
  background: var(--white);
  box-shadow: 0 7px 20px rgba(17, 17, 17, 0.04);
}

.review-grid blockquote::before {
  display: none;
  content: none;
}

.step-grid span {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--deep-red);
  color: var(--white);
  font-weight: 900;
}

.store-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: flex-end;
}

.store-badges span {
  border-radius: 8px;
  padding: 14px 18px;
  background: var(--black);
  color: var(--white);
  font-weight: 900;
}

.footer {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  padding: 54px clamp(18px, 4vw, 58px);
  background: var(--white);
}

.footer h3 {
  margin: 0 0 14px;
}

.footer a,
.footer p {
  display: block;
  margin: 8px 0;
  color: var(--muted);
}

.modal-backdrop {
  position: fixed;
  inset: 0;
  z-index: 70;
  display: grid;
  place-items: center;
  padding: 20px;
  background: rgba(0, 0, 0, 0.55);
}

.product-modal {
  position: relative;
  display: grid;
  grid-template-columns: minmax(240px, 0.9fr) 1fr;
  gap: 24px;
  width: min(920px, 100%);
  max-height: 90vh;
  overflow: auto;
  border-radius: 8px;
  padding: 22px;
  background: var(--white);
}

.product-modal img {
  width: 100%;
  height: 100%;
  min-height: 360px;
  border-radius: 8px;
  object-fit: cover;
}

.close-button {
  width: 36px;
  height: 36px;
  background: #f5f6f7;
}

.product-modal > .close-button {
  position: absolute;
  top: 12px;
  right: 12px;
}

.modal-unit,
.modal-note {
  color: var(--muted);
  font-weight: 700;
}

.weight-options {
  display: grid;
  gap: 12px;
  margin: 18px 0;
}

.weight-options p {
  margin: 0;
  color: var(--charcoal);
  font-weight: 900;
}

.weight-option-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.weight-option {
  display: grid;
  gap: 4px;
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 12px;
  background: var(--white);
  color: var(--charcoal);
  text-align: left;
}

.weight-option.selected {
  border-color: var(--deep-red);
  box-shadow: inset 0 0 0 1px var(--deep-red);
}

.weight-option:disabled {
  opacity: 0.46;
  cursor: not-allowed;
}

.weight-option span {
  font-weight: 900;
}

.weight-option strong {
  color: var(--deep-red);
  font-size: 1.08rem;
}

.weight-option em {
  color: var(--muted);
  font-style: normal;
  font-size: 0.78rem;
  font-weight: 800;
}

.kg-amount-selector {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr) 48px;
  align-items: stretch;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--soft-grey);
}

.kg-amount-selector button {
  border: 0;
  border-radius: 0;
  background: var(--white);
  color: var(--charcoal);
  font-size: 1.2rem;
  font-weight: 900;
  cursor: pointer;
  min-height: 48px;
  touch-action: manipulation;
}

.kg-amount-selector label {
  display: grid;
  gap: 4px;
  padding: 10px 12px;
  border-inline: 1px solid var(--border);
}

.kg-amount-selector span {
  color: var(--muted);
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.kg-amount-selector input {
  width: 100%;
  border: 0;
  background: transparent;
  color: var(--charcoal);
  font: inherit;
  font-size: 1.2rem;
  font-weight: 900;
  outline: 0;
  appearance: textfield;
}

.kg-amount-selector input::-webkit-outer-spin-button,
.kg-amount-selector input::-webkit-inner-spin-button {
  margin: 0;
  appearance: none;
}

.kg-estimate {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 8px 18px;
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 14px;
  background: var(--white);
}

.kg-estimate span {
  color: var(--muted);
  font-weight: 800;
}

.kg-estimate strong {
  color: var(--deep-red);
  text-align: right;
}

.kg-note {
  color: var(--muted);
  font-weight: 700;
}

.cart-drawer {
  position: fixed;
  inset: 0;
  z-index: 60;
  display: flex;
  justify-content: flex-end;
  background: rgba(0, 0, 0, 0);
  pointer-events: none;
  transition: background 180ms ease;
}

.cart-drawer.open {
  background: rgba(0, 0, 0, 0.38);
  pointer-events: auto;
}

.cart-panel {
  width: min(1040px, 100%);
  height: 100%;
  overflow: auto;
  padding: 22px clamp(18px, 3vw, 34px) 28px;
  background: var(--white);
  box-shadow: -18px 0 42px rgba(0, 0, 0, 0.18);
  transform: translateX(102%);
  transition: transform 220ms ease;
}

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

.cart-head,
.cart-total,
.cart-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.cart-items {
  display: grid;
  gap: 12px;
  margin: 12px 0 18px;
}

.cart-item {
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 12px;
}

.cart-item > div:first-child {
  min-width: 0;
}

.cart-item h4,
.cart-item p {
  margin: 0;
}

.remove-link {
  border: 0;
  background: transparent;
  color: var(--deep-red);
  cursor: pointer;
  font-weight: 800;
}

.cart-summary {
  display: grid;
  gap: 8px;
  border-top: 1px solid var(--border);
  padding-top: 16px;
}

.cart-total {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-size: 1.2rem;
}

.cart-total:not(.grand-total) {
  color: var(--muted);
  font-size: 0.98rem;
}

.grand-total {
  padding-top: 8px;
  color: var(--charcoal);
  font-weight: 900;
}

.delivery-note {
  position: relative;
  border: 1px solid #bdb8b1;
  border-radius: 2px;
  padding: 16px 18px 16px 52px;
  background: #f3f3f2;
  color: var(--muted);
  font-weight: 700;
  line-height: 1.45;
  white-space: pre-line;
}

.delivery-note::before {
  content: "!";
  position: absolute;
  top: 17px;
  left: 18px;
  display: inline-flex;
  width: 20px;
  height: 20px;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--deep-red);
  border-radius: 999px;
  color: var(--deep-red);
  font-size: 0.82rem;
  font-weight: 900;
  line-height: 1;
}

.checkout-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(300px, 0.8fr);
  gap: clamp(18px, 3vw, 32px);
  align-items: start;
}

.checkout-main {
  display: grid;
  gap: 14px;
  min-width: 0;
}

.checkout-summary-card {
  position: sticky;
  top: 18px;
  display: grid;
  gap: 14px;
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 18px;
  background: #f7f7f6;
}

.checkout-summary-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border);
}

.checkout-summary-head h3 {
  margin: 0;
  color: var(--charcoal);
}

.checkout-summary-head span {
  border-radius: 4px;
  padding: 5px 8px;
  background: var(--charcoal);
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.checkout-summary-card .cart-items {
  max-height: 310px;
  overflow: auto;
  padding-right: 4px;
}

.checkout-summary-card .cart-item {
  display: grid;
  gap: 10px;
  padding: 10px 0;
  border: 0;
  border-bottom: 1px solid var(--border);
  border-radius: 0;
}

.checkout-summary-card .cart-item:last-child {
  border-bottom: 0;
}

.checkout-summary-card .cart-item h4 {
  font-size: 0.95rem;
}

.checkout-summary-card .cart-item p {
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.45;
}

.checkout-summary-card .cart-note,
.checkout-summary-card .remove-link {
  font-size: 0.82rem;
}

.checkout-summary-card .qty {
  justify-self: start;
}

.checkout-summary-submit {
  width: 100%;
}

.checkout-mobile-submit {
  display: none;
}

.checkout-summary-note {
  margin: 0;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 800;
  line-height: 1.45;
  text-align: center;
}

.checkout {
  display: grid;
  gap: 18px;
  margin-top: 0;
}

.checkout h3 {
  margin: 0;
  font-family: "Fraunces", Georgia, serif;
  font-size: clamp(1.8rem, 2vw, 2.6rem);
}

.checkout-section {
  display: grid;
  gap: 14px;
  margin: 0;
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 18px;
  background: var(--white);
}

.checkout-section legend {
  padding: 0 8px;
  color: var(--charcoal);
  font-size: 1rem;
  font-weight: 900;
}

.checkout-field-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.checkout label {
  display: grid;
  gap: 6px;
  color: var(--charcoal);
  font-weight: 800;
}

.checkout label small {
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 700;
}

.checkout input,
.checkout select,
.checkout textarea {
  width: 100%;
  border: 0;
  border-bottom: 1px solid var(--border);
  border-radius: 0;
  padding: 11px 2px;
  background: var(--white);
}

.checkout input:focus,
.checkout select:focus,
.checkout textarea:focus {
  outline: 0;
  border-bottom-color: var(--deep-red);
}

.checkout textarea {
  min-height: 86px;
  resize: vertical;
}

.address-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.delivery-quote-card {
  display: grid;
  gap: 4px;
  border: 1px solid rgba(143, 17, 24, 0.18);
  border-left: 4px solid var(--deep-red);
  border-radius: 8px;
  padding: 13px 14px;
  background: #fff;
}

.delivery-quote-card .quote-kicker {
  color: var(--deep-red);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.delivery-quote-card strong {
  color: var(--charcoal);
  font-size: 1rem;
}

.delivery-quote-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.45;
}

.delivery-quote-card.is-loading {
  border-left-color: var(--gold);
}

.delivery-quote-card.is-outside {
  border-left-color: var(--muted);
  background: #f8f8f7;
}

.pac-container {
  z-index: 10000;
  border: 1px solid var(--border);
  border-radius: 8px;
  box-shadow: 0 16px 40px rgba(14, 14, 14, 0.16);
  font-family: "Manrope", Arial, sans-serif;
}

.toggle-group {
  display: grid;
  grid-template-columns: 1fr 1fr;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 8px;
}

.toggle-group label {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px;
  background: #f5f6f7;
}

.whatsapp-submit,
.floating-whatsapp {
  background: var(--green);
  color: var(--white);
}

.whatsapp-submit {
  min-height: 50px;
  width: 100%;
}

.confirmation {
  border-radius: 8px;
  padding: 10px 12px;
  background: #f1fbf4;
  color: var(--green);
  font-weight: 800;
}

.floating-whatsapp {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 50;
  border-radius: 999px;
  padding: 14px 18px;
  box-shadow: var(--shadow);
  font-weight: 900;
}

.mobile-cart {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 51;
  min-height: 54px;
  border: 0;
  border-radius: 8px;
  background: var(--deep-red);
  color: var(--white);
  box-shadow: var(--shadow);
  font-weight: 900;
}

.admin-shell {
  min-height: 100vh;
  background: #ffffff;
}

.admin-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 22px clamp(18px, 4vw, 58px);
  background: var(--charcoal);
  color: var(--white);
}

.admin-main {
  padding: clamp(24px, 5vw, 58px);
}

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

.summary-card,
.admin-table-wrap,
.info-panel {
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 8px 24px rgba(17, 17, 17, 0.05);
}

.summary-card {
  padding: 18px;
}

.summary-card strong {
  display: block;
  font-size: 2rem;
}

.admin-toolbar {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
  margin: 34px 0 16px;
}

.admin-toolbar-actions,
.admin-form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.admin-status {
  margin: 0 0 22px;
  padding: 14px 16px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--light-grey);
  color: var(--charcoal);
  font-weight: 800;
}

.admin-status:empty {
  display: none;
}

.admin-status[data-tone="success"] {
  border-color: #bfe6cc;
  background: #edf9f1;
  color: var(--green);
}

.admin-status[data-tone="warning"] {
  border-color: #ead3a4;
  background: #fff8e7;
  color: #8a5f00;
}

.admin-status[data-tone="error"] {
  border-color: #efb8bd;
  background: #fff1f2;
  color: var(--deep-red);
}

.admin-login,
.admin-product-form {
  margin: 0 0 24px;
  padding: 22px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 8px 24px rgba(17, 17, 17, 0.05);
}

.admin-form,
.admin-form-grid {
  display: grid;
  gap: 16px;
}

.admin-form-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.admin-form label,
.admin-form-grid label {
  display: grid;
  gap: 8px;
  color: var(--charcoal);
  font-weight: 800;
}

.admin-form input,
.admin-form-grid input,
.admin-form-grid select,
.admin-form-grid textarea {
  width: 100%;
  min-height: 46px;
  border: 1px solid var(--border);
  border-radius: 7px;
  padding: 10px 12px;
  background: var(--white);
  color: var(--charcoal);
  font: inherit;
}

.admin-form-grid textarea {
  min-height: 108px;
  resize: vertical;
}

.admin-wide {
  grid-column: 1 / -1;
}

.check-row {
  display: flex !important;
  min-height: 44px;
  align-items: center;
  gap: 10px;
}

.check-row input {
  width: 18px;
  min-height: 18px;
}

.admin-table-wrap {
  overflow-x: auto;
}

.admin-table {
  width: 100%;
  min-width: 980px;
  border-collapse: collapse;
}

.admin-table th,
.admin-table td {
  border-bottom: 1px solid var(--border);
  padding: 14px;
  text-align: left;
}

.admin-table th {
  background: #f5f6f7;
}

.admin-table input,
.admin-table select {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 8px;
}

.small-button {
  border: 0;
  border-radius: 6px;
  padding: 8px 10px;
  background: var(--charcoal);
  color: var(--white);
  cursor: pointer;
  font-weight: 800;
}

.small-button.muted {
  border: 1px solid var(--border);
  background: var(--white);
  color: var(--charcoal);
}

.admin-product-thumb {
  width: 66px;
  height: 52px;
  border-radius: 6px;
  object-fit: cover;
  background: var(--light-grey);
}

.account-shell {
  min-height: 100vh;
  background:
    linear-gradient(180deg, rgba(5, 5, 5, 0.02), rgba(5, 5, 5, 0)),
    var(--white);
}

.account-header {
  background:
    radial-gradient(circle at 12% 0%, rgba(155, 17, 30, 0.24), transparent 34%),
    linear-gradient(90deg, #180607, var(--black));
  color: var(--white);
}

.account-main {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
  padding: clamp(28px, 5vw, 64px) 0 72px;
}

.account-login-main {
  width: min(760px, calc(100% - 36px));
}

.account-hero {
  max-width: 780px;
  margin-bottom: 28px;
}

.account-auth-hero {
  text-align: center;
}

.account-hero h1 {
  margin: 8px 0 12px;
  color: var(--charcoal);
  font-family: "Fraunces", Georgia, serif;
  font-size: clamp(2.5rem, 6vw, 5.4rem);
  line-height: 0.95;
  letter-spacing: 0;
}

.account-hero p:last-child,
.account-muted {
  color: var(--muted);
}

.account-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin: 0 0 36px;
}

.account-auth-layout {
  display: grid;
  gap: 18px;
  margin: 0 auto 42px;
}

.account-card,
.order-history-card,
.account-empty {
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 8px 24px rgba(17, 17, 17, 0.05);
}

.account-card {
  display: grid;
  gap: 14px;
  padding: 24px;
}

.account-single-card {
  padding: clamp(22px, 4vw, 34px);
}

.account-card h2,
.account-history h2,
.account-empty h3 {
  margin: 0;
  color: var(--charcoal);
  font-family: "Fraunces", Georgia, serif;
}

.account-card p {
  margin: 0;
  color: var(--muted);
}

.account-switch-panel {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 4px;
  padding: 16px;
  border: 1px solid rgba(176, 22, 33, 0.18);
  border-radius: 8px;
  background: rgba(176, 22, 33, 0.045);
  color: var(--muted);
  font-weight: 800;
  text-align: center;
}

.account-switch-panel a {
  color: var(--premium-red);
  text-decoration: underline;
  text-underline-offset: 4px;
}

.forgot-password-link {
  justify-self: center;
  border: 0;
  padding: 4px 0;
  background: transparent;
  color: var(--premium-red);
  cursor: pointer;
  font: inherit;
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.forgot-password-link:disabled {
  cursor: wait;
  opacity: 0.58;
}

.account-orders {
  display: grid;
  gap: 14px;
}

.order-history-card {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) auto;
  gap: 18px;
  padding: 20px;
}

.order-history-card h3 {
  margin: 4px 0;
  color: var(--charcoal);
  font-size: 1.25rem;
}

.order-history-card p,
.order-history-card span,
.order-history-card em {
  color: var(--muted);
  font-style: normal;
}

.order-history-card > div:nth-child(2) {
  display: grid;
  gap: 4px;
  justify-items: end;
  align-content: start;
}

.order-history-card > div:nth-child(2) strong {
  color: var(--charcoal);
  font-size: 1.35rem;
}

.order-history-card ul {
  grid-column: 1 / -1;
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 14px 0 0;
  border-top: 1px solid var(--border);
  list-style: none;
}

.order-history-card li {
  display: flex;
  justify-content: space-between;
  gap: 14px;
}

.order-history-card li span {
  color: var(--charcoal);
  font-weight: 800;
}

.account-empty {
  padding: 24px;
}

.account-empty p {
  color: var(--muted);
}

.info-panel {
  margin-top: 20px;
  padding: 22px;
}

@media (max-width: 1120px) {
  .site-header {
    grid-template-columns: 1fr;
  }

  .header-actions {
    justify-content: space-between;
  }

  .product-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 820px) {
  .search-row {
    grid-template-columns: 1fr;
  }

  .search-row select {
    border-right: 0;
    border-bottom: 1px solid var(--border);
  }

  .category-nav {
    top: 215px;
  }

  .hero,
  .feature-band,
  .app-promo,
  .shop-layout,
  .product-modal {
    grid-template-columns: 1fr;
  }

  .trust-strip,
  .category-cards,
  .review-grid,
  .step-grid,
  .footer,
  .summary-grid {
    grid-template-columns: 1fr 1fr;
  }

  .filters {
    position: static;
  }

  .product-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .floating-whatsapp {
    bottom: 82px;
  }
}

@media (max-width: 560px) {
  .brand {
    min-width: 0;
  }

  .header-actions {
    overflow-x: auto;
  }

  .hero h1 {
    font-size: 2.7rem;
  }

  .trust-strip,
  .category-cards,
  .review-grid,
  .step-grid,
  .footer,
  .summary-grid,
  .product-grid {
    grid-template-columns: 1fr;
  }

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

  .admin-toolbar-actions,
  .admin-form-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

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

  .feature-band,
  .app-promo {
    margin-inline: 0;
    border-radius: 0;
  }
}

/* Premium grocery refinement pass */
:root {
  --charcoal: #171717;
  --black: #0e0e0e;
  --deep-red: #8f1118;
  --red: #b01621;
  --cream: #ffffff;
  --ivory: #f7f8f9;
  --warm-cream: #f1f3f5;
  --light-grey: #f5f6f7;
  --border: #e4e6e8;
  --gold: #b9972f;
  --green: #128c4a;
  --text: #171717;
  --muted: #62676d;
  --white: #fff;
  --shadow: 0 10px 24px rgba(23, 23, 23, 0.055);
}

body {
  background: #ffffff;
  color: var(--text);
  font-family: "Manrope", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
}

.announcement {
  background: var(--charcoal);
  padding: 8px 18px;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.01em;
}

.site-header {
  grid-template-columns: auto minmax(320px, 1fr) auto;
  gap: clamp(18px, 2.4vw, 36px);
  padding: 12px clamp(22px, 4vw, 64px);
  border-bottom: 1px solid rgba(228, 230, 232, 0.96);
  background: rgba(255, 255, 255, 0.965);
  box-shadow: none;
}

.brand {
  min-width: 285px;
}

.brand img {
  width: 64px;
  height: 64px;
  border: 2px solid var(--charcoal);
  box-shadow: 0 6px 18px rgba(14, 14, 14, 0.12);
}

.brand strong {
  color: var(--deep-red);
  font-family: "Fraunces", Georgia, serif;
  font-size: 1.34rem;
  font-weight: 700;
}

.brand span {
  color: var(--charcoal);
  font-size: 0.7rem;
  font-weight: 800;
}

.brand::after {
  display: block;
  width: 1px;
  height: 44px;
  margin-left: 10px;
  background: linear-gradient(180deg, transparent, rgba(23, 23, 23, 0.18), transparent);
  content: "";
}

.search-row {
  grid-template-columns: minmax(160px, 210px) 1fr auto;
  border-color: var(--border);
  border-radius: 4px;
  box-shadow: none;
}

.search-row select,
.search-row input {
  min-height: 46px;
  color: var(--text);
  font-size: 0.95rem;
}

.search-row select {
  background: #f5f6f7;
}

.icon-button.red {
  min-height: 46px;
  border-radius: 0;
  padding: 0 24px;
  background: var(--deep-red);
  font-size: 0.92rem;
}

.header-actions {
  gap: clamp(18px, 2vw, 28px);
  font-size: 0.92rem;
  font-weight: 800;
}

.header-actions a {
  position: relative;
  padding: 10px 0;
}

.header-actions a::after {
  position: absolute;
  right: 0;
  bottom: 4px;
  left: 0;
  height: 1px;
  background: var(--deep-red);
  content: "";
  opacity: 0;
  transform: scaleX(0.5);
  transition: opacity 160ms ease, transform 160ms ease;
}

.header-actions a:hover::after {
  opacity: 1;
  transform: scaleX(1);
}

.cart-button {
  min-height: 42px;
  border: 1px solid var(--charcoal);
  border-radius: 4px;
  padding: 0 16px;
  background: var(--charcoal);
  color: var(--white);
}

.cart-button span {
  background: var(--red);
}

.category-nav {
  top: 77px;
  gap: clamp(24px, 3vw, 46px);
  padding: 14px clamp(22px, 4vw, 64px) 12px;
  border-bottom: 1px solid rgba(228, 230, 232, 0.96);
  background: rgba(255, 255, 255, 0.965);
  box-shadow: none;
}

.category-nav button {
  position: relative;
  padding: 4px 0 8px;
  color: #2b2a28;
  font-size: 0.98rem;
  font-weight: 700;
}

.category-nav button::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 2px;
  background: var(--deep-red);
  content: "";
  opacity: 0;
  transform: scaleX(0.3);
  transform-origin: center;
  transition: opacity 160ms ease, transform 160ms ease;
}

.category-nav button:hover,
.category-nav button.active {
  color: var(--deep-red);
}

.category-nav button:hover::after,
.category-nav button.active::after {
  opacity: 1;
  transform: scaleX(1);
}

.hero {
  position: relative;
  grid-template-columns: minmax(0, 0.95fr) minmax(340px, 0.9fr);
  gap: clamp(34px, 5vw, 78px);
  align-items: center;
  padding: clamp(50px, 7vw, 104px) clamp(22px, 4vw, 64px);
  border-bottom: 1px solid rgba(228, 230, 232, 0.96);
  background:
    radial-gradient(circle at 9% 16%, rgba(143, 17, 24, 0.055), transparent 30%),
    linear-gradient(90deg, #ffffff 0%, #ffffff 48%, #f7f8f9 100%);
  color: var(--charcoal);
  overflow: hidden;
}

.hero::before {
  position: absolute;
  top: clamp(34px, 6vw, 84px);
  left: clamp(22px, 4vw, 64px);
  width: min(34vw, 420px);
  height: min(34vw, 420px);
  border: 1px solid rgba(143, 17, 24, 0.08);
  border-radius: 50%;
  background: url("../images/angus-logo-reference.jpeg") center / cover no-repeat;
  content: "";
  opacity: 0.035;
  pointer-events: none;
}

.hero-copy {
  position: relative;
  z-index: 1;
}

.hero-brand-lockup {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 28px;
  border-bottom: 1px solid rgba(143, 17, 24, 0.28);
  padding-bottom: 14px;
}

.hero-brand-lockup img {
  width: 72px;
  height: 72px;
  border: 2px solid var(--charcoal);
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 10px 26px rgba(14, 14, 14, 0.14);
}

.hero-brand-lockup strong {
  display: block;
  color: var(--deep-red);
  font-family: "Fraunces", Georgia, serif;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1;
}

.hero-brand-lockup span {
  display: block;
  margin-top: 4px;
  color: var(--charcoal);
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.22em;
}

.eyebrow {
  color: var(--deep-red);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.16em;
}

.hero h1,
.section-heading h2,
.feature-band h2,
.app-promo h2,
.reviews h2 {
  font-family: "Fraunces", Georgia, serif;
  font-weight: 600;
  letter-spacing: 0;
}

.hero h1 {
  max-width: 760px;
  color: var(--charcoal);
  font-size: clamp(3rem, 5.5vw, 5.8rem);
  line-height: 0.98;
}

.hero p {
  max-width: 650px;
  color: var(--muted);
  font-size: clamp(1.02rem, 1.35vw, 1.2rem);
}

.hero-actions {
  gap: 14px;
  margin-top: 28px;
}

.primary-button,
.secondary-button,
.whatsapp-submit {
  min-height: 44px;
  border-radius: 4px;
  padding: 0 18px;
  font-size: 0.92rem;
  font-weight: 800;
}

.primary-button {
  background: var(--deep-red);
}

.secondary-button {
  border-color: rgba(23, 23, 23, 0.34);
  background: transparent;
}

.hero-rating {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 14px;
  align-items: center;
  margin-top: 26px;
  color: var(--muted);
  font-size: 0.94rem;
}

.hero-rating span {
  color: var(--gold);
  letter-spacing: 0.08em;
}

.hero-rating strong {
  color: var(--charcoal);
}

.hero-rating em {
  font-style: normal;
}

.hero-image {
  position: relative;
}

.hero-image img {
  aspect-ratio: 4 / 3.35;
  border-radius: 6px;
  border: 1px solid rgba(14, 14, 14, 0.14);
  box-shadow: 0 22px 54px rgba(14, 14, 14, 0.13);
  object-fit: cover;
}

.hero-card {
  position: absolute;
  right: clamp(12px, 3vw, 28px);
  bottom: clamp(12px, 3vw, 28px);
  width: min(270px, calc(100% - 24px));
  border: 1px solid rgba(228, 230, 232, 0.95);
  border-radius: 4px;
  padding: 16px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 14px 34px rgba(23, 23, 23, 0.12);
}

.hero-card strong,
.hero-card span {
  display: block;
}

.hero-card strong {
  margin-bottom: 5px;
  font-size: 0.98rem;
}

.hero-card span {
  color: var(--muted);
  font-size: 0.84rem;
}

.trust-strip {
  display: flex;
  justify-content: center;
  gap: clamp(22px, 4vw, 70px);
  padding: 16px clamp(22px, 4vw, 64px);
  border-block: 1px solid rgba(228, 230, 232, 0.96);
  background: var(--white);
}

.trust-strip span {
  padding: 0;
  background: transparent;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 700;
}

.section {
  padding: clamp(58px, 7vw, 104px) clamp(22px, 4vw, 64px);
}

.section-heading {
  max-width: 760px;
  margin-bottom: 34px;
}

.section-heading h2 {
  font-size: clamp(2.3rem, 3.6vw, 4rem);
  line-height: 1.02;
}

.section-heading p:not(.eyebrow) {
  color: var(--muted);
  font-size: 1.02rem;
}

.category-cards {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(20px, 2.4vw, 30px);
}

.category-card {
  min-height: 310px;
  border-color: rgba(228, 230, 232, 0.98);
  border-radius: 6px;
  background: var(--white);
  box-shadow: none;
  transition: border-color 180ms ease, transform 180ms ease;
}

.category-card:hover {
  border-color: rgba(143, 17, 24, 0.38);
  transform: translateY(-2px);
}

.category-card img {
  height: 210px;
  background: #f5f6f7;
  transition: transform 280ms ease;
}

.category-card:hover img {
  transform: scale(1.025);
}

.category-card span {
  padding: 18px 18px 0;
  color: var(--deep-red);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.category-card strong {
  padding: 4px 18px 0;
  color: var(--charcoal);
  font-family: "Fraunces", Georgia, serif;
  font-size: 1.55rem;
  font-weight: 600;
}

.category-card em {
  display: block;
  padding: 5px 18px 20px;
  color: var(--muted);
  font-size: 0.9rem;
  font-style: normal;
  line-height: 1.4;
}

.product-section {
  background: var(--white);
}

.section-heading.row {
  align-items: flex-start;
  padding-bottom: 22px;
  border-bottom: 1px solid rgba(228, 230, 232, 0.96);
}

.sort-label {
  min-width: 210px;
  color: var(--charcoal);
  font-weight: 700;
}

.sort-label select {
  border-color: var(--border);
  border-radius: 4px;
  background: var(--white);
}

.shop-layout {
  grid-template-columns: minmax(190px, 220px) minmax(0, 1fr);
  gap: clamp(28px, 3.6vw, 48px);
}

.filters {
  top: 152px;
  gap: 6px;
  border: 0;
  border-right: 1px solid rgba(228, 230, 232, 0.96);
  border-radius: 0;
  padding: 0 24px 0 0;
  background: transparent;
}

.filters h3 {
  margin-bottom: 18px;
  font-size: 1.08rem;
  font-weight: 700;
}

.filter-chip {
  border-radius: 0;
  padding: 10px 0;
  border-bottom: 1px solid rgba(228, 230, 232, 0.72);
  background: transparent;
  color: var(--muted);
  font-weight: 650;
}

.filter-chip:hover,
.filter-chip.active {
  background: transparent;
  color: var(--deep-red);
}

.check-line {
  margin-top: 18px;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 600;
}

.product-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(24px, 2.8vw, 32px);
}

.product-card {
  align-content: start;
  overflow: hidden;
  border-color: rgba(228, 230, 232, 0.96);
  border-radius: 4px;
  box-shadow: none;
  transition: border-color 180ms ease, transform 180ms ease;
}

.product-card:hover {
  border-color: rgba(143, 17, 24, 0.28);
  transform: translateY(-2px);
}

.product-card figure {
  aspect-ratio: 4 / 3.15;
  background: #f5f6f7;
}

.product-card img {
  object-fit: cover;
}

.badge {
  left: 10px;
  top: 10px;
  border-radius: 999px;
  padding: 5px 9px;
  background: rgba(255, 255, 255, 0.94);
  color: var(--deep-red);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.product-body {
  gap: 8px;
  padding: 17px 18px 18px;
}

.product-kicker {
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.product-body h3 {
  min-height: auto;
  color: var(--charcoal);
  font-size: 1.02rem;
  font-weight: 700;
  line-height: 1.34;
}

.product-body p {
  color: var(--muted);
  font-size: 0.87rem;
  line-height: 1.45;
}

.unit-stock {
  align-items: center;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 600;
}

.stock-ok,
.stock-out {
  font-size: 0.78rem;
  font-weight: 800;
}

.price-row {
  padding-top: 4px;
}

.price-row strong {
  color: var(--charcoal);
  font-size: 1.24rem;
  font-weight: 800;
}

.price-row del {
  margin-left: 6px;
  color: #9a948c;
  font-size: 0.9rem;
}

.card-actions {
  grid-template-columns: 1fr;
  gap: 8px;
  padding-top: 6px;
}

.product-card .secondary-button,
.product-card .primary-button {
  min-height: 38px;
  border: 1px solid var(--border);
  border-radius: 4px;
  background: var(--white);
  color: var(--charcoal);
  font-size: 0.86rem;
}

.product-card .secondary-button:hover {
  border-color: var(--charcoal);
}

.product-card .primary-button {
  border-color: var(--deep-red);
  color: var(--deep-red);
}

.product-card .primary-button:hover {
  background: var(--deep-red);
  color: var(--white);
  transform: none;
}

.feature-band {
  margin: 0 clamp(22px, 4vw, 64px);
  border: 1px solid rgba(228, 230, 232, 0.98);
  border-left: 4px solid var(--deep-red);
  border-radius: 6px;
  background: #ffffff;
  color: var(--charcoal);
}

.feature-band p,
.app-promo p {
  color: var(--muted);
}

.feature-band img {
  border-radius: 4px;
}

.reviews {
  display: grid;
  grid-template-columns: minmax(260px, 0.72fr) 1fr;
  gap: clamp(30px, 5vw, 76px);
  align-items: start;
  background: #ffffff;
}

.reviews .section-heading {
  margin-bottom: 0;
}

.review-grid {
  grid-template-columns: 1fr;
  gap: 14px;
}

.review-grid blockquote {
  border-color: rgba(228, 230, 232, 0.98);
  border-radius: 4px;
  padding: clamp(26px, 4vw, 42px);
  background: #ffffff;
  box-shadow: none;
  color: var(--charcoal);
  font-size: 1rem;
}

.review-carousel {
  min-width: 0;
}

.review-slide {
  min-height: 245px;
}

.review-slide p {
  margin: 18px 0 20px;
  max-width: 620px;
  color: var(--charcoal);
  font-family: "Fraunces", Georgia, serif;
  font-size: clamp(1.5rem, 2.5vw, 2.35rem);
  font-weight: 500;
  line-height: 1.16;
}

.review-slide cite {
  color: var(--muted);
  font-style: normal;
  font-weight: 700;
}

.review-stars {
  display: inline-flex;
  color: var(--gold);
  font-size: 1.05rem;
  letter-spacing: 0.08em;
}

.review-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 20px;
}


.review-dots {
  display: flex;
  gap: 8px;
  align-items: center;
  justify-content: center;
}

.review-dot {
  width: 10px;
  height: 10px;
  border: 1px solid rgba(107, 102, 95, 0.55);
  border-radius: 999px;
  padding: 0;
  background: transparent;
  cursor: pointer;
}

.review-dot.is-active {
  border-color: var(--deep-red);
  background: var(--deep-red);
}

.how {
  background: #ffffff;
}

.step-grid article {
  border-color: rgba(228, 230, 232, 0.98);
  border-radius: 4px;
  background: var(--white);
  box-shadow: none;
}

.step-grid span {
  background: var(--charcoal);
}

.app-promo {
  margin: 0 clamp(22px, 4vw, 64px);
  border-radius: 6px;
  background: var(--charcoal);
}

.footer {
  border-top: 1px solid rgba(228, 230, 232, 0.96);
  background: var(--white);
}

.floating-whatsapp {
  border-radius: 999px;
  padding: 12px 16px;
  background: var(--green);
}

@media (max-width: 1120px) {
  .product-grid,
  .category-cards {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 820px) {
  .site-header {
    grid-template-columns: 1fr;
  }

  .category-nav {
    top: 206px;
  }

  .hero,
  .reviews,
  .feature-band,
  .app-promo {
    grid-template-columns: 1fr;
  }

  .hero-card {
    position: static;
    width: 100%;
    margin-top: 12px;
  }

  .trust-strip {
    display: grid;
    grid-template-columns: 1fr 1fr;
    text-align: center;
  }

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

  .filters {
    position: static;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    border-right: 0;
    padding-right: 0;
  }

  .filters h3 {
    width: 100%;
    margin: 0;
  }

  .filter-chip {
    border: 1px solid var(--border);
    border-radius: 999px;
    padding: 8px 12px;
  }

  .product-grid,
  .category-cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 560px) {
  .hero {
    padding-top: 40px;
  }

  .hero h1 {
    font-size: 2.65rem;
  }

  .category-cards,
  .product-grid,
  .review-grid,
  .step-grid {
    grid-template-columns: 1fr;
  }

  .section-heading.row {
    display: grid;
  }
}

/* Dark steak hero direction */
.announcement {
  background: var(--deep-red);
  color: var(--white);
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.site-header {
  background:
    radial-gradient(circle at 18% 0%, rgba(143, 17, 24, 0.28), transparent 34%),
    linear-gradient(180deg, #151515 0%, #0a0a0a 100%);
  color: var(--white);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: none;
}

.brand img {
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: #050505;
}

.brand strong {
  color: #e01621;
  text-shadow: 0 1px 18px rgba(176, 22, 33, 0.2);
}

.brand span,
.header-actions a {
  color: rgba(255, 255, 255, 0.86);
}

.search-row {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.search-row select,
.search-row input {
  background: transparent;
  color: var(--white);
}

.search-row select {
  color: rgba(255, 255, 255, 0.88);
}

.search-row select option {
  color: var(--charcoal);
}

.search-row input::placeholder {
  color: rgba(255, 255, 255, 0.54);
}

.search-row .search-box {
  border-left: 1px solid rgba(255, 255, 255, 0.12);
}

.icon-button.red {
  min-width: 118px;
  background: var(--deep-red);
  color: var(--white);
  border-radius: 0;
}

.cart-button {
  background: var(--soft-black);
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: none;
}

.cart-button span {
  background: var(--premium-red);
  color: var(--white);
}

.category-nav {
  background: #0d0d0d;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid var(--deep-red);
  box-shadow: none;
}

.category-nav button {
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.86rem;
  text-transform: uppercase;
  letter-spacing: 0.035em;
}

.category-nav button:hover,
.category-nav button.active {
  color: #e01621;
}

.category-nav button::after {
  background: #e01621;
}

.hero {
  position: relative;
  min-height: clamp(560px, 72vh, 780px);
  overflow: hidden;
  background: #050505;
  color: var(--white);
  border-bottom: 1px solid rgba(14, 14, 14, 0.12);
}

.hero::before {
  display: none;
}

.hero-slides {
  position: absolute;
  inset: 0;
}

.hero-slide {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: minmax(320px, 0.95fr) minmax(360px, 1.05fr);
  align-items: center;
  padding: clamp(58px, 7.5vw, 112px) clamp(22px, 8vw, 170px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 900ms ease;
}

.hero-slide::before {
  position: absolute;
  inset: 0;
  z-index: 0;
  content: "";
  background:
    linear-gradient(90deg, rgba(5, 5, 5, 0.98) 0%, rgba(5, 5, 5, 0.88) 35%, rgba(5, 5, 5, 0.38) 63%, rgba(5, 5, 5, 0.08) 100%),
    var(--hero-image) var(--hero-position, right center) / cover no-repeat;
  transform: scale(1.015);
  transition: transform 6.5s ease;
}

.hero-slide.is-active {
  opacity: 1;
  pointer-events: auto;
}

.hero-slide.is-active::before {
  transform: scale(1);
}

.hero-slide-carnes {
  --hero-image: url("../images/hero-steak-premium.png");
  --hero-position: right center;
}

.hero-slide-mercearia {
  --hero-image: url("../images/product-assortment.png");
  --hero-position: right center;
}

.hero-slide-promocao {
  --hero-image: url("../images/hero-meat-counter.png");
  --hero-position: right center;
}

.hero-copy {
  position: relative;
  z-index: 1;
  max-width: 640px;
}

.hero-brand-lockup {
  display: flex;
  width: fit-content;
  align-items: center;
  gap: 14px;
  margin-bottom: 28px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(185, 151, 47, 0.58);
}

.hero-brand-lockup img {
  width: 72px;
  height: 72px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  object-fit: cover;
  background: #050505;
}

.hero-brand-lockup strong {
  display: block;
  color: #e01621;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.35rem, 1rem + 1vw, 2.2rem);
  line-height: 0.95;
  letter-spacing: 0.03em;
}

.hero-brand-lockup span {
  display: block;
  margin-top: 5px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.32em;
}

.hero .eyebrow {
  color: var(--gold);
}

.hero h1 {
  max-width: 610px;
  color: var(--white);
  font-family: "Fraunces", Georgia, serif;
  font-size: clamp(3.3rem, 5.7vw, 6.7rem);
  font-weight: 700;
  line-height: 0.88;
  letter-spacing: 0;
}

.hero h1 span {
  display: block;
  color: #e01621;
}

.hero-copy > p:not(.eyebrow) {
  max-width: 485px;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(1rem, 0.94rem + 0.28vw, 1.2rem);
  line-height: 1.65;
}

.hero-actions {
  margin-top: 26px;
}

.hero .primary-button {
  background: var(--premium-red);
  color: var(--white);
  border-color: var(--premium-red);
  box-shadow: 0 16px 38px rgba(143, 17, 24, 0.26);
}

.hero .secondary-button {
  background: rgba(0, 0, 0, 0.22);
  color: var(--white);
  border-color: rgba(185, 151, 47, 0.82);
}

.hero-rating {
  display: grid;
  grid-template-columns: repeat(3, max-content);
  gap: 20px;
  align-items: center;
  margin-top: 26px;
  color: rgba(255, 255, 255, 0.78);
}

.hero-rating span {
  color: var(--gold);
  letter-spacing: 0.09em;
}

.hero-rating strong {
  color: var(--white);
}

.hero-rating em {
  color: rgba(255, 255, 255, 0.76);
  font-style: normal;
}

.hero-image {
  display: none;
}

.hero-dots {
  position: absolute;
  z-index: 3;
  left: clamp(22px, 8vw, 170px);
  bottom: clamp(24px, 4vw, 46px);
  display: flex;
  gap: 10px;
  align-items: center;
}

.hero-dot {
  width: 36px;
  height: 4px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.34);
  cursor: pointer;
}

.hero-dot.is-active {
  background: var(--premium-red);
}

.trust-strip {
  background: #0e0e0e;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.trust-strip span {
  color: rgba(255, 255, 255, 0.84);
}

.section,
.product-section,
.reviews,
.how {
  background: #ffffff;
}

.feature-band {
  background: #0e0e0e;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.1);
  border-left-color: var(--gold);
}

.feature-band p {
  color: rgba(255, 255, 255, 0.78);
}

.feature-band .eyebrow {
  color: var(--gold);
}

@media (max-width: 1120px) {
  .hero {
    min-height: 720px;
  }

  .hero-slide {
    grid-template-columns: 1fr;
  }

  .hero-copy {
    max-width: 600px;
  }
}

@media (max-width: 820px) {
  .announcement {
    padding: 8px 16px;
  }

  .site-header {
    gap: 14px;
  }

  .search-row {
    border-radius: 12px;
  }

  .category-nav {
    top: 206px;
  }

  .hero {
    min-height: 760px;
  }

  .hero-slide {
    padding: 42px 22px 340px;
  }

  .hero-slide::before {
    background:
      linear-gradient(180deg, rgba(5, 5, 5, 0.96) 0%, rgba(5, 5, 5, 0.88) 42%, rgba(5, 5, 5, 0.25) 100%),
      var(--hero-image) var(--hero-mobile-position, 62% bottom) / cover no-repeat;
  }

  .hero h1 {
    font-size: clamp(2.75rem, 12vw, 4.4rem);
  }

  .hero-rating {
    grid-template-columns: 1fr;
    gap: 8px;
  }
}

@media (max-width: 560px) {
  .hero {
    min-height: 720px;
  }

  .hero-slide {
    padding-bottom: 270px;
  }

  .hero-brand-lockup img {
    width: 58px;
    height: 58px;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .hero-dots {
    left: 22px;
    bottom: 20px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-slide,
  .hero-slide::before {
    transition: none;
  }
}

/* Category block preview */
.category-section {
  padding-top: clamp(42px, 5vw, 76px);
  padding-bottom: clamp(42px, 5vw, 76px);
  overflow: visible;
}

.category-section .section-heading {
  max-width: 980px;
  margin-bottom: clamp(24px, 3vw, 38px);
}

.category-cards {
  display: grid;
  grid-auto-flow: row;
  grid-auto-columns: initial;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(18px, 2vw, 28px);
  overflow: visible;
  padding: 0;
  margin-inline: 0;
  scroll-snap-type: none;
}

.category-card {
  aspect-ratio: 1 / 1;
  min-height: 0;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  border: 0;
  border-radius: 0;
  background: #111;
  box-shadow: none;
  isolation: isolate;
  scroll-snap-align: none;
}

.category-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: #111;
  transition: transform 420ms ease, filter 420ms ease;
  z-index: -2;
}

.category-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.04) 24%, rgba(0, 0, 0, 0.52) 100%);
  z-index: -1;
}

.category-card:hover {
  border-color: transparent;
  transform: none;
}

.category-card:hover img {
  transform: scale(1.035);
  filter: saturate(1.04) contrast(1.02);
}

.category-card span {
  position: absolute;
  top: clamp(14px, 1.6vw, 22px);
  left: clamp(14px, 1.6vw, 22px);
  padding: 7px 10px;
  border: 1px solid rgba(255, 255, 255, 0.42);
  background: rgba(0, 0, 0, 0.34);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  line-height: 1;
  text-transform: uppercase;
}

.category-card strong {
  width: 100%;
  padding: clamp(22px, 2.3vw, 34px);
  color: #fff;
  font-family: "Fraunces", Georgia, serif;
  font-size: clamp(2.1rem, 3.4vw, 4.6rem);
  font-weight: 700;
  line-height: 0.94;
  letter-spacing: 0;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.35);
}

.category-card em {
  display: none;
}

@media (max-width: 980px) {
  .category-cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 620px) {
  .category-cards {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .category-card {
    aspect-ratio: 1 / 0.86;
  }

  .category-card strong {
    font-size: clamp(2.35rem, 13vw, 4rem);
  }
}

/* Header logo replacement */
.brand {
  gap: 0;
}

.brand img {
  width: clamp(84px, 8vw, 118px);
  height: clamp(84px, 8vw, 118px);
  border-radius: 999px;
  object-fit: cover;
}

.brand > div {
  display: none;
}

@media (max-width: 820px) {
  .brand img {
    width: 88px;
    height: 88px;
  }
}

/* Checkout fulfilment selector */
.checkout .toggle-group {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  overflow: visible;
  border: 0;
  border-radius: 0;
  padding: 0;
  background: transparent;
}

.checkout .toggle-group label {
  display: flex;
  min-height: 72px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 1px solid #8f8b84;
  border-radius: 2px;
  padding: 14px 16px;
  background: #f4f4f3;
  color: var(--charcoal);
  cursor: pointer;
  font-weight: 800;
  letter-spacing: 0.02em;
  white-space: nowrap;
}

.checkout .toggle-group input[type="radio"] {
  width: 16px;
  height: 16px;
  flex: 0 0 16px;
  margin: 0;
  accent-color: var(--deep-red);
}

.checkout .toggle-group label:has(input[type="radio"]:checked) {
  border-color: var(--charcoal);
  background: #ecebea;
  box-shadow: inset 0 0 0 1px var(--charcoal);
}

/* Admin scope clarification */
.admin-header .brand {
  gap: 14px;
}

.admin-header .brand img {
  width: 76px;
  height: 76px;
}

.admin-header .brand > div {
  display: block;
}

.admin-header .brand strong {
  display: block;
  color: var(--white);
  font-family: "Fraunces", Georgia, serif;
  font-size: 1.35rem;
  line-height: 1;
}

.admin-header .brand span {
  display: block;
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.22em;
}

.admin-scope {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin: 24px 0 8px;
}

.admin-scope article {
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: clamp(18px, 2vw, 26px);
  background: var(--white);
}

.admin-scope h2 {
  margin: 6px 0 10px;
  font-family: "Fraunces", Georgia, serif;
  font-size: clamp(1.35rem, 1rem + 1vw, 2rem);
  line-height: 1.05;
}

.admin-scope p:last-child {
  margin-bottom: 0;
  color: var(--muted);
}

.admin-note {
  margin: 6px 0 0;
  color: var(--muted);
  font-size: 0.95rem;
}

/* Mobile QA pass */
@media (max-width: 700px) {
  body {
    overflow-x: hidden;
  }

  .account-main {
    width: min(100% - 28px, 1180px);
    padding: 28px 0 52px;
  }

  .account-hero h1 {
    font-size: clamp(2.3rem, 13vw, 4.3rem);
  }

  .account-grid,
  .order-history-card {
    grid-template-columns: 1fr;
  }

  .account-card,
  .order-history-card,
  .account-empty {
    padding: 18px;
  }

  .order-history-card > div:nth-child(2) {
    justify-items: start;
  }

  .order-history-card li {
    display: grid;
    gap: 2px;
  }

  .announcement {
    padding: 8px 14px;
    font-size: 0.72rem;
    line-height: 1.35;
  }

  .site-header {
    position: sticky;
    grid-template-columns: 54px minmax(0, 1fr) 44px 44px;
    gap: 10px 12px;
    padding: 10px 14px;
  }

  .site-header .brand {
    justify-content: center;
    min-width: 0;
  }

  .site-header .brand img {
    width: 50px;
    height: 50px;
  }

  .mobile-header-controls {
    display: flex;
    grid-column: 3 / 5;
    align-items: center;
    justify-content: flex-end;
    gap: 8px;
    align-self: start;
  }

  .mobile-menu-toggle,
  .mobile-language-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    min-height: 44px;
    padding: 0;
    border: 1px solid rgba(255, 255, 255, 0.16);
    background: rgba(255, 255, 255, 0.06);
    color: var(--white);
    font: inherit;
    font-weight: 900;
    touch-action: manipulation;
  }

  .mobile-menu-toggle {
    border-radius: 14px;
  }

  .mobile-language-toggle {
    gap: 2px;
    border-radius: 10px;
  }

  .mobile-menu-toggle strong,
  .mobile-language-toggle strong {
    color: var(--premium-red);
    font-size: 1rem;
    line-height: 1;
  }

  .mobile-language-toggle span {
    font-size: 1.05rem;
    line-height: 1;
  }

  .mobile-category-menu {
    position: absolute;
    top: 76px;
    right: 14px;
    z-index: 6;
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px;
    width: min(250px, calc(100vw - 28px));
    padding: 10px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 16px;
    background:
      linear-gradient(180deg, rgba(20, 20, 20, 0.98), rgba(9, 9, 9, 0.98));
    box-shadow: 0 18px 44px rgba(0, 0, 0, 0.32);
  }

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

  .mobile-language-menu {
    position: absolute;
    top: 76px;
    right: 66px;
    z-index: 6;
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px;
    width: min(190px, calc(100vw - 80px));
    padding: 10px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 16px;
    background:
      linear-gradient(180deg, rgba(20, 20, 20, 0.98), rgba(9, 9, 9, 0.98));
    box-shadow: 0 18px 44px rgba(0, 0, 0, 0.32);
  }

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

  .mobile-category-menu button,
  .mobile-language-menu button {
    min-height: 44px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.055);
    color: rgba(255, 255, 255, 0.86);
    font: inherit;
    font-size: 0.78rem;
    font-weight: 900;
    text-align: left;
    padding: 10px 12px;
    touch-action: manipulation;
  }

  .mobile-category-menu button.active,
  .mobile-language-menu button.active {
    border-color: rgba(176, 22, 33, 0.82);
    background: rgba(176, 22, 33, 0.18);
    color: var(--white);
  }

  .search-row {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 86px;
    width: 100%;
    border-radius: 999px;
  }

  .search-row select,
  .search-row input,
  .icon-button.red {
    min-height: 42px;
  }

  .search-row select {
    display: none;
  }

  .search-row .search-box {
    border-left: 0;
    border-top: 0;
  }

  .icon-button.red {
    width: 100%;
    min-width: 0;
    border-radius: 0 999px 999px 0;
    padding: 0 14px;
  }

  .header-actions {
    display: grid;
    grid-column: 1 / -1;
    grid-template-columns: 1fr 1fr auto;
    width: 100%;
    gap: 8px;
  }

  .header-actions .language-switcher {
    display: none;
  }

  .header-actions a,
  .cart-button {
    min-height: 38px;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 999px;
    padding: 7px 10px;
    font-size: 0.82rem;
  }

  .site-header .header-actions a[href="account.html"] {
    display: none;
  }

  .cart-button {
    grid-column: auto;
    min-width: 104px;
  }

  .category-nav {
    display: none;
  }

  .hero {
    min-height: auto;
    padding: 52px 20px 300px;
    background-position: 64% bottom;
  }

  .hero h1 {
    max-width: 9ch;
    font-size: clamp(3rem, 16vw, 5rem);
    line-height: 0.88;
  }

  .hero-copy > p:not(.eyebrow) {
    max-width: 330px;
    font-size: 1rem;
    line-height: 1.55;
  }

  .hero-actions {
    grid-template-columns: 1fr;
    max-width: 330px;
  }

  .trust-strip {
    grid-template-columns: 1fr 1fr;
    gap: 0;
    padding: 12px 16px;
  }

  .section {
    padding-inline: 20px;
  }

  .section-heading h2 {
    font-size: clamp(2.3rem, 11vw, 3.5rem);
  }

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

  .product-card figure {
    aspect-ratio: 1.12;
  }

  .filters {
    display: flex;
    overflow-x: auto;
    padding-bottom: 10px;
  }

  .filters h3,
  .check-line {
    flex: 0 0 100%;
  }

  .filter-chip {
    flex: 0 0 auto;
    min-width: max-content;
  }

  .cart-panel {
    width: 100%;
    padding: 18px;
  }

  .checkout-layout {
    grid-template-columns: 1fr;
  }

  .checkout-summary-card {
    position: static;
    order: -1;
    padding: 16px;
  }

  .checkout-summary-card .cart-items {
    max-height: none;
  }

  .checkout-summary-submit {
    display: none;
  }

  .checkout-mobile-submit {
    display: inline-flex;
  }

  .checkout-field-grid,
  .address-grid {
    grid-template-columns: 1fr;
  }

  .checkout-section {
    padding: 16px;
  }

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

  .cart-items .cart-item .qty {
    justify-self: stretch;
    width: 100%;
    grid-template-columns: 56px minmax(96px, 1fr) 56px;
  }

  .cart-items .cart-item .qty button {
    min-width: 56px;
    height: 50px;
    font-size: 1.15rem;
  }

  .cart-items .cart-item .qty span {
    min-width: 96px;
    font-size: 1.05rem;
  }

  .modal-backdrop {
    align-items: end;
    padding: 0;
  }

  .product-modal {
    width: 100%;
    max-height: 92vh;
    overflow-y: auto;
    border-radius: 18px 18px 0 0;
    padding: 16px;
    gap: 14px;
  }

  .product-modal img {
    min-height: 190px;
    max-height: 240px;
  }

  .kg-amount-selector {
    grid-template-columns: 56px minmax(0, 1fr) 56px;
  }

  .kg-amount-selector button {
    min-height: 56px;
    font-size: 1.45rem;
  }

  .kg-amount-selector label {
    padding: 9px 12px;
  }

  .kg-amount-selector input {
    min-height: 34px;
    font-size: 1.35rem;
  }

  .kg-estimate {
    padding: 12px;
  }

  .floating-whatsapp {
    right: 14px;
    bottom: 78px;
    padding: 12px 16px;
  }

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

  .admin-header {
    display: grid;
    grid-template-columns: 1fr;
  }

  .admin-header .header-actions {
    grid-template-columns: 1fr;
  }

  .admin-scope,
  .summary-grid {
    grid-template-columns: 1fr;
  }

  .admin-toolbar {
    display: grid;
  }
}

@media (max-width: 420px) {
  .hero {
    padding-bottom: 240px;
  }

  .hero h1 {
    font-size: clamp(2.65rem, 15vw, 4.1rem);
  }

  .hero .eyebrow {
    font-size: 0.78rem;
  }

  .category-cards {
    grid-auto-columns: 82vw;
  }

  .cart-items .cart-item .qty {
    grid-template-columns: 50px minmax(92px, 1fr) 50px;
  }

  .cart-items .cart-item .qty button {
    min-width: 50px;
  }
}


body.category-page .hero,
body.category-page .trust-strip,
body.category-page .category-section,
body.category-page .feature-band,
body.category-page .reviews,
body.category-page .how,
body.category-page .app-promo {
  display: none !important;
}

body.category-page .product-section {
  display: block;
  padding-top: clamp(36px, 5vw, 72px);
}


body.home-categories-only .hero,
body.home-categories-only .trust-strip,
body.home-categories-only .feature-band,
body.home-categories-only .reviews,
body.home-categories-only .how,
body.home-categories-only .app-promo {
  display: none !important;
}

body.home-categories-only .category-section {
  padding-top: clamp(36px, 5vw, 72px);
}

/* Header reference refresh */
.announcement {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 10px clamp(18px, 4vw, 64px);
  background: #9f0f18;
  color: #fff;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: 0.01em;
  line-height: 1.35;
  text-align: center;
}

.site-header {
  position: relative;
  top: auto;
  z-index: 30;
  display: grid;
  grid-template-columns: minmax(170px, 230px) minmax(320px, 620px) auto;
  align-items: center;
  gap: clamp(28px, 4vw, 58px);
  padding: 38px clamp(34px, 5vw, 72px) 34px;
  background:
    radial-gradient(circle at 17% 0%, rgba(143, 17, 24, 0.28), transparent 34%),
    linear-gradient(180deg, #151515 0%, #090909 100%);
  color: #fff;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: none;
  backdrop-filter: none;
}

.site-header .brand {
  min-width: 0;
  gap: 0;
}

.site-header .brand::after {
  display: none;
}

.site-header .brand img {
  width: clamp(150px, 12vw, 205px);
  height: auto;
  max-height: 150px;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  object-fit: contain;
}

.mobile-header-controls {
  display: none;
}

.search-row {
  justify-self: center;
  width: 100%;
  max-width: 620px;
  grid-template-columns: 1fr auto;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.045);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.search-row select {
  display: none;
}

.search-row .search-box {
  border-left: 0;
}

.search-row input {
  min-height: 56px;
  padding: 0 24px;
  background: transparent;
  color: #fff;
  font-size: 1rem;
}

.search-row input::placeholder {
  color: rgba(255, 255, 255, 0.58);
}

.search-row .icon-button.red {
  min-width: 112px;
  min-height: 56px;
  padding: 0 24px;
  border-radius: 0 10px 10px 0;
  background: #9f0f18;
  color: #fff;
  box-shadow: none;
}

.header-actions {
  justify-content: flex-end;
  gap: 26px;
  color: #fff;
}

.header-actions a {
  color: #fff;
  text-decoration: none;
}

.header-actions a::after {
  display: none;
}

.desktop-language-switcher {
  position: relative;
}

.desktop-language-toggle {
  width: auto;
  min-width: 82px;
  height: 44px;
  padding: 0 12px;
  gap: 8px;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: #fff;
  box-shadow: none;
}

.desktop-language-toggle .language-code {
  font-size: 0.9rem;
  font-weight: 900;
  letter-spacing: 0.04em;
}

.desktop-language-menu {
  right: 0;
  left: auto;
  margin-top: 12px;
  background: #121212;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.16);
}

.desktop-language-menu button {
  color: #fff;
}

.cart-button {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 54px;
  padding: 0 24px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 9px;
  background: linear-gradient(180deg, #b01621 0%, #8f1118 100%);
  color: #fff;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.cart-button span {
  margin-left: 0;
  min-width: 0;
  height: auto;
  border-radius: 0;
  background: transparent;
  color: inherit;
  font-size: inherit;
}

.category-nav {
  position: relative;
  top: auto;
  z-index: 20;
  display: flex;
  align-items: center;
  gap: clamp(30px, 4vw, 64px);
  min-height: 70px;
  padding: 0 clamp(34px, 5vw, 72px);
  overflow-x: auto;
  background: #101010;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid #8f1118;
  box-shadow: none;
}

.category-nav button {
  color: #f6f6f4;
  font-size: 0.95rem;
  font-weight: 900;
  letter-spacing: 0.025em;
  text-transform: uppercase;
  padding: 25px 0 22px;
  white-space: nowrap;
}

.category-nav button.active,
.category-nav button:hover {
  color: #ff2634;
}

.category-nav button.active::after {
  height: 4px;
  background: #b01621;
}

@media (max-width: 1100px) {
  .site-header {
    grid-template-columns: 150px minmax(280px, 1fr);
  }

  .header-actions {
    grid-column: 1 / -1;
    justify-content: space-between;
  }
}

@media (max-width: 760px) {
  .announcement {
    min-height: 42px;
    padding: 8px 18px;
    font-size: 0.82rem;
    line-height: 1.35;
  }

  .site-header {
    grid-template-columns: auto 1fr;
    gap: 14px;
    padding: 16px 20px 18px;
  }

  .site-header .brand img {
    width: 88px;
    max-height: 88px;
  }

  .mobile-header-controls {
    display: flex;
    justify-self: end;
    gap: 10px;
  }

  .search-row {
    grid-column: 1 / -1;
    max-width: none;
    justify-self: stretch;
    border-radius: 999px;
  }

  .search-row input {
    min-height: 54px;
    padding-left: 18px;
  }

  .search-row .icon-button.red {
    min-width: 110px;
    min-height: 54px;
    border-radius: 0 999px 999px 0;
  }

  .header-actions {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    width: 100%;
  }

  .header-actions .desktop-language-switcher {
    display: none;
  }

  .header-actions a,
  .header-actions .cart-button {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.025);
  }

  .category-nav {
    display: none;
  }
}

/* Black header reference polish */
.announcement {
  gap: 12px;
  min-height: 60px;
  padding: 12px clamp(20px, 5vw, 72px);
  background: linear-gradient(180deg, #b11620 0%, #951018 100%);
  font-size: clamp(0.95rem, 1.35vw, 1.22rem);
  font-weight: 800;
}

.announcement-icon,
.header-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  color: currentColor;
}

.announcement-icon svg,
.header-icon svg {
  width: 1em;
  height: 1em;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.announcement-icon {
  font-size: 1.38rem;
}

.site-header {
  grid-template-columns: minmax(190px, 220px) minmax(360px, 620px) minmax(390px, 1fr);
  gap: clamp(34px, 4.8vw, 72px);
  min-height: 204px;
  padding: 36px clamp(44px, 5.4vw, 78px) 34px;
  background: #000;
}

.site-header .brand {
  align-self: center;
}

.site-header .brand img {
  width: clamp(178px, 13.4vw, 214px);
  max-height: 154px;
  background: #000;
}

.search-row {
  max-width: 620px;
  border-color: rgba(255, 255, 255, 0.28);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.035);
}

.search-row input {
  min-height: 66px;
  padding: 0 26px;
  color: #f7f7f7;
  font-size: 1.08rem;
}

.search-row .icon-button.red {
  min-width: 68px;
  min-height: 66px;
  padding: 0 20px;
  border-radius: 0 16px 16px 0;
  background: transparent;
  color: #f7f7f7;
}

.search-row .icon-button.red:hover {
  background: rgba(255, 255, 255, 0.06);
  transform: none;
}

.search-row .header-icon {
  font-size: 1.52rem;
}

.header-actions {
  gap: 28px;
  justify-self: end;
  font-size: 1.02rem;
}

.login-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.login-link .header-icon {
  font-size: 1.42rem;
}

.desktop-language-switcher {
  padding-left: 28px;
  border-left: 1px solid rgba(255, 255, 255, 0.18);
}

.desktop-language-toggle {
  min-width: 96px;
  height: 48px;
  padding: 0;
  gap: 10px;
}

.desktop-language-toggle span:first-child {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 18px;
  overflow: hidden;
  font-size: 1rem;
  line-height: 1;
}

.cart-button {
  min-height: 60px;
  padding: 0 24px;
  border-radius: 10px;
  gap: 14px;
  font-size: 1.02rem;
}

.cart-button .header-icon {
  font-size: 1.54rem;
}

.cart-button #cartCount {
  font-size: 1.04rem;
  font-weight: 900;
}

.category-nav {
  min-height: 70px;
  padding: 0 clamp(44px, 5.4vw, 78px);
  gap: clamp(34px, 4.6vw, 64px);
}

.category-nav button {
  position: relative;
  padding: 26px 0 23px;
  font-size: 1.02rem;
  letter-spacing: 0.02em;
}

.category-nav button.active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 4px;
  background: #b01621;
}

@media (max-width: 1100px) {
  .site-header {
    grid-template-columns: 170px minmax(280px, 1fr);
    min-height: 0;
  }

  .header-actions {
    justify-self: stretch;
  }
}

@media (max-width: 760px) {
  .announcement {
    min-height: 48px;
    gap: 8px;
    font-size: 0.82rem;
  }

  .site-header {
    min-height: 0;
    padding: 16px 20px 18px;
  }

  .site-header .brand img {
    width: 96px;
    max-height: 96px;
  }

  .search-row input {
    min-height: 54px;
    font-size: 1rem;
  }

  .search-row .icon-button.red {
    min-width: 58px;
    min-height: 54px;
  }

  .login-link {
    gap: 8px;
  }
}

/* Compact WhatsApp floating action */
.floating-whatsapp {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  padding: 0;
  border-radius: 50%;
  background: #128c4a;
  color: #fff;
  box-shadow: 0 16px 34px rgba(18, 140, 74, 0.28);
}

.floating-whatsapp svg {
  width: 34px;
  height: 34px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.floating-whatsapp:hover {
  background: #0f7d42;
  transform: translateY(-1px);
}

@media (max-width: 760px) {
  .floating-whatsapp {
    right: 14px;
    bottom: 78px;
    width: 54px;
    height: 54px;
  }

  .floating-whatsapp svg {
    width: 31px;
    height: 31px;
  }
}

/* Mobile overflow and hero QA fix */
html,
body {
  max-width: 100%;
  overflow-x: hidden;
}

.hero {
  min-height: clamp(680px, 72vw, 860px);
}

@media (max-width: 820px) {
  .hero {
    min-height: 690px;
    overflow: hidden;
  }

  .hero-slide {
    min-width: 0;
    padding: 44px 22px 300px;
  }

  .hero-slide::before {
    background:
      linear-gradient(180deg, rgba(5, 5, 5, 0.93) 0%, rgba(5, 5, 5, 0.68) 48%, rgba(5, 5, 5, 0.2) 100%),
      var(--hero-image) var(--hero-mobile-position, 68% center) / cover no-repeat;
  }

  .hero-slide-carnes {
    --hero-mobile-position: 66% center;
  }

  .hero-slide-mercearia,
  .hero-slide-promocao {
    --hero-mobile-position: center center;
  }
}

@media (max-width: 760px) {
  .announcement,
  .site-header,
  .category-nav,
  main,
  .hero,
  .hero-slides,
  .hero-slide,
  .trust-strip,
  .section {
    max-width: 100vw;
  }

  .announcement {
    width: 100%;
    min-height: 44px;
    padding: 8px 14px;
    overflow: hidden;
    font-size: 0.78rem;
    line-height: 1.25;
  }

  .site-header {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    justify-items: stretch;
    width: 100%;
    min-height: 0;
    gap: 14px;
    padding: 14px 18px 22px;
    overflow: hidden;
  }

  .site-header .brand {
    justify-self: center;
    width: 118px;
    min-width: 0;
  }

  .site-header .brand img {
    width: 118px;
    height: auto;
    max-height: 118px;
  }

  .mobile-header-controls {
    position: absolute;
    top: 14px;
    right: 14px;
    display: flex;
    width: auto;
    grid-column: auto;
  }

  .mobile-menu-toggle,
  .mobile-language-toggle {
    width: 38px;
    height: 38px;
    min-height: 38px;
  }

  .search-row {
    grid-column: auto;
    width: 100%;
    max-width: none;
    grid-template-columns: minmax(0, 1fr) 58px;
    border-radius: 14px;
  }

  .search-row input {
    min-width: 0;
    min-height: 52px;
    padding: 0 18px;
  }

  .search-row .icon-button.red {
    width: 58px;
    min-width: 58px;
    min-height: 52px;
    padding: 0;
    border-radius: 0 14px 14px 0;
  }

  .header-actions {
    display: flex;
    grid-column: auto;
    justify-content: center;
    width: 100%;
    min-width: 0;
    gap: 10px;
  }

  .header-actions .desktop-language-switcher,
  .header-actions .login-link {
    display: none;
  }

  .header-actions .cart-button {
    width: auto;
    max-width: 100%;
    min-height: 50px;
    padding: 0 22px;
    border-radius: 999px;
  }

  .mobile-category-menu,
  .mobile-language-menu {
    max-width: calc(100vw - 28px);
  }

  .hero {
    min-height: 640px;
  }

  .hero-slide {
    padding: 38px 22px 250px;
  }

  .hero h1 {
    max-width: 100%;
    font-size: clamp(3.15rem, 17vw, 4.9rem);
  }

  .hero-copy {
    max-width: 100%;
  }

  .hero-copy > p:not(.eyebrow),
  .hero-actions {
    display: none;
  }
}
