/*
Theme Name: Auronix Bakery
Theme URI: https://example.com/
Author: Codex
Description: Auronix Bakery storefront theme inspired by the provided homepage reference.
Version: 1.0.4
Text Domain: auronix-bakery
*/

:root {
  --bg: #ffffff;
  --paper: #fbf8f5;
  --paper-2: #f7f1ea;
  --sand: #ede4db;
  --line: #e8ddd2;
  --line-2: #d9c7b7;
  --text: #22150f;
  --muted: #6e5a4d;
  --muted-2: #8f7a6a;
  --accent: #c57b28;
  --accent-2: #d8943a;
  --accent-soft: #f5e5d0;
  --dark: #2a1208;
  --dark-2: #3a2217;
  --shadow: 0 12px 30px rgba(63, 34, 12, 0.08);
  --shadow-soft: 0 8px 22px rgba(59, 29, 7, 0.05);
  --radius: 10px;
  --radius-sm: 8px;
  --container: 1700px;
  --page-gutter: clamp(48px, 13.5vw, 220px);
  --page-width: min(var(--container), calc(100vw - var(--page-gutter)));
  --serif: "Cormorant Garamond", Georgia, serif;
  --sans: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  background: var(--bg);
  font-family: var(--sans);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

#wpadminbar {
  display: none !important;
}

body.admin-bar {
  margin-top: 0 !important;
}

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

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

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

.screen-reader-text {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site {
  overflow-x: clip;
}

.topbar {
  background: linear-gradient(180deg, #2b1205 0%, #241004 100%);
  color: #fff;
  font-size: 11px;
  letter-spacing: 0;
}

.topbar__inner,
.site-header__inner,
.nav__inner,
.section__inner,
.footer__inner,
.footer-bottom__inner,
.newsletter__inner {
  width: var(--page-width);
  margin: 0 auto;
}

.topbar__inner {
  min-height: 34px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.topbar__left,
.topbar__right,
.utility-link,
.utility-pill {
  display: flex;
  align-items: center;
  gap: 8px;
}

.topbar__right {
  gap: 18px;
}

.utility-link,
.utility-pill {
  opacity: 0.96;
}

.utility-pill {
  gap: 4px;
}

.icon {
  width: 14px;
  height: 14px;
  flex: 0 0 auto;
}

.site-header {
  background: #fff;
  border-bottom: 1px solid #f0e7de;
}

.site-header__inner {
  min-height: 90px;
  display: grid;
  grid-template-columns: minmax(190px, 260px) minmax(420px, 1fr) auto;
  align-items: center;
  gap: 34px;
}

.brand {
  display: inline-flex;
  align-items: center;
  min-width: 0;
}

.brand__logo {
  width: 214px;
  height: auto;
}

.searchbar {
  display: flex;
  align-items: stretch;
  max-width: 760px;
  margin: 0 auto;
  width: 100%;
  border: 1px solid #dbcfc4;
  border-radius: 5px;
  overflow: hidden;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.6);
}

.searchbar input {
  flex: 1;
  border: 0;
  outline: none;
  min-width: 0;
  padding: 13px 16px;
  color: var(--text);
  background: #fff;
}

.searchbar input::placeholder {
  color: #8d8178;
}

.searchbar button {
  width: 40px;
  border: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(180deg, #d48d33 0%, #c47720 100%);
  color: #fff;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 22px;
  white-space: nowrap;
}

.header-actions__item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  color: #3a2c22;
  font-weight: 500;
}

.cart-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 16px;
  height: 16px;
  padding: 0 4px;
  border-radius: 999px;
  background: #d08a33;
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  margin-left: 2px;
}

.nav {
  border-bottom: 1px solid #ebdfd6;
}

.nav__inner {
  min-height: 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: nowrap;
}

.nav__link {
  position: relative;
  padding: 15px 0 14px;
  color: #1f1711;
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
}

.nav__link.is-active {
  color: var(--accent);
}

.nav__link.is-active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 3px;
  background: var(--accent);
  border-radius: 3px 3px 0 0;
}

