@font-face {
  font-family: Bricolage Grotesque;
  src: url('/assets/fonts/BricolageGrotesque.ttf') format('truetype');
  font-weight: 400 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: IBM Plex Sans Arabic;
  src: url('/assets/fonts/IBMPlexSansArabic-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: IBM Plex Sans Arabic;
  src: url('/assets/fonts/IBMPlexSansArabic-Bold.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
:root {
  --ink: #2b3a32;
  --leaf: #3e6b57;
  --deep: #ae5430;
  --cream: #fbf6ee;
  --sand: #eee5d6;
  --rule: #d5d8c9;
  --muted: #58685b;
  color-scheme: light;
  font-family: 'Bricolage Grotesque', 'Segoe UI', Arial, sans-serif;
  color: var(--ink);
  background: var(--cream);
  font-synthesis: none;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 24px;
}
body,
h1,
h2,
h3,
p,
figure {
  margin: 0;
}
body {
  font-size: 16px;
  line-height: 1.6;
}
button,
input,
select,
textarea {
  font: inherit;
  color: inherit;
}
button,
a,
input,
select,
textarea {
  -webkit-tap-highlight-color: transparent;
}
button,
a,
select {
  touch-action: manipulation;
}
button {
  cursor: pointer;
}
a {
  color: inherit;
  text-decoration: none;
}
button {
  border: 0;
}
img {
  display: block;
  max-width: 100%;
  height: auto;
}
svg {
  display: block;
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}
button:focus-visible,
a:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible,
summary:focus-visible {
  outline: 3px solid var(--deep);
  outline-offset: 5px;
}
button:disabled {
  cursor: default;
  opacity: 0.6;
}
[hidden] {
  display: none !important;
}
.wrap {
  width: min(1240px, calc(100% - 80px));
  margin-inline: auto;
}
.section {
  padding-block: 88px;
}
h1 {
  font-size: clamp(36px, 4vw, 54px);
  line-height: 1.12;
  letter-spacing: -0.035em;
  font-weight: 700;
}
h2 {
  font-size: 30px;
  line-height: 1.2;
  letter-spacing: -0.01em;
}
h3 {
  font-size: 22px;
  line-height: 1.3;
}
p {
  max-width: 72ch;
}
.lead {
  font-size: 18px;
  line-height: 1.55;
}
.eyebrow {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.09em;
  color: var(--leaf);
  line-height: 1.5;
  margin-bottom: 20px;
}
.small {
  font-size: 13px;
  line-height: 1.5;
  color: var(--muted);
}
.micro {
  font-size: 12px;
  letter-spacing: 0.04em;
  color: var(--leaf);
  margin-bottom: 7px;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 13px;
  padding: 16px 23px;
  min-height: 52px;
  background: var(--leaf);
  color: var(--cream);
  border: 1px solid var(--leaf);
  border-radius: 7px;
  font-size: 15px;
  line-height: 1.25;
  font-weight: 700;
  transition: background 0.15s;
}
.button:hover {
  background: var(--ink);
}
.button.light {
  background: var(--cream);
  color: var(--ink);
  border-color: var(--cream);
}
.button svg {
  width: 20px;
  height: 20px;
}
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  font-size: 15px;
  text-decoration: underline;
  text-underline-offset: 5px;
}
.skip-link {
  position: fixed;
  top: -100px;
  inset-inline-start: 20px;
  z-index: 200;
  background: var(--ink);
  color: white;
  padding: 15px;
}
.skip-link:focus {
  top: 10px;
}
.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;
}
.top-strip {
  background: var(--leaf);
  color: var(--cream);
  font-size: 12px;
  padding-block: 8px;
}
.top-strip .wrap {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}
.site-header {
  border-bottom: 1px solid var(--rule);
}
.header-main {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  min-height: 108px;
}
.brand {
  flex-shrink: 0;
}
.brand img {
  width: 214px;
  height: 96px;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 30px;
  font-size: 14px;
  font-weight: 700;
}
.main-nav a:hover {
  color: var(--leaf);
  text-decoration: underline;
  text-underline-offset: 6px;
}
.basket-link {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 14px;
}
.basket-link [data-basket-count] {
  background: var(--sand);
  min-width: 23px;
  border-radius: 50%;
  text-align: center;
  font-size: 12px;
}
.locale-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-block: 10px;
  border-top: 1px solid var(--rule);
  gap: 20px;
}
.language-nav {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 12px;
}
.language-nav a[aria-current] {
  color: var(--leaf);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 5px;
}
.currency-label {
  display: flex;
  gap: 8px;
  align-items: center;
  font-size: 12px;
}
.currency-label select {
  border: 0;
  background: transparent;
  padding: 8px;
  min-height: 40px;
  cursor: pointer;
  font-size: 12px;
  direction: ltr;
}
.hero {
  display: grid;
  grid-template-columns: 0.86fr 1.14fr;
  gap: 54px;
  align-items: center;
  padding-block: 50px 56px;
}
.hero-copy h1 {
  margin-bottom: 23px;
}
.hero-copy .lead {
  max-width: 38ch;
  color: var(--muted);
}
.hero-actions {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  align-items: center;
  margin-top: 30px;
}
.hero-note {
  margin-top: 18px;
}
.hero-photo {
  position: relative;
  align-self: stretch;
  min-height: 470px;
}
.hero-photo > img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  object-position: 47% center;
  border-radius: 130px 12px 12px 12px;
}
.photo-stamp {
  position: absolute;
  inset-inline-end: 20px;
  bottom: 20px;
  display: flex;
  gap: 10px;
  align-items: center;
  background: var(--cream);
  border-radius: 14px;
  padding: 15px;
  font-size: 14px;
  line-height: 1.25;
  box-shadow: 0 6px 25px #2b3a321a;
  max-width: 180px;
}
.photo-stamp svg {
  color: var(--leaf);
  width: 28px;
  height: 28px;
}
.values {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-block: 1px solid var(--rule);
  padding-block: 26px;
  gap: 24px;
}
.values > div {
  display: flex;
  align-items: center;
  gap: 16px;
}
.values svg {
  color: var(--leaf);
  width: 30px;
  height: 30px;
}
.values strong,
.values small {
  display: block;
}
.values strong {
  font-size: 14px;
}
.values small {
  font-size: 12px;
  color: var(--muted);
  margin-top: 2px;
}
.section-intro {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 32px;
  margin-bottom: 32px;
}
.section-intro > p {
  max-width: 38ch;
  color: var(--muted);
}
.section-intro .eyebrow {
  margin-bottom: 10px;
}
.shop-tools {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 28px;
  flex-wrap: wrap;
}
.filters {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.filters button {
  border: 1px solid var(--rule);
  padding: 10px 17px;
  border-radius: 30px;
  background: transparent;
  font-size: 13px;
  min-height: 42px;
}
.filters button[aria-pressed='true'] {
  background: var(--leaf);
  color: var(--cream);
  border-color: var(--leaf);
}
.search {
  display: flex;
  align-items: center;
  border-bottom: 1px solid var(--rule);
  gap: 10px;
}
.search svg {
  width: 18px;
  height: 18px;
}
.search input {
  border: 0;
  background: none;
  padding: 10px 0;
  font-size: 13px;
  width: 170px;
  outline-offset: 3px;
}
.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.product-card {
  background: #fffdf9;
  border: 1px solid #e4e2d8;
  border-radius: 12px;
  overflow: hidden;
  transition:
    transform 0.15s,
    box-shadow 0.15s;
  display: flex;
  flex-direction: column;
}
.product-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 7px 22px #2b3a320a;
}
.product-art {
  display: block;
  background: #f0eee5;
  overflow: hidden;
}
.product-card:nth-child(2n) .product-art {
  background: #e9eee6;
}
.product-art img {
  width: 100%;
  aspect-ratio: 4/3;
  padding: 22px;
  transition: transform 0.2s;
}
.product-card:hover .product-art img {
  transform: scale(1.035);
}
.product-info {
  padding: 23px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.product-info > p:not(.micro) {
  font-size: 14px;
  color: var(--muted);
  margin-top: 12px;
}
.card-foot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  border-top: 1px solid var(--rule);
  padding-top: 15px;
  margin-top: auto;
}
.product-info > p:not(.micro) {
  margin-bottom: 22px;
}
.card-foot > span {
  font-size: 12px;
  color: var(--leaf);
}
.round-link {
  border: 1px solid var(--rule);
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border-radius: 50%;
}
.round-link svg {
  width: 18px;
  height: 18px;
}
.collection-note {
  margin-top: 20px;
}
.empty-search {
  padding: 40px;
  background: var(--sand);
  border-radius: 8px;
}
.story {
  background: var(--sand);
  padding-block: 76px;
}
.story-inner {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 100px;
  align-items: center;
}
.story-graphic {
  aspect-ratio: 1.15;
  border-radius: 50% 50% 6px 6px;
  background: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 20px;
  padding: 30px;
}
.story-graphic img {
  width: 250px;
}
.graphic-line {
  height: 1px;
  width: 55px;
  background: var(--leaf);
}
.story-caption {
  font-size: 13px;
  color: var(--leaf);
}
.story-inner h2 {
  font-size: 40px;
  margin-bottom: 24px;
}
.story-inner p + p {
  margin-top: 18px;
}
.story-inner p:last-child {
  color: var(--muted);
}
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-top: 38px;
}
.step-no {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  background: var(--sand);
  color: var(--leaf);
  border-radius: 50%;
  font-size: 14px;
  margin-bottom: 20px;
}
.steps h3 {
  margin-bottom: 12px;
}
.steps p {
  color: var(--muted);
  font-size: 15px;
}
.contact-band {
  background: var(--leaf);
  color: var(--cream);
  padding: 42px 48px;
  border-radius: 12px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
  margin-bottom: 85px;
}
.contact-band h2 {
  font-size: 26px;
  max-width: 30ch;
}
.contact-band p {
  font-size: 15px;
  margin-top: 12px;
}
.contact-band .button {
  flex-shrink: 0;
}
footer {
  background: var(--sand);
  padding-block: 34px 30px;
}
.footer-top {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  padding-bottom: 35px;
}
.footer-top img {
  width: 214px;
}
.footer-top p {
  font-size: 14px;
  color: var(--muted);
  margin-top: 8px;
}
.footer-top nav {
  display: flex;
  flex-direction: column;
  align-items: start;
  gap: 9px;
  font-size: 14px;
  padding-top: 20px;
}
.footer-top nav a:hover {
  text-decoration: underline;
}
.analytics-settings {
  padding: 0;
  background: transparent;
  text-align: start;
  text-decoration: underline;
  min-height: 32px;
}
.legal-footer {
  border-top: 1px solid #c6ccbc;
  padding-top: 25px;
  display: flex;
  justify-content: space-between;
  gap: 50px;
}
.legal-footer p {
  font-size: 11px;
  line-height: 1.6;
  letter-spacing: 0.01em;
}
.legal-footer p:last-child {
  max-width: 40ch;
}
.whatsapp-float {
  position: fixed;
  inset-inline-end: 24px;
  bottom: 24px;
  z-index: 30;
  background: var(--leaf);
  color: var(--cream);
  border: 2px solid var(--cream);
  border-radius: 50%;
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  box-shadow: 0 5px 18px #2b3a3240;
}
.whatsapp-float > svg {
  width: 29px;
  height: 29px;
}
.whatsapp-float > span {
  position: absolute;
  inset-inline-end: 69px;
  white-space: nowrap;
  background: var(--ink);
  color: var(--cream);
  font-size: 13px;
  padding: 9px 14px;
  border-radius: 6px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(4px);
  transition: 0.15s;
}
.whatsapp-float:hover > span,
.whatsapp-float:focus-visible > span {
  opacity: 1;
  transform: none;
}
.analytics-consent {
  position: fixed;
  z-index: 80;
  bottom: 20px;
  inset-inline-start: 20px;
  width: min(540px, calc(100% - 40px));
  padding: 25px;
  border: 1px solid var(--rule);
  border-radius: 12px;
  background: var(--cream);
  box-shadow: 0 8px 40px #2b3a3230;
}
.analytics-consent h2 {
  font-size: 20px;
  margin-bottom: 10px;
}
.analytics-consent p {
  font-size: 14px;
}
.analytics-consent a {
  text-decoration: underline;
}
.analytics-consent > div {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}
.analytics-consent button {
  flex: 1;
  min-height: 46px;
  font-size: 14px;
  padding: 11px;
  border: 1px solid var(--leaf);
  border-radius: 5px;
  background: transparent;
}
.analytics-consent button[data-consent-choice='accepted'] {
  background: var(--leaf);
  color: var(--cream);
}
.toast {
  position: fixed;
  z-index: 70;
  bottom: 95px;
  inset-inline-end: 24px;
  background: var(--ink);
  color: var(--cream);
  padding: 14px 20px;
  border-radius: 9px;
  max-width: calc(100% - 48px);
  font-size: 14px;
  box-shadow: 0 5px 20px #2b3a3233;
}
.breadcrumb {
  display: flex;
  gap: 13px;
  flex-wrap: wrap;
  font-size: 12px;
  color: var(--muted);
  padding-block: 25px;
}
.breadcrumb a {
  text-decoration: underline;
  text-underline-offset: 3px;
}
.detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 65px;
  align-items: start;
  padding-block: 15px 35px;
}
.detail-art {
  background: var(--sand);
  border-radius: 14px;
  padding: 28px;
}
.detail-art > img {
  width: 100%;
  aspect-ratio: 1.1;
  object-fit: contain;
}
.detail-art figcaption {
  font-size: 12px;
  color: var(--muted);
  padding: 15px 10px;
}
.detail-copy h1 {
  font-size: 44px;
  margin-bottom: 22px;
}
.detail-copy .eyebrow {
  margin-bottom: 12px;
}
.quote-label {
  font-size: 14px;
  color: var(--leaf);
  padding-block: 22px;
}
.bag-review {
  display: flex;
  margin-block: 18px 30px;
}
.detail-copy h2 {
  font-size: 22px;
  margin-bottom: 15px;
}
.detail-copy > p:not(.lead):not(.quote-label) {
  font-size: 14px;
  color: var(--muted);
}
.details-list {
  padding-inline-start: 21px;
  font-size: 14px;
  margin-block: 18px;
}
.details-list li {
  padding-block: 4px;
}
.food-note {
  padding: 18px;
  background: var(--sand);
  border-radius: 8px;
}
.related {
  margin-top: 30px;
}
.page-head {
  padding-block: 60px 40px;
}
.page-head .lead {
  max-width: 65ch;
  margin-top: 24px;
}
.enquiry-layout {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 50px;
  padding-bottom: 90px;
}
.quote-panel {
  padding: 30px;
  border: 1px solid var(--rule);
  border-radius: 12px;
  background: #fffdf9;
  align-self: start;
}
.quote-panel h2 {
  font-size: 24px;
}
.quote-total {
  display: flex;
  justify-content: space-between;
  gap: 15px;
  border-block: 1px solid var(--rule);
  padding-block: 19px;
  margin-block: 25px;
  font-size: 14px;
}
.quote-panel label {
  display: block;
  font-size: 14px;
  font-weight: 700;
  margin-block: 22px 9px;
}
.quote-panel select,
.quote-panel textarea {
  width: 100%;
  border: 1px solid var(--rule);
  background: var(--cream);
  border-radius: 6px;
  padding: 12px;
  resize: vertical;
}
.quote-panel .small {
  margin-top: 10px;
}
.quote-panel .button {
  width: 100%;
  margin-top: 25px;
}
.empty-basket {
  padding: 40px 25px;
  background: var(--sand);
  border-radius: 12px;
}
.empty-basket h2 {
  font-size: 24px;
  margin-bottom: 26px;
}
.storage-note {
  margin-top: 25px;
}
.storage-error {
  padding: 16px;
  background: var(--sand);
  border: 1px solid var(--deep);
  margin-top: 20px;
}
.basket-row {
  display: grid;
  grid-template-columns: 95px 1fr;
  gap: 22px;
  border-bottom: 1px solid var(--rule);
  padding-block: 22px;
}
.basket-row:first-child {
  padding-top: 0;
}
.basket-row img {
  width: 95px;
  height: 95px;
  object-fit: contain;
  background: var(--sand);
  border-radius: 8px;
}
.basket-row h2 {
  font-size: 19px;
  line-height: 1.35;
  margin-block: 7px 15px;
}
.basket-row .row-controls {
  display: flex;
  gap: 14px;
  align-items: center;
  flex-wrap: wrap;
}
.basket-row label {
  font-size: 12px;
}
.basket-row input {
  width: 66px;
  padding: 7px;
  border: 1px solid var(--rule);
  border-radius: 4px;
  background: var(--cream);
  margin-inline-start: 8px;
  min-height: 42px;
}
.remove-button {
  padding: 10px 0;
  background: none;
  text-decoration: underline;
  font-size: 12px;
}
.faq {
  max-width: 850px;
  padding-bottom: 80px;
}
.faq h2 {
  margin-bottom: 25px;
}
.faq details {
  border-bottom: 1px solid var(--rule);
  padding-block: 20px;
}
.faq summary {
  cursor: pointer;
  list-style: none;
  font-weight: 700;
  display: flex;
  justify-content: space-between;
  gap: 20px;
}
.faq summary::-webkit-details-marker {
  display: none;
}
.faq p {
  margin-top: 16px;
  color: var(--muted);
}
.legal-page {
  max-width: 850px;
  padding-block: 60px 100px;
}
.legal-page h2 {
  font-size: 24px;
  margin-block: 32px 14px;
}
.legal-page > .lead {
  margin-top: 24px;
}
.legal-page a {
  text-decoration: underline;
  overflow-wrap: anywhere;
}
.legal-page p {
  line-height: 1.75;
}
[dir='rtl'] {
  font-family: 'IBM Plex Sans Arabic', 'Segoe UI', Arial, sans-serif;
}
[dir='rtl'] h1,
[dir='rtl'] h2 {
  letter-spacing: 0;
  line-height: 1.45;
}
[dir='rtl'] .eyebrow,
[dir='rtl'] .micro {
  letter-spacing: 0;
}
[dir='rtl'] .hero-photo > img {
  border-radius: 12px 130px 12px 12px;
}
[dir='rtl'] .button > svg:last-child,
[dir='rtl'] .round-link svg {
  transform: scaleX(-1);
}
[dir='rtl'] .language-nav,
[dir='rtl'] .currency-label select {
  font-family: 'Bricolage Grotesque', 'IBM Plex Sans Arabic', Arial, sans-serif;
}
@media (min-width: 1440px) {
  .hero {
    gap: 70px;
  }
  .hero-photo {
    min-height: 510px;
  }
}
@media (max-width: 1050px) {
  .wrap {
    width: calc(100% - 48px);
  }
  .main-nav {
    gap: 18px;
  }
  .bag-text {
    display: none;
  }
  .hero {
    gap: 28px;
  }
  .hero-photo {
    min-height: 440px;
  }
  .hero-copy h1 {
    font-size: 44px;
  }
  .hero-actions {
    gap: 20px;
  }
  .story-inner {
    gap: 50px;
  }
  .values {
    gap: 14px;
  }
  .values > div {
    gap: 12px;
  }
  .product-grid {
    gap: 18px;
  }
  .product-info {
    padding: 18px;
  }
  .product-info h3 {
    font-size: 20px;
  }
  .detail {
    gap: 35px;
  }
  .enquiry-layout {
    gap: 30px;
  }
}
@media (max-width: 760px) {
  .wrap {
    width: calc(100% - 36px);
  }
  .top-strip .wrap > span:last-child {
    display: none;
  }
  .top-strip .wrap {
    justify-content: center;
  }
  .header-main {
    min-height: 98px;
    gap: 16px;
    flex-wrap: wrap;
    padding-bottom: 12px;
  }
  .brand img {
    width: 214px;
    height: 96px;
  }
  .main-nav {
    order: 3;
    width: 100%;
    justify-content: center;
    border-top: 1px solid var(--rule);
    padding-top: 14px;
    gap: 26px;
    font-size: 13px;
  }
  .locale-bar {
    padding-block: 5px;
    gap: 8px;
    flex-wrap: wrap;
  }
  .language-nav {
    gap: 13px;
    font-size: 12px;
  }
  .currency-label {
    font-size: 11px;
    gap: 1px;
  }
  .currency-label select {
    padding: 7px 0;
  }
  .hero {
    grid-template-columns: 1fr;
    padding-block: 34px 32px;
    gap: 30px;
  }
  .hero-copy h1 {
    font-size: 44px;
  }
  .hero .eyebrow {
    font-size: 11px;
    margin-bottom: 18px;
  }
  .hero-copy .lead {
    max-width: 44ch;
  }
  .hero-actions {
    margin-top: 24px;
  }
  .hero-photo {
    min-height: 0;
    aspect-ratio: 1.32;
  }
  .hero-photo > img {
    border-radius: 75px 8px 8px 8px;
  }
  .photo-stamp {
    padding: 12px;
    bottom: 14px;
    inset-inline-end: 14px;
    font-size: 12px;
  }
  .values {
    grid-template-columns: 1fr;
    padding-block: 22px;
    gap: 20px;
  }
  .values > div {
    gap: 16px;
  }
  .values strong {
    font-size: 14px;
  }
  .values small {
    font-size: 12px;
  }
  .section {
    padding-block: 54px;
  }
  .section-intro {
    display: block;
    margin-bottom: 24px;
  }
  .section-intro > p {
    margin-top: 17px;
  }
  .section-intro h2 {
    font-size: 28px;
  }
  .shop-tools {
    gap: 18px;
  }
  .filters {
    gap: 6px;
  }
  .filters button {
    padding: 9px 13px;
    font-size: 12px;
  }
  .search {
    width: 100%;
  }
  .search input {
    width: 100%;
  }
  .product-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }
  .product-art img {
    padding: 6px;
  }
  .product-info {
    padding: 14px;
  }
  .product-info h3 {
    font-size: 19px;
  }
  .product-info > p:not(.micro) {
    font-size: 13px;
  }
  .card-foot {
    gap: 8px;
  }
  .card-foot > span {
    font-size: 11px;
  }
  .round-link {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
  }
  .story {
    padding-block: 50px;
  }
  .story-inner {
    grid-template-columns: 1fr;
    gap: 35px;
  }
  .story-graphic {
    max-width: 340px;
    width: 100%;
    margin: auto;
    aspect-ratio: 1.3;
  }
  .story-inner h2 {
    font-size: 34px;
  }
  .steps {
    grid-template-columns: 1fr;
    gap: 28px;
    margin-top: 30px;
  }
  .steps article {
    padding-inline-start: 60px;
    position: relative;
  }
  .step-no {
    position: absolute;
    inset-inline-start: 0;
    top: 0;
  }
  .steps h3 {
    font-size: 22px;
  }
  .contact-band {
    display: block;
    padding: 30px 25px;
    margin-bottom: 55px;
  }
  .contact-band .button {
    margin-top: 24px;
  }
  .footer-top {
    gap: 30px;
    flex-wrap: wrap;
    padding-bottom: 28px;
  }
  .footer-top nav {
    padding-top: 0;
  }
  .legal-footer {
    flex-direction: column;
    gap: 20px;
    padding-bottom: 30px;
  }
  .whatsapp-float {
    inset-inline-end: 16px;
    bottom: 18px;
    width: 54px;
    height: 54px;
  }
  .analytics-consent {
    padding: 20px;
    bottom: 14px;
    inset-inline-start: 14px;
    width: calc(100% - 28px);
  }
  .analytics-consent h2 {
    font-size: 19px;
  }
  .analytics-consent button {
    font-size: 13px;
    padding: 11px 8px;
  }
  .detail {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .detail-art {
    padding: 18px;
  }
  .detail-art > img {
    aspect-ratio: 1.5;
  }
  .detail-copy h1 {
    font-size: 36px;
  }
  .detail-copy .button {
    width: 100%;
  }
  .related .product-card:last-child {
    display: none;
  }
  .page-head {
    padding-block: 40px 30px;
  }
  .page-head h1 {
    font-size: 36px;
  }
  .enquiry-layout {
    grid-template-columns: 1fr;
    gap: 30px;
    padding-bottom: 65px;
  }
  .quote-panel {
    padding: 24px;
  }
  .basket-row {
    gap: 16px;
    grid-template-columns: 76px 1fr;
  }
  .basket-row img {
    width: 76px;
    height: 85px;
  }
  .basket-row .row-controls {
    gap: 5px 15px;
  }
  .basket-row h2 {
    font-size: 18px;
  }
  .legal-page {
    padding-block: 40px 65px;
  }
  .legal-page h1 {
    font-size: 36px;
  }
  .faq {
    padding-bottom: 50px;
  }
  [dir='rtl'] .hero-photo > img {
    border-radius: 8px 75px 8px 8px;
  }
}
@media (max-width: 360px) {
  .wrap {
    width: calc(100% - 28px);
  }
  .main-nav {
    gap: 18px;
    font-size: 12px;
  }
  .hero-copy h1 {
    font-size: 38px;
  }
  .product-grid {
    grid-template-columns: 1fr;
  }
  .related .product-card:last-child {
    display: flex;
  }
  .language-nav {
    gap: 12px;
  }
  .locale-bar {
    justify-content: center;
  }
  .currency-label {
    margin-inline-start: auto;
  }
  .product-art img {
    aspect-ratio: 1.6;
    padding: 12px;
  }
  .hero-actions > .button {
    width: 100%;
  }
  .hero-actions {
    gap: 15px;
  }
  .basket-row {
    grid-template-columns: 65px 1fr;
  }
  .basket-row img {
    width: 65px;
  }
  .quote-panel {
    padding: 20px;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    transition: none !important;
    animation: none !important;
  }
}
@media (max-width: 360px) {
  .header-main {
    gap: 6px;
  }
  .basket-link {
    gap: 6px;
  }
}

.category-guide {
  padding-block: 24px 32px;
}
.category-guide p {
  max-width: 75ch;
  line-height: 1.8;
}