.hero {
  position: relative;
  overflow: clip;
  background: linear-gradient(90deg, #f4efeb 0%, #f3eeea 31%, #faf9f8 55%, #edf2f5 100%);
  border-bottom: 1px solid #e9ded5;
}

.hero__inner {
  width: 100vw;
  margin: 0 auto;
  min-height: 386px;
  position: relative;
  overflow: hidden;
}

.hero__slides {
  position: absolute;
  inset: 0;
}

.hero__slide {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  padding: 0 calc(var(--page-gutter) / 2);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.45s ease, visibility 0.45s ease;
}

.hero__slide.is-active {
  opacity: 1;
  visibility: visible;
}

.hero__content {
  position: relative;
  z-index: 2;
  width: min(360px, 41vw);
  max-width: 100%;
  padding-top: 24px;
  padding-bottom: 58px;
}

.hero h1 {
  margin: 0;
  font-family: var(--serif);
  font-weight: 500;
  font-size: 48px;
  line-height: 0.94;
  letter-spacing: 0;
  color: #1f1711;
}

.hero h1 span {
  display: block;
  color: var(--accent);
}

.hero p {
  margin: 16px 0 0;
  max-width: 340px;
  color: #41342d;
  font-size: 14px;
  line-height: 1.85;
}

.hero__actions {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 18px;
}

.btn {
  min-height: 34px;
  padding: 0 18px;
  border-radius: 5px;
  border: 1px solid transparent;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

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

.btn--dark {
  background: linear-gradient(180deg, #392317 0%, #2a150d 100%);
  color: #fff;
  box-shadow: 0 10px 22px rgba(42, 21, 13, 0.18);
}

.btn--light {
  background: #fff;
  color: #33271f;
  border-color: #bdaea1;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.75);
}

.hero__art {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.hero__art::before {
  content: "";
  position: absolute;
  left: 40%;
  top: 42px;
  width: 110px;
  height: 230px;
  background: radial-gradient(circle at 50% 30%, rgba(255, 255, 255, 0.7) 0, rgba(255, 255, 255, 0.18) 36%, rgba(255, 255, 255, 0) 72%);
  filter: blur(12px);
  opacity: 0.9;
}

.hero__image {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 58% 58%;
}

.hero__slide:nth-child(2) .hero__image,
.hero__slide:nth-child(3) .hero__image {
  object-position: 58% 56%;
}

.hero__features {
  position: absolute;
  left: calc(var(--page-gutter) / 2);
  right: auto;
  bottom: 24px;
  display: grid;
  grid-template-columns: repeat(4, max-content);
  gap: 16px;
  width: auto;
  height: auto;
  background: none;
  z-index: 2;
}

.feature {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 10px;
  line-height: 1.35;
  color: #4a392e;
  opacity: 1;
}

.feature__icon {
  width: 25px;
  height: 25px;
  border: 0;
  border-radius: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: transparent;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  flex: 0 0 auto;
}

.feature__icon svg {
  display: none;
}

.feature:nth-child(1) .feature__icon { background-image: url("assets/feature/fresh.png"); }
.feature:nth-child(2) .feature__icon { background-image: url("assets/feature/quality.png"); }
.feature:nth-child(3) .feature__icon { background-image: url("assets/feature/hygienic.png"); }
.feature:nth-child(4) .feature__icon { background-image: url("assets/feature/delivery.png"); }

.hero__controls {
  position: absolute;
  right: calc(var(--page-gutter) / 2);
  bottom: 22px;
  z-index: 4;
  display: flex;
  align-items: center;
  gap: 10px;
}

.hero__arrow,
.hero__dot {
  border: 1px solid rgba(88, 58, 35, 0.22);
  background: rgba(255, 255, 255, 0.82);
  color: #4c3021;
  box-shadow: var(--shadow-soft);
  cursor: pointer;
}

.hero__arrow {
  width: 31px;
  height: 31px;
  border-radius: 999px;
  display: grid;
  place-items: center;
}

.hero__arrow:first-child {
  transform: rotate(180deg);
}

.hero__arrow svg {
  width: 14px;
  height: 14px;
}

.hero__dots {
  display: flex;
  align-items: center;
  gap: 6px;
}

.hero__dot {
  width: 8px;
  height: 8px;
  padding: 0;
  border-radius: 999px;
}

.hero__dot.is-active {
  width: 22px;
  background: var(--accent);
  border-color: var(--accent);
}

.section {
  padding: 22px 0 18px;
}

.service-strip {
  padding: 14px 0 10px;
  background: #fff;
}

.service-strip__inner {
  width: var(--page-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(170px, 0.55fr) minmax(180px, 0.62fr) minmax(420px, 1.6fr);
  gap: 12px;
  align-items: stretch;
}

.service-strip__item,
.slot-checker {
  border: 1px solid #e4d7ca;
  border-radius: 8px;
  background: #fbf8f5;
  box-shadow: var(--shadow-soft);
}

.service-strip__item {
  padding: 13px 14px;
  display: grid;
  align-content: center;
  gap: 4px;
}

.service-strip__item strong {
  font-family: var(--serif);
  font-size: 17px;
  line-height: 1;
}

.service-strip__item span,
.slot-checker output {
  color: #6c5748;
  font-size: 11px;
  line-height: 1.35;
}

.slot-checker {
  padding: 10px;
  display: grid;
  grid-template-columns: 1fr 1fr auto minmax(180px, 0.9fr);
  gap: 10px;
  align-items: end;
}

.slot-checker label {
  display: grid;
  gap: 5px;
  color: #4c3b30;
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
}

.slot-checker select,
.slot-checker button {
  height: 36px;
  border-radius: 5px;
}

.slot-checker select {
  border: 1px solid #d8c8b8;
  background: #fff;
  padding: 0 10px;
}

.slot-checker button {
  border: 0;
  padding: 0 14px;
  background: var(--dark);
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  cursor: pointer;
}

.slot-checker output {
  min-height: 36px;
  display: flex;
  align-items: center;
  padding: 0 10px;
  border: 1px solid #e0d3c6;
  border-radius: 5px;
  background: #fff;
}

.section__header {
  width: var(--page-width);
  margin: 0 auto 10px;
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
}

.section__title {
  margin: 0;
  font-family: var(--serif);
  font-size: 28px;
  line-height: 1.05;
  font-weight: 500;
  letter-spacing: -0.02em;
  color: #1f1711;
}

.section__title em {
  font-style: italic;
  color: var(--accent);
}

.section__link {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.categories {
  padding-top: 18px;
  padding-bottom: 22px;
}

.categories .section__header {
  position: relative;
  justify-content: center;
}

.categories .section__link {
  position: absolute;
  right: 0;
  top: 8px;
}

.category-grid {
  width: var(--page-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 16px;
  text-align: center;
}

.category {
  display: grid;
  justify-items: center;
  gap: 6px;
}

.category__icon {
  width: 88px;
  height: 88px;
  border-radius: 50%;
  background: #f6f0ea;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  display: grid;
  place-items: center;
  border: 0;
}

.category__icon svg {
  display: none;
}

.category:nth-child(1) .category__icon { background-image: url("assets/category/cakes.png"); }
.category:nth-child(2) .category__icon { background-image: url("assets/category/breads.png"); }
.category:nth-child(3) .category__icon { background-image: url("assets/category/pastries.png"); }
.category:nth-child(4) .category__icon { background-image: url("assets/category/cookies.png"); }
.category:nth-child(5) .category__icon { background-image: url("assets/category/desserts.png"); }
.category:nth-child(6) .category__icon { background-image: url("assets/category/custom-cakes.png"); }

.category.is-selected .category__icon {
  border-color: #d5a36f;
  background-color: #f1e5d9;
}

.category.is-selected .category__name {
  color: var(--accent);
}

.category__name {
  font-family: var(--serif);
  font-size: 16px;
  line-height: 1.1;
  color: #241910;
}

.category__meta {
  color: #8a7464;
  font-size: 11px;
}

.dietary-shop {
  padding-top: 4px;
  padding-bottom: 8px;
}

.dietary-chips {
  width: var(--page-width);
  margin: 0 auto;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.dietary-chip,
.product-detail__chips span {
  min-height: 30px;
  border: 1px solid #e0cfbd;
  border-radius: 999px;
  background: #fff;
  color: #744819;
  display: inline-flex;
  align-items: center;
  padding: 0 12px;
  font-size: 11px;
  font-weight: 800;
}

.dietary-chip.is-selected {
  background: var(--dark);
  border-color: var(--dark);
  color: #fff;
}

.occasions {
  padding-top: 20px;
  padding-bottom: 12px;
}

.occasion-grid {
  width: var(--page-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 14px;
}

.occasion-card {
  min-height: 118px;
  padding: 14px 10px 12px;
  border: 1px solid #e6d9cd;
  border-radius: 8px;
  background: #fff;
  display: grid;
  justify-items: center;
  align-content: start;
  gap: 7px;
  text-align: center;
  box-shadow: var(--shadow-soft);
}

.occasion-card__icon {
  width: 42px;
  height: 42px;
  border-radius: 999px;
  background: #f7f1ea;
  color: #8b5621;
  display: grid;
  place-items: center;
}

.occasion-card__icon svg {
  width: 22px;
  height: 22px;
}

.occasion-card__name {
  font-family: var(--serif);
  font-size: 16px;
  line-height: 1.05;
  color: #241910;
}

.occasion-card__meta {
  max-width: 150px;
  color: #7f6a5b;
  font-size: 10px;
  line-height: 1.35;
}

.products {
  padding-top: 8px;
}

.product-rail {
  position: relative;
  width: var(--page-width);
  margin: 0 auto;
}

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

.carousel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 1px solid #dfd3c8;
  background: #fff;
  color: #7a6658;
  display: inline-grid;
  place-items: center;
  box-shadow: var(--shadow-soft);
}

.carousel-arrow--left {
  left: -26px;
}

.carousel-arrow--right {
  right: -26px;
}

.product-card {
  background: #fff;
  border: 1px solid #e6d9cd;
  border-radius: 8px;
  overflow: hidden;
  position: relative;
  display: flex;
  flex-direction: column;
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.7), var(--shadow-soft);
}

.product-card__image {
  position: relative;
  height: clamp(188px, 11.2vw, 214px);
  padding: 0;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: linear-gradient(180deg, #fbf8f5 0%, #f5eee7 100%);
}

.product-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.product-card__badge {
  position: absolute;
  left: 10px;
  top: 10px;
  z-index: 2;
  min-height: 22px;
  padding: 0 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(215, 170, 121, 0.5);
  color: #8a531d;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  box-shadow: 0 6px 15px rgba(54, 29, 10, 0.08);
}

.product-card__heart {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 20px;
  height: 20px;
  padding: 0;
  border: 0;
  background: transparent;
  color: #3a2b21;
  display: grid;
  place-items: center;
  cursor: pointer;
  z-index: 2;
}

.product-card__heart.is-active {
  color: var(--accent);
}

.product-card__body {
  padding: 9px 14px 10px;
  display: grid;
  gap: 3px;
}

.product-card__title {
  font-size: 11px;
  font-weight: 500;
  color: #231912;
  line-height: 1.35;
  min-height: 28px;
}

.product-card__price {
  font-size: 11px;
  font-weight: 700;
}

.rating {
  display: flex;
  align-items: center;
  gap: 3px;
  color: #c57b28;
  font-size: 10px;
  margin-top: 2px;
}

.rating__count {
  color: #8b796b;
  margin-left: 2px;
}

.product-card__meta-row {
  min-height: 24px;
  color: #765f4f;
  font-size: 10px;
  line-height: 1.3;
}

.product-card__meta-row span {
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.product-card__meta-row svg {
  width: 12px;
  height: 12px;
  color: var(--accent);
}

.product-card__button {
  margin-top: 5px;
  height: 30px;
  border-radius: 4px;
  border: 1px solid #d7aa79;
  color: #c47720;
  background: #fff;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.18s ease, color 0.18s ease;
}

.product-card__button:hover,
.product-card__button.is-added {
  background: var(--accent);
  color: #fff;
}

.product-card[hidden],
.blog-card[hidden] {
  display: none;
}

.addons {
  padding-top: 16px;
}

.addon-grid {
  width: var(--page-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.addon-card {
  min-height: 116px;
  border: 1px solid #e4d7ca;
  border-radius: 8px;
  background: #fff;
  display: grid;
  grid-template-columns: auto 1fr;
  grid-template-rows: 1fr auto;
  gap: 10px 12px;
  padding: 14px;
  box-shadow: var(--shadow-soft);
}

.addon-card__icon {
  width: 38px;
  height: 38px;
  border-radius: 999px;
  background: #f7f1ea;
  color: #8b5621;
  display: grid;
  place-items: center;
}

.addon-card h3 {
  margin: 0;
  font-family: var(--serif);
  font-size: 17px;
  line-height: 1.05;
}

.addon-card p {
  margin: 4px 0 0;
  color: #6c5748;
  font-size: 10px;
  line-height: 1.4;
}

.addon-card strong {
  grid-column: 2;
  color: var(--accent);
  font-size: 12px;
}

.promo {
  padding-top: 8px;
}

.promo__inner {
  width: var(--page-width);
  margin: 0 auto;
  background: linear-gradient(90deg, #f2e7dc 0%, #f6efe8 40%, #efe0d1 100%);
  border: 1px solid #e2d4c7;
  border-radius: 10px;
  overflow: hidden;
  min-height: 142px;
  display: grid;
  grid-template-columns: minmax(220px, 0.95fr) 1px minmax(260px, 1.15fr) minmax(230px, 0.95fr);
  align-items: center;
}

.promo__left,
.promo__center,
.promo__right {
  min-height: 142px;
  display: flex;
  align-items: center;
}

.promo__left {
  gap: 14px;
  padding: 14px 20px;
}

.promo__divider {
  width: 1px;
  align-self: stretch;
  background: #dfcdbd;
}

.promo__icon {
  width: 38px;
  height: 38px;
  color: #8b5a24;
  flex: 0 0 auto;
}

.promo__title {
  margin: 0;
  font-family: var(--serif);
  font-size: 15px;
  font-weight: 700;
  line-height: 1;
}

.promo__text {
  margin: 3px 0 0;
  font-size: 11px;
  color: #4f3b2f;
  line-height: 1.35;
}

.promo__center {
  flex-direction: column;
  justify-content: center;
  text-align: center;
  gap: 8px;
  padding: 12px 10px;
}

.promo__headline {
  font-family: var(--serif);
  font-size: 36px;
  line-height: 0.9;
  color: #1f1711;
}

.promo__headline span {
  display: block;
  font-size: 18px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #433127;
  margin-top: 4px;
}

.promo__code {
  min-height: 28px;
  padding: 0 12px;
  border-radius: 4px;
  background: #22150f;
  color: #fff;
  display: inline-flex;
  align-items: center;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.promo__right {
  justify-content: center;
  padding: 0;
}

.promo__image {
  width: 100%;
  height: 142px;
  padding: 0;
  object-fit: cover;
  object-position: center;
}

.reviews-proof {
  padding-top: 16px;
  padding-bottom: 10px;
}

.reviews-proof__inner {
  width: var(--page-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(240px, 0.78fr) minmax(0, 1.6fr);
  gap: 14px;
  align-items: stretch;
}

.reviews-proof__summary,
.reviews-proof__grid blockquote {
  border: 1px solid #e4d7ca;
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow-soft);
}

.reviews-proof__summary {
  padding: 18px;
  display: flex;
  align-items: center;
  gap: 14px;
}

.reviews-proof__score {
  width: 62px;
  height: 62px;
  border-radius: 999px;
  background: var(--dark);
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 22px;
  font-weight: 800;
}

.reviews-proof__summary strong {
  font-family: var(--serif);
  font-size: 20px;
  line-height: 1.05;
}

.reviews-proof__summary p,
.reviews-proof__grid p {
  margin: 4px 0 0;
  color: #6c5748;
  font-size: 11px;
  line-height: 1.45;
}

.reviews-proof__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.reviews-proof__grid blockquote {
  margin: 0;
  padding: 14px;
}

.reviews-proof__grid cite {
  display: block;
  margin-top: 10px;
  color: #241910;
  font-size: 11px;
  font-style: normal;
  font-weight: 800;
}

.custom-order {
  padding-top: 12px;
}

.custom-order__inner {
  width: var(--page-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(340px, 0.85fr);
  gap: 22px;
  align-items: stretch;
  border: 1px solid #e4d7ca;
  border-radius: 10px;
  background: #fbf8f5;
  padding: 20px;
  box-shadow: var(--shadow-soft);
}

.custom-order__content {
  display: grid;
  align-content: center;
  gap: 10px;
}

.custom-order__content p {
  max-width: 640px;
  margin: 0;
  color: #59473b;
  font-size: 13px;
  line-height: 1.65;
}

.studio-steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 6px;
}

.studio-steps div {
  min-height: 68px;
  padding: 12px;
  border: 1px solid #e5d8cc;
  border-radius: 8px;
  background: #fff;
  color: #4d3b30;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  line-height: 1.35;
}

.studio-steps span {
  width: 26px;
  height: 26px;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  display: inline-grid;
  place-items: center;
  flex: 0 0 auto;
  font-weight: 800;
}

.custom-order__form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  padding: 14px;
  border-radius: 8px;
  background: #fff;
  border: 1px solid #e4d8cd;
}

.custom-order__form label {
  display: grid;
  gap: 6px;
  color: #4e3d32;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
}

.custom-order__form select,
.custom-order__form input {
  width: 100%;
  min-width: 0;
  height: 38px;
  border: 1px solid #d9c8b8;
  border-radius: 5px;
  background: #fff;
  color: #241910;
  padding: 0 10px;
  font-size: 12px;
}

.custom-order__form button {
  grid-column: 1 / -1;
  height: 40px;
  border: 0;
  border-radius: 5px;
  background: linear-gradient(180deg, #392317 0%, #2a150d 100%);
  color: #fff;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  cursor: pointer;
}

.custom-order__wide {
  grid-column: 1 / -1;
}

.delivery-proof {
  padding-top: 10px;
  padding-bottom: 10px;
}

.delivery-proof__grid {
  width: var(--page-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.delivery-proof__item {
  min-height: 112px;
  padding: 14px;
  border: 1px solid #e4d7ca;
  border-radius: 8px;
  background: #fff;
  display: grid;
  align-content: start;
  gap: 6px;
  box-shadow: var(--shadow-soft);
}

.delivery-proof__item span {
  width: 30px;
  height: 30px;
  border-radius: 999px;
  background: #f7f1ea;
  color: #8b5621;
  display: grid;
  place-items: center;
}

.delivery-proof__item span svg {
  width: 17px;
  height: 17px;
}

.delivery-proof__item strong {
  font-family: var(--serif);
  font-size: 16px;
  line-height: 1.05;
  color: #241910;
}

.delivery-proof__item p {
  margin: 0;
  color: #6f5b4d;
  font-size: 10px;
  line-height: 1.45;
}

.pickup-zones {
  padding-top: 12px;
  padding-bottom: 8px;
}

.pickup-zones__grid,
.faq-list {
  width: var(--page-width);
  margin: 0 auto;
  display: grid;
  gap: 12px;
}

.pickup-zones__grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.pickup-zone,
.faq-item {
  border: 1px solid #e4d7ca;
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow-soft);
}

.pickup-zone {
  min-height: 122px;
  padding: 14px;
  display: grid;
  align-content: start;
  gap: 6px;
}

.pickup-zone span {
  width: 30px;
  height: 30px;
  border-radius: 999px;
  background: #f7f1ea;
  color: #8b5621;
  display: grid;
  place-items: center;
}

.pickup-zone h3 {
  margin: 0;
  font-family: var(--serif);
  font-size: 18px;
  line-height: 1.05;
}

.pickup-zone p,
.pickup-zone strong {
  margin: 0;
  font-size: 11px;
  line-height: 1.4;
}

.pickup-zone p {
  color: #6f5b4d;
}

.pickup-zone strong {
  color: var(--accent);
}

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

.faq-item {
  padding: 0 14px;
}

.faq-item summary {
  min-height: 48px;
  display: flex;
  align-items: center;
  color: #241910;
  font-size: 13px;
  font-weight: 800;
  cursor: pointer;
}

.faq-item p {
  margin: 0;
  padding: 0 0 14px;
  color: #6f5b4d;
  font-size: 12px;
  line-height: 1.55;
}

.blog-grid {
  width: var(--page-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.blog-card {
  border: 1px solid #e3d7cb;
  border-radius: 8px;
  overflow: hidden;
  background: #fff;
  box-shadow: var(--shadow-soft);
}

.blog-card__image {
  position: relative;
  display: block;
  height: clamp(150px, 8.8vw, 170px);
  padding: 0;
  overflow: hidden;
  background: linear-gradient(180deg, #fbf8f5 0%, #f5eee7 100%);
}

.blog-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.blog-card__tag {
  position: absolute;
  left: 10px;
  bottom: 10px;
  padding: 4px 8px;
  border-radius: 4px;
  background: #f6ebdf;
  color: #8f642f;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
}

.blog-card__body {
  padding: 10px 12px 12px;
}

.blog-card__title {
  margin: 0;
  font-size: 13px;
  line-height: 1.45;
  font-weight: 500;
  color: #231912;
}

.blog-card__title a {
  display: block;
  color: inherit;
  text-decoration: none;
}

.blog-card__title a:hover {
  color: var(--accent);
}

.blog-card__meta {
  margin-top: 10px;
  color: #8d7b6d;
  font-size: 10px;
}

.detail-page {
  padding: 34px 0 26px;
  background: #fff;
}

.detail-shell {
  width: var(--page-width);
  margin: 0 auto;
}

.detail-back {
  margin-bottom: 18px;
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.product-detail__grid {
  display: grid;
  grid-template-columns: minmax(360px, 0.92fr) minmax(0, 1.08fr);
  gap: 28px;
  align-items: stretch;
}

.product-detail__media,
.product-detail__content,
.article-detail__image,
.article-detail__header,
.article-detail__body,
.detail-empty {
  border: 1px solid #e4d7ca;
  border-radius: 10px;
  background: #fff;
  box-shadow: var(--shadow-soft);
}

.product-detail__media {
  position: relative;
  min-height: 520px;
  overflow: hidden;
  background: #fbf8f5;
}

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

.product-detail__content {
  padding: 28px;
  display: grid;
  align-content: center;
  gap: 16px;
}

.detail-kicker {
  margin: 0;
  color: var(--accent);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.product-detail__content h1,
.article-detail__header h1,
.detail-empty h1 {
  margin: 0;
  font-family: var(--serif);
  font-size: 44px;
  line-height: 0.98;
  font-weight: 500;
  color: #1f1711;
}

.product-detail__description,
.article-detail__header p,
.article-detail__body p {
  margin: 0;
  color: #5a493c;
  font-size: 14px;
  line-height: 1.75;
}

.product-detail__price-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 0;
  border-top: 1px solid #eadfd5;
  border-bottom: 1px solid #eadfd5;
}

.product-detail__price-row strong {
  font-size: 22px;
  color: #241910;
}

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

.product-detail__facts span {
  min-height: 46px;
  border: 1px solid #e5d8cc;
  border-radius: 8px;
  background: #fbf8f5;
  color: #4c3b30;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px;
  font-size: 12px;
  line-height: 1.35;
}

.product-detail__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

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

.product-detail__form label {
  display: grid;
  gap: 6px;
  color: #4e3d32;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

.product-detail__form select,
.product-detail__form input {
  height: 40px;
  border: 1px solid #d9c8b8;
  border-radius: 5px;
  padding: 0 10px;
  background: #fff;
  color: #241910;
}

.product-detail__form .btn {
  width: 100%;
}

.product-detail__wide,
.product-addons {
  grid-column: 1 / -1;
}

.product-addons {
  margin: 0;
  padding: 12px;
  border: 1px solid #e1d2c4;
  border-radius: 8px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}

.product-addons legend {
  padding: 0 6px;
  color: #4e3d32;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

.product-addons label {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #4e3d32;
  font-size: 12px;
  font-weight: 500;
  text-transform: none;
}

.product-addons input {
  width: 15px;
  height: 15px;
}

.product-addons strong {
  color: var(--accent);
  font-size: 11px;
}

.product-trust {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.product-trust span,
.product-trust a {
  min-height: 32px;
  padding: 0 10px;
  border: 1px solid #e1d2c4;
  border-radius: 999px;
  background: #fbf8f5;
  color: #4e3d32;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 800;
}

.product-trust a {
  color: #1f6d37;
}

.detail-list {
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px 14px;
  list-style: none;
}

.detail-list li {
  position: relative;
  padding-left: 16px;
  color: #5f4d40;
  font-size: 12px;
  line-height: 1.45;
}

.detail-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: var(--accent);
}

.detail-related {
  margin-top: 28px;
}

.detail-related .section__header {
  width: 100%;
}

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

.detail-card-grid--blog {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.mini-card {
  border: 1px solid #e4d7ca;
  border-radius: 8px;
  overflow: hidden;
  background: #fff;
  box-shadow: var(--shadow-soft);
  display: grid;
}

.mini-card img {
  width: 100%;
  height: 145px;
  object-fit: cover;
}

.mini-card span,
.mini-card strong {
  padding: 0 12px;
}

.mini-card span {
  margin-top: 10px;
  color: #241910;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.35;
}

.mini-card strong {
  margin: 6px 0 12px;
  color: var(--accent);
  font-size: 12px;
}

.product-detail .detail-related .mini-card {
  grid-template-rows: auto 1fr auto;
}

.product-detail .detail-related .mini-card img {
  height: auto;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  object-position: center;
  background: #fbf8f5;
}

.product-detail .detail-related .mini-card span {
  min-height: 38px;
}

.article-detail__header {
  padding: 26px;
  display: grid;
  gap: 12px;
}

.article-detail__header .blog-card__tag {
  position: static;
  justify-self: start;
}

.article-detail__image {
  margin-top: 18px;
  height: 430px;
  overflow: hidden;
}

.article-detail__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.article-detail__body {
  margin-top: 18px;
  padding: 26px;
  display: grid;
  gap: 14px;
}

.detail-empty {
  min-height: 320px;
  padding: 28px;
  display: grid;
  place-items: center;
  text-align: center;
}

.newsletter {
  padding-top: 0;
}

#blog {
  padding-top: 8px;
}

.newsletter__inner {
  background: linear-gradient(180deg, #2b1205 0%, #241004 100%);
  border-radius: 6px;
  color: #fff;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 28px;
  align-items: center;
  min-height: 76px;
  padding: 14px 18px;
}

.newsletter__copy {
  display: flex;
  align-items: center;
  gap: 16px;
  min-width: 0;
}

.newsletter__icon {
  width: 35px;
  height: 35px;
  flex: 0 0 auto;
  background: url("assets/newsletter/envelope.png") center / contain no-repeat;
}

.newsletter__title {
  margin: 0;
  font-family: var(--serif);
  font-size: 17px;
  line-height: 1.05;
  font-weight: 600;
}

.newsletter__text {
  margin: 4px 0 0;
  color: #f0dfcf;
  font-size: 11px;
}

.newsletter__form {
  display: flex;
  gap: 10px;
}

.newsletter__form input {
  flex: 1;
  min-width: 0;
  height: 40px;
  border: 0;
  border-radius: 4px;
  padding: 0 14px;
  background: #fff;
}

.newsletter__form button {
  height: 40px;
  padding: 0 20px;
  border-radius: 4px;
  border: 0;
  background: linear-gradient(180deg, #d79338 0%, #c57b28 100%);
  color: #fff;
  font-weight: 700;
  text-transform: uppercase;
}

.site-footer {
  padding: 4px 0 0;
}

.footer__inner {
  display: grid;
  grid-template-columns: 1.15fr 0.62fr 0.82fr 0.82fr 1.12fr;
  gap: 20px;
  align-items: start;
  padding-top: 0;
}

.footer-brand__logo {
  width: 190px;
  height: auto;
}

.footer-brand__copy {
  margin: 12px 0 0;
  color: #5d4b3f;
  font-size: 10px;
  line-height: 1.45;
}

.socials {
  display: flex;
  gap: 10px;
  margin-top: 13px;
}

.socials a {
  width: 25px;
  height: 25px;
  border: 1px solid #d8c8ba;
  border-radius: 999px;
  display: inline-grid;
  place-items: center;
  color: #3a2a1f;
}

.footer-col__title {
  margin: 8px 0 8px;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 5px;
}

.footer-col li,
.contact-item {
  font-size: 10px;
  color: #4b392e;
  line-height: 1.3;
}

.contact-list {
  display: grid;
  gap: 5px;
}

.contact-item {
  display: flex;
  gap: 8px;
  align-items: flex-start;
}

.contact-item svg {
  width: 14px;
  height: 14px;
  color: #a26729;
  margin-top: 2px;
  flex: 0 0 auto;
}

.payment-logos {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 10px;
}

.payment-badge {
  height: 20px;
  min-width: 34px;
  padding: 0 6px;
  border-radius: 3px;
  border: 1px solid #d6c8bb;
  background: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  font-weight: 700;
  color: #3b2a21;
}

.footer-bottom {
  margin-top: 6px;
  border-top: 1px solid #e9ddd3;
  padding: 8px 0 10px;
}

.footer-bottom__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  font-size: 11px;
  color: #6d5c50;
}

.uae-flag {
  width: 22px;
  height: 15px;
  border-radius: 2px;
  overflow: hidden;
  box-shadow: 0 0 0 1px rgba(0,0,0,0.06);
  flex: 0 0 auto;
}

.uae-flag span {
  display: block;
}

.uae-flag__green { height: 34%; background: #00732f; }
.uae-flag__white { height: 33%; background: #fff; }
.uae-flag__black { height: 33%; background: #111; }
.uae-flag__red {
  position: absolute;
  width: 7px;
  height: 15px;
  background: #e41f25;
}

.footer-bottom__right {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.icon-stroke {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.storefront-toast {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 50;
  min-width: 160px;
  padding: 12px 16px;
  border-radius: 6px;
  background: #2a1208;
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  box-shadow: 0 12px 32px rgba(42, 18, 8, 0.2);
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  transition: opacity 0.18s ease, transform 0.18s ease;
}

.storefront-toast.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.sticky-contact {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 60;
  display: grid;
  gap: 8px;
}

.sticky-contact a {
  min-height: 38px;
  padding: 0 12px;
  border-radius: 999px;
  background: #1f6d37;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  font-size: 12px;
  font-weight: 800;
  box-shadow: 0 12px 28px rgba(31, 109, 55, 0.24);
}

.sticky-contact a + a {
  background: var(--dark);
  box-shadow: 0 12px 28px rgba(42, 18, 8, 0.22);
}

@media (max-width: 760px) {
  .site-header__inner {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 10px 0 12px;
  }

  .searchbar {
    max-width: none;
  }

  .header-actions {
    justify-content: space-between;
    gap: 12px;
    flex-wrap: wrap;
  }

  .hero__inner {
    min-height: 420px;
    padding: 0;
  }

  .hero__slide {
    padding: 18px;
  }

  .hero__content {
    width: min(390px, 56vw);
  }

  .hero h1 {
    font-size: clamp(48px, 8vw, 64px);
  }

  .hero__image {
    width: 100%;
  }

  .hero__features {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    bottom: 12px;
    left: 18px;
  }

  .hero__controls {
    right: 18px;
    bottom: 14px;
  }

  .service-strip__inner,
  .reviews-proof__inner {
    grid-template-columns: 1fr;
  }

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

  .slot-checker output {
    grid-column: 1 / -1;
  }

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

  .occasion-grid,
  .delivery-proof__grid,
  .detail-card-grid,
  .addon-grid,
  .pickup-zones__grid,
  .faq-list,
  .reviews-proof__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .product-detail__grid,
  .custom-order__inner {
    grid-template-columns: 1fr;
  }

  .product-detail__media {
    min-height: 420px;
  }

  .article-detail__image {
    height: 320px;
  }

  .carousel-arrow {
    display: none;
  }

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

  .promo__divider {
    width: 100%;
    height: 1px;
  }

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

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

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

@media (max-width: 640px) {
  :root {
    --page-gutter: 20px;
    --page-width: calc(100vw - var(--page-gutter));
  }

  body {
    overflow-x: hidden;
  }

  .topbar__inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
    padding: 7px 0;
  }

  .topbar__left,
  .topbar__right {
    width: 100%;
    gap: 8px;
    overflow-x: auto;
    scrollbar-width: none;
    white-space: nowrap;
  }

  .topbar__left::-webkit-scrollbar,
  .topbar__right::-webkit-scrollbar {
    display: none;
  }

  .topbar__right {
    justify-content: flex-start;
  }

  .site-header__inner {
    min-height: auto;
    gap: 10px;
    padding: 9px 0 10px;
  }

  .brand {
    justify-content: center;
  }

  .brand__logo {
    width: 188px;
  }

  .brand__name {
    font-size: 25px;
  }

  .searchbar input {
    min-height: 46px;
    padding: 11px 14px;
    font-size: 14px;
  }

  .searchbar button {
    width: 43px;
  }

  .header-actions {
    width: 100%;
    justify-content: space-between;
    padding: 0 2px;
  }

  .header-actions__item {
    font-size: 13px;
  }

  .nav {
    overflow-x: auto;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
  }

  .nav::-webkit-scrollbar {
    display: none;
  }

  .nav__inner {
    width: max-content;
    min-width: 100%;
    gap: 18px;
    justify-content: flex-start;
    padding: 0 10px;
  }

  .nav__link {
    flex: 0 0 auto;
    max-width: 72px;
    min-height: 46px;
    padding: 12px 0 11px;
    display: inline-flex;
    align-items: center;
    text-align: center;
    line-height: 1.15;
    white-space: normal;
  }

  .hero__inner {
    min-height: 476px;
    flex-direction: column;
    align-items: flex-start;
    width: 100vw;
  }

  .hero__slide {
    align-items: flex-start;
    padding: 34px 18px 118px;
  }

  .hero__content {
    width: 100%;
    padding-top: 0;
    padding-bottom: 0;
  }

  .hero h1 {
    width: min(330px, 100%);
    font-size: clamp(42px, 12vw, 48px);
    line-height: 0.95;
  }

  .hero__image {
    position: absolute;
    right: 0;
    width: 100%;
    opacity: 0.66;
    object-position: 69% center;
  }

  .hero p {
    max-width: 320px;
    font-size: 14px;
    line-height: 1.65;
  }

  .hero__actions {
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 16px;
  }

  .hero__actions .btn {
    min-width: 124px;
  }

  .hero__features {
    left: 18px;
    right: 78px;
    bottom: 16px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px 10px;
    padding: 8px;
    border: 1px solid rgba(214, 196, 179, 0.76);
    border-radius: 8px;
    background: rgba(255, 252, 249, 0.78);
    backdrop-filter: blur(3px);
  }

  .feature {
    min-width: 0;
    gap: 6px;
    font-size: 9px;
  }

  .feature__icon {
    width: 22px;
    height: 22px;
  }

  .hero__controls {
    left: auto;
    right: 18px;
    bottom: 20px;
    gap: 7px;
  }

  .hero__arrow {
    width: 29px;
    height: 29px;
  }

  .hero__dots {
    gap: 5px;
  }

  .section__inner,
  .section__header,
  .topbar__inner,
  .site-header__inner,
  .nav__inner,
  .newsletter__inner,
  .footer__inner,
  .footer-bottom__inner {
    width: calc(100vw - 20px);
  }

  .section {
    padding: 18px 0 14px;
  }

  .section__header {
    align-items: flex-end;
    gap: 10px;
  }

  .section__title {
    font-size: 28px;
  }

  .section__link {
    font-size: 10px;
    line-height: 1.2;
    text-align: right;
  }

  .categories .section__header {
    justify-content: space-between;
  }

  .categories .section__link {
    position: static;
  }

  .service-strip {
    padding-top: 10px;
  }

  .service-strip__inner {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }

  .service-strip__item {
    padding: 12px;
  }

  .slot-checker {
    grid-column: 1 / -1;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }

  .slot-checker button,
  .slot-checker output {
    grid-column: 1 / -1;
  }

  .category-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px 10px;
  }

  .category__icon {
    width: 72px;
    height: 72px;
  }

  .category__name {
    font-size: 15px;
  }

  .occasion-grid,
  .product-rail__grid,
  .delivery-proof__grid,
  .detail-card-grid,
  .detail-card-grid--blog,
  .addon-grid,
  .pickup-zones__grid,
  .faq-list,
  .reviews-proof__grid,
  .footer__inner {
    grid-template-columns: 1fr;
  }

  .occasion-grid,
  .product-rail__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .product-card__image {
    height: 164px;
  }

  .product-card__body {
    padding: 10px;
  }

  .product-card__title {
    min-height: 36px;
    font-size: 12px;
  }

  .product-card__price {
    font-size: 12px;
  }

  .rating {
    flex-wrap: wrap;
  }

  .product-card__meta-row {
    min-height: 34px;
  }

  .product-card__button {
    min-height: 34px;
  }

  .detail-shell,
  .service-strip__inner,
  .product-rail,
  .category-grid,
  .occasion-grid,
  .blog-grid,
  .delivery-proof__grid,
  .addon-grid,
  .pickup-zones__grid,
  .faq-list,
  .promo__inner,
  .custom-order__inner {
    width: calc(100vw - 20px);
  }

  .product-detail__content,
  .article-detail__header,
  .article-detail__body {
    padding: 18px;
  }

  .product-detail__media {
    min-height: 0;
    height: auto;
  }

  .product-detail__media img {
    height: auto;
    max-height: 430px;
    object-fit: contain;
  }

  .product-detail__content h1,
  .article-detail__header h1,
  .detail-empty h1 {
    font-size: 34px;
  }

  .product-detail__facts,
  .product-detail__form,
  .product-addons,
  .detail-list {
    grid-template-columns: 1fr;
  }

  .product-detail__price-row {
    align-items: flex-start;
    gap: 10px;
  }

  .product-addons label {
    min-height: 34px;
  }

  .promo__headline {
    font-size: 28px;
  }

  .newsletter {
    padding-top: 6px;
  }

  .newsletter__inner {
    gap: 14px;
    padding: 16px;
  }

  .newsletter__copy {
    align-items: flex-start;
    gap: 12px;
  }

  .newsletter__copy > div {
    min-width: 0;
  }

  .newsletter__title {
    font-size: 19px;
  }

  .newsletter__form {
    flex-direction: column;
    gap: 8px;
  }

  .newsletter__form input,
  .newsletter__form button {
    width: 100%;
  }

  .sticky-contact {
    left: 0;
    right: 0;
    bottom: 0;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    width: 100%;
    padding: 7px 10px calc(7px + env(safe-area-inset-bottom));
    border-top: 1px solid #e7dbcf;
    background: rgba(255, 255, 255, 0.94);
    box-shadow: 0 -10px 28px rgba(42, 18, 8, 0.12);
    backdrop-filter: blur(8px);
    opacity: 0;
    pointer-events: none;
    transform: translateY(100%);
    transition: opacity 0.18s ease, transform 0.18s ease;
  }

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

  .sticky-contact span {
    display: inline;
  }

  .sticky-contact a {
    width: 100%;
    min-height: 40px;
    padding: 0 12px;
    border-radius: 8px;
    justify-content: center;
  }

  .site-footer {
    padding-bottom: 66px;
  }
}

@media (max-width: 374px) {
  .hero__inner {
    min-height: 492px;
  }

  .hero__slide {
    padding-left: 14px;
    padding-right: 14px;
  }

  .hero h1 {
    font-size: 40px;
  }

  .hero p {
    max-width: 290px;
  }

  .hero__features {
    left: 14px;
    right: 66px;
    grid-template-columns: 1fr;
  }

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

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