:root {
  --brown-950: #25110d;
  --brown-900: #351711;
  --brown-800: #4b1c14;
  --red-800: #6b2118;
  --red-700: #842c20;
  --red-600: #a23b2d;
  --cream-100: #fffaf4;
  --cream-200: #f8eee3;
  --cream-300: #eedbc9;
  --ink: #2c211d;
  --muted: #70635d;
  --white: #ffffff;
  --gold: #d69c46;
  --shadow-sm: 0 10px 30px rgba(52, 23, 17, 0.08);
  --shadow-md: 0 18px 55px rgba(52, 23, 17, 0.15);
  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 30px;
  --container: 1160px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--cream-100);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

body.nav-open {
  overflow: hidden;
}

img {
  max-width: 100%;
  height: auto;
}

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

a:focus-visible,
button:focus-visible,
input:focus-visible,
summary:focus-visible {
  outline: 3px solid rgba(214, 156, 70, 0.8);
  outline-offset: 3px;
}

button,
input {
  font: inherit;
}

.site-container {
  width: min(calc(100% - 40px), var(--container));
  margin-inline: auto;
}

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

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 9999;
  padding: 10px 14px;
  border-radius: 8px;
  color: var(--white);
  background: var(--red-800);
  transform: translateY(-150%);
  transition: transform 0.2s ease;
}

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

.notice-bar {
  position: relative;
  z-index: 60;
  color: #fff6dd;
  background: var(--brown-950);
  font-size: 14px;
}

.notice-bar__inner {
  min-height: 38px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.notice-bar i {
  margin-right: 7px;
  color: var(--gold);
}

.notice-bar a {
  font-weight: 700;
  white-space: nowrap;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(75, 28, 20, 0.11);
  background: rgba(255, 250, 244, 0.96);
  box-shadow: 0 5px 24px rgba(47, 20, 15, 0.06);
  backdrop-filter: blur(10px);
}

.header-row {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 26px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 260px;
}

.brand img {
  width: 82px;
  height: auto;
}

.brand__text {
  display: grid;
  line-height: 1.2;
}

.brand__text strong {
  color: var(--brown-800);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 22px;
}

.brand__text small {
  margin-top: 4px;
  color: var(--muted);
  font-size: 12px;
  letter-spacing: 0.02em;
}

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

.main-nav a {
  padding: 10px 12px;
  border-radius: 999px;
  color: #4e403a;
  font-size: 14px;
  font-weight: 700;
  transition: color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.main-nav a:hover {
  color: var(--red-800);
  background: var(--cream-200);
}

.main-nav .nav-shop {
  padding-inline: 18px;
  color: var(--white);
  background: var(--red-800);
  box-shadow: 0 7px 18px rgba(107, 33, 24, 0.18);
}

.main-nav .nav-shop:hover {
  color: var(--white);
  background: var(--red-700);
  transform: translateY(-1px);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 10px;
  color: var(--white);
  background: var(--red-800);
  cursor: pointer;
}

.hero {
  position: relative;
  isolation: isolate;
  min-height: 650px;
  display: grid;
  align-items: center;
  overflow: hidden;
  color: var(--white);
  background: var(--brown-900) url("../images/slider/bg1.jpg") center/cover no-repeat;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background: linear-gradient(90deg, rgba(37, 17, 13, 0.93) 0%, rgba(53, 23, 17, 0.82) 48%, rgba(53, 23, 17, 0.32) 100%);
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto -120px -210px auto;
  z-index: -1;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  border: 70px solid rgba(214, 156, 70, 0.12);
}

.hero__backdrop {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: radial-gradient(circle at 65% 18%, rgba(255, 255, 255, 0.12), transparent 24%);
  pointer-events: none;
}

.hero__layout {
  min-height: 650px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  align-items: center;
  gap: 66px;
  padding-block: 82px 78px;
}

.hero__content {
  min-width: 0;
}

.hero-showcase {
  position: relative;
  align-self: center;
  padding: 22px 22px 20px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 34px;
  background: rgba(255, 250, 244, 0.94);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.28);
  transform: rotate(1.4deg);
}

.hero-showcase::before {
  content: "";
  position: absolute;
  inset: 12px;
  z-index: -1;
  border: 1px dashed rgba(107, 33, 24, 0.24);
  border-radius: 25px;
}

.hero-showcase__image {
  height: 410px;
  display: grid;
  place-items: center;
  overflow: hidden;
}

.hero-showcase__image img {
  width: auto;
  height: 400px;
  filter: drop-shadow(0 12px 18px rgba(53, 23, 17, 0.18));
}

.hero-showcase__caption {
  display: grid;
  margin-top: 4px;
  padding: 15px 16px 7px;
  color: var(--brown-800);
  text-align: center;
  line-height: 1.35;
}

.hero-showcase__caption strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 21px;
}

.hero-showcase__caption span {
  margin-top: 5px;
  color: var(--muted);
  font-size: 12px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--red-700);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.hero .eyebrow,
.section-heading--light .eyebrow {
  color: #f0bd72;
}

.hero h1 {
  max-width: 780px;
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(43px, 6vw, 72px);
  line-height: 1.05;
  letter-spacing: -0.03em;
  text-shadow: 0 4px 18px rgba(0, 0, 0, 0.2);
}

.hero__lead {
  max-width: 680px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(17px, 2vw, 20px);
  line-height: 1.65;
}

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

.button {
  min-height: 49px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 800;
  transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

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

.button--primary {
  color: var(--brown-950);
  background: #f1b95f;
  box-shadow: 0 10px 30px rgba(241, 185, 95, 0.24);
}

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

.button--ghost {
  border-color: rgba(255, 255, 255, 0.46);
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
}

.button--ghost:hover {
  background: rgba(255, 255, 255, 0.16);
}

.product-search {
  max-width: 700px;
  margin-top: 34px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.1);
  box-shadow: 0 16px 50px rgba(0, 0, 0, 0.16);
  backdrop-filter: blur(8px);
}

.product-search label {
  display: block;
  margin: 0 0 8px 4px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 13px;
  font-weight: 700;
}

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

.product-search input[type="search"] {
  min-width: 0;
  flex: 1;
  height: 50px;
  padding: 0 17px;
  border: 0;
  border-radius: 12px;
  color: var(--ink);
  background: var(--white);
}

.product-search button {
  min-width: 132px;
  height: 50px;
  border: 0;
  border-radius: 12px;
  color: var(--white);
  background: var(--red-700);
  font-weight: 800;
  cursor: pointer;
}

.product-search button:hover {
  background: var(--red-600);
}

.trust-strip {
  position: relative;
  z-index: 5;
  margin-top: -26px;
}

.trust-strip__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  overflow: hidden;
  border: 1px solid var(--cream-300);
  border-radius: var(--radius-md);
  background: var(--white);
  box-shadow: var(--shadow-md);
}

.trust-strip__grid > div {
  min-height: 112px;
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 24px 28px;
}

.trust-strip__grid > div + div {
  border-left: 1px solid var(--cream-300);
}

.trust-strip i {
  width: 48px;
  height: 48px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--red-800);
  background: var(--cream-200);
  font-size: 22px;
}

.trust-strip span {
  display: grid;
  line-height: 1.3;
}

.trust-strip strong {
  color: var(--brown-800);
  font-size: 15px;
}

.trust-strip small {
  margin-top: 5px;
  color: var(--muted);
  font-size: 13px;
}

.section {
  padding-block: 96px;
}

.section--soft {
  background: var(--cream-200);
}

.section-heading {
  max-width: 760px;
  margin: 0 auto 42px;
  text-align: center;
}

.section-heading--narrow {
  max-width: 580px;
}

.section-heading h2,
.split-layout__content h2 {
  margin: 0;
  color: var(--brown-800);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(32px, 4.5vw, 48px);
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.section-heading > p:last-child {
  margin: 16px auto 0;
  color: var(--muted);
  font-size: 17px;
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.category-card {
  position: relative;
  min-height: 290px;
  display: flex;
  flex-direction: column;
  padding: 30px;
  overflow: hidden;
  border: 1px solid var(--cream-300);
  border-radius: var(--radius-md);
  background: var(--white);
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.category-card::after {
  content: "";
  position: absolute;
  width: 130px;
  height: 130px;
  right: -62px;
  top: -62px;
  border-radius: 50%;
  background: var(--cream-200);
  transition: transform 0.25s ease;
}

.category-card:hover {
  transform: translateY(-6px);
  border-color: #ddb998;
  box-shadow: 0 20px 48px rgba(52, 23, 17, 0.12);
}

.category-card:hover::after {
  transform: scale(1.2);
}

.category-card__icon {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  color: var(--white);
  background: linear-gradient(145deg, var(--red-700), var(--brown-800));
  box-shadow: 0 10px 25px rgba(107, 33, 24, 0.2);
  font-size: 25px;
}

.category-card h3 {
  margin: 23px 0 8px;
  color: var(--brown-800);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 24px;
  line-height: 1.25;
}

.category-card p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
}

.category-card__link {
  margin-top: auto;
  padding-top: 20px;
  color: var(--red-700);
  font-size: 14px;
  font-weight: 800;
}

.category-more {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 9px;
  margin-top: 28px;
}

.category-more a {
  padding: 8px 14px;
  border: 1px solid var(--cream-300);
  border-radius: 999px;
  color: var(--red-800);
  background: var(--white);
  font-size: 13px;
  font-weight: 700;
}

.category-more a:hover {
  border-color: var(--red-700);
}

.split-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  align-items: center;
  gap: 70px;
}

.split-layout__visual {
  position: relative;
  min-height: 405px;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: var(--brown-900) url("../images/slider/bg1.jpg") center/cover no-repeat;
  box-shadow: var(--shadow-md);
}

.split-layout__visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(37, 17, 13, 0.55), transparent 55%);
}

.split-layout__visual > img {
  position: absolute;
  inset: 24px 24px auto;
  z-index: 2;
  width: calc(100% - 48px);
  border-radius: 13px;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.22);
}

.experience-badge {
  position: absolute;
  right: 26px;
  bottom: 26px;
  z-index: 3;
  width: 152px;
  height: 152px;
  display: grid;
  place-content: center;
  border: 5px solid rgba(255, 255, 255, 0.65);
  border-radius: 50%;
  color: var(--brown-950);
  background: #f1b95f;
  text-align: center;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
}

.experience-badge strong,
.experience-badge span {
  display: block;
}

.experience-badge strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 24px;
}

.experience-badge span {
  max-width: 100px;
  margin-top: 2px;
  font-size: 12px;
  line-height: 1.25;
}

.split-layout__content > p:not(.eyebrow) {
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 17px;
}

.check-list {
  display: grid;
  gap: 11px;
  margin: 25px 0 28px;
  padding: 0;
  list-style: none;
}

.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.check-list i {
  width: 24px;
  height: 24px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  margin-top: 1px;
  border-radius: 50%;
  color: var(--white);
  background: var(--red-700);
  font-size: 11px;
}

.text-link {
  color: var(--red-700);
  font-weight: 800;
}

.text-link i {
  margin-left: 6px;
  transition: transform 0.2s ease;
}

.text-link:hover i {
  transform: translateX(4px);
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.step-card {
  position: relative;
  padding: 32px;
  border: 1px solid var(--cream-300);
  border-radius: var(--radius-md);
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.step-card > span {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
  background: var(--red-800);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 21px;
  font-weight: 700;
}

.step-card h3 {
  margin: 20px 0 7px;
  color: var(--brown-800);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 22px;
}

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

.purchase-info {
  display: grid;
  grid-template-columns: minmax(300px, 0.75fr) minmax(0, 1.25fr);
  gap: 22px;
  margin-top: 28px;
}

.discount-box {
  min-height: 230px;
  display: flex;
  align-items: center;
  gap: 22px;
  padding: 32px;
  border-radius: var(--radius-md);
  color: var(--white);
  background: linear-gradient(140deg, var(--red-800), var(--brown-950));
  box-shadow: var(--shadow-md);
}

.discount-box__number {
  flex: 0 0 auto;
  color: #f1b95f;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 58px;
  font-weight: 700;
  letter-spacing: -0.06em;
}

.discount-box strong {
  display: block;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 23px;
}

.discount-box p {
  margin: 7px 0 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 14px;
}

.delivery-notes {
  padding: 30px 34px;
  border: 1px solid var(--cream-300);
  border-radius: var(--radius-md);
  background: var(--cream-200);
}

.delivery-notes h3 {
  margin: 0 0 12px;
  color: var(--brown-800);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 24px;
}

.delivery-notes ul {
  display: grid;
  gap: 8px;
  margin: 0;
  padding-left: 20px;
  color: var(--muted);
  font-size: 14px;
}

.reviews-section {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background: var(--brown-950) url("../images/slider/bg6.jpg") center/cover fixed no-repeat;
}

.reviews-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(37, 17, 13, 0.89);
}

.reviews-section > .site-container {
  position: relative;
}

.section-heading--light h2,
.section-heading--light > p:last-child {
  color: var(--white);
}

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

.reviews-grid blockquote {
  margin: 0;
  padding: 29px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.09);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.13);
  backdrop-filter: blur(6px);
}

.stars {
  color: #f1b95f;
  letter-spacing: 3px;
}

.reviews-grid p {
  margin: 14px 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 18px;
  line-height: 1.6;
}

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

.contact-grid {
  display: grid;
  grid-template-columns: minmax(320px, 0.8fr) minmax(0, 1.2fr);
  gap: 24px;
}

.contact-cards {
  display: grid;
  gap: 12px;
}

.contact-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px;
  border: 1px solid var(--cream-300);
  border-radius: var(--radius-sm);
  background: var(--cream-100);
  transition: border-color 0.2s ease, transform 0.2s ease;
}

.contact-card:hover {
  transform: translateX(4px);
  border-color: #d5a77c;
}

.contact-card > i {
  width: 46px;
  height: 46px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
  background: var(--red-800);
  font-size: 19px;
}

.contact-card span {
  min-width: 0;
  display: grid;
}

.contact-card small {
  color: var(--muted);
  font-size: 12px;
}

.contact-card strong {
  overflow-wrap: anywhere;
  color: var(--brown-800);
  font-size: 15px;
}

.hours-card {
  padding: 24px;
  border-radius: var(--radius-sm);
  color: var(--white);
  background: var(--brown-800);
}

.hours-card h3 {
  margin: 0 0 12px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 21px;
}

.hours-card h3 i {
  margin-right: 6px;
  color: #f1b95f;
}

.hours-card dl {
  margin: 0;
}

.hours-card dl > div {
  display: flex;
  justify-content: space-between;
  gap: 15px;
  padding: 7px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.hours-card dt,
.hours-card dd {
  margin: 0;
}

.hours-card dd {
  font-weight: 800;
}

.hours-card p {
  margin: 13px 0 0;
  color: rgba(255, 255, 255, 0.67);
  font-size: 12px;
}

.map-card {
  min-height: 510px;
  overflow: hidden;
  border: 1px solid var(--cream-300);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
}

.map-card iframe {
  width: 100%;
  height: 100%;
  min-height: 510px;
  display: block;
  border: 0;
}

.business-details {
  margin-top: 24px;
  border: 1px solid var(--cream-300);
  border-radius: var(--radius-sm);
  background: var(--cream-100);
}

.business-details summary {
  padding: 17px 20px;
  color: var(--brown-800);
  font-weight: 800;
  cursor: pointer;
}

.business-details__content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  padding: 0 20px 22px;
  color: var(--muted);
  font-size: 14px;
}

.business-details__content h3 {
  margin: 0 0 8px;
  color: var(--brown-800);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 20px;
}

.business-details__content p {
  margin: 5px 0;
}

.site-footer {
  padding: 68px 0 20px;
  color: rgba(255, 255, 255, 0.72);
  background: var(--brown-950);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 1fr 0.7fr;
  gap: 44px;
}

.footer-brand {
  color: var(--white);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 25px;
  font-weight: 700;
}

.footer-grid p {
  max-width: 340px;
  margin: 10px 0 0;
  font-size: 14px;
}

.footer-grid h2 {
  margin: 0 0 13px;
  color: var(--white);
  font-size: 14px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-grid > div > a:not(.footer-brand) {
  display: block;
  margin: 7px 0;
  font-size: 14px;
}

.footer-grid > div > a:hover {
  color: #f1b95f;
}

.social-links {
  display: flex;
  gap: 8px;
}

.social-links a {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
  background: rgba(255, 255, 255, 0.09);
}

.social-links a:hover {
  background: var(--red-700);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 48px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 12px;
}

.footer-bottom a {
  color: var(--white);
}

@media (max-width: 980px) {
  .nav-toggle {
    display: grid;
    place-items: center;
  }

  .main-nav {
    position: fixed;
    top: 116px;
    right: 20px;
    left: 20px;
    max-height: calc(100vh - 136px);
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    padding: 14px;
    overflow-y: auto;
    border: 1px solid var(--cream-300);
    border-radius: var(--radius-sm);
    background: var(--white);
    box-shadow: var(--shadow-md);
  }

  .main-nav.is-open {
    display: flex;
  }

  .main-nav a {
    padding: 12px 14px;
    border-radius: 8px;
  }

  .trust-strip__grid {
    grid-template-columns: 1fr;
  }

  .trust-strip__grid > div + div {
    border-top: 1px solid var(--cream-300);
    border-left: 0;
  }

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

  .split-layout {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .split-layout__visual {
    min-height: 420px;
  }

  .purchase-info,
  .contact-grid {
    grid-template-columns: 1fr;
  }

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

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

@media (max-width: 680px) {
  .site-container {
    width: min(calc(100% - 28px), var(--container));
  }

  .notice-bar__inner {
    min-height: 50px;
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    gap: 1px;
    padding-block: 7px;
    line-height: 1.35;
  }

  .site-header {
    top: 0;
  }

  .header-row {
    min-height: 70px;
  }

  .brand {
    min-width: 0;
  }

  .brand img {
    width: 66px;
  }

  .brand__text strong {
    font-size: 18px;
  }

  .brand__text small {
    display: none;
  }

  .main-nav {
    top: 124px;
    right: 14px;
    left: 14px;
  }

  .hero {
    min-height: 0;
    background-position: 37% center;
  }

  .hero::before {
    background: rgba(37, 17, 13, 0.84);
  }

  .hero__content {
    padding-block: 76px 72px;
  }

  .hero h1 {
    font-size: clamp(38px, 12vw, 53px);
  }

  .hero__lead {
    font-size: 17px;
  }

  .hero__actions {
    align-items: stretch;
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .product-search {
    padding: 13px;
  }

  .product-search__row {
    flex-direction: column;
  }

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

  .trust-strip {
    margin-top: -18px;
  }

  .trust-strip__grid > div {
    min-height: 94px;
    padding: 19px;
  }

  .section {
    padding-block: 72px;
  }

  .section-heading {
    margin-bottom: 32px;
  }

  .section-heading h2,
  .split-layout__content h2 {
    font-size: 35px;
  }

  .category-grid,
  .steps-grid,
  .footer-grid,
  .business-details__content {
    grid-template-columns: 1fr;
  }

  .category-card {
    min-height: 260px;
    padding: 25px;
  }

  .split-layout__visual {
    min-height: 330px;
    border-radius: var(--radius-md);
  }

  .split-layout__visual > img {
    inset: 16px 16px auto;
    width: calc(100% - 32px);
  }

  .experience-badge {
    right: 18px;
    bottom: 18px;
    width: 125px;
    height: 125px;
  }

  .experience-badge strong {
    font-size: 20px;
  }

  .discount-box {
    min-height: 0;
    align-items: flex-start;
    flex-direction: column;
  }

  .map-card,
  .map-card iframe {
    min-height: 390px;
  }

  .footer-grid {
    gap: 28px;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .reviews-section {
    background-attachment: scroll;
  }
}

/* Final one-page refinements */
.button--light {
  flex: 0 0 auto;
  color: var(--brown-950);
  background: #f1b95f;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.16);
}

.button--light:hover {
  background: #ffc66d;
}

.button--dark {
  margin-top: 24px;
  color: var(--white);
  background: var(--red-800);
  box-shadow: 0 10px 28px rgba(107, 33, 24, 0.2);
}

.button--dark:hover {
  background: var(--red-700);
}

.shop-banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  margin-top: 42px;
  padding: 30px 34px;
  overflow: hidden;
  border-radius: var(--radius-md);
  color: var(--white);
  background: linear-gradient(130deg, var(--brown-950), var(--red-800));
  box-shadow: var(--shadow-md);
}

.shop-banner__label {
  display: inline-block;
  margin-bottom: 7px;
  color: #f1b95f;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.shop-banner h3 {
  max-width: 700px;
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(21px, 3vw, 30px);
  line-height: 1.28;
}

.faq-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1.28fr);
  align-items: start;
  gap: 64px;
}

.faq-intro {
  position: sticky;
  top: 122px;
}

.faq-intro h2 {
  margin: 0;
  color: var(--brown-800);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(32px, 4.5vw, 46px);
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.faq-intro > p:not(.eyebrow) {
  margin: 19px 0 0;
  color: var(--muted);
  font-size: 16px;
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-list details {
  overflow: hidden;
  border: 1px solid var(--cream-300);
  border-radius: var(--radius-sm);
  background: var(--white);
  box-shadow: 0 8px 24px rgba(52, 23, 17, 0.05);
}

.faq-list summary {
  position: relative;
  padding: 20px 54px 20px 22px;
  color: var(--brown-800);
  font-weight: 800;
  cursor: pointer;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  content: "+";
  position: absolute;
  top: 50%;
  right: 21px;
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
  background: var(--red-800);
  font-size: 19px;
  line-height: 1;
  transform: translateY(-50%);
}

.faq-list details[open] summary::after {
  content: "−";
}

.faq-list details[open] summary {
  border-bottom: 1px solid var(--cream-300);
}

.faq-list details p {
  margin: 0;
  padding: 18px 22px 22px;
  color: var(--muted);
  font-size: 15px;
}

.mobile-actions {
  display: none;
}

@media (max-width: 1080px) {
  .hero__layout {
    grid-template-columns: minmax(0, 1fr) 300px;
    gap: 38px;
  }

  .hero-showcase__image {
    height: 360px;
  }

  .hero-showcase__image img {
    height: 350px;
  }
}

@media (max-width: 980px) {
  .hero__layout {
    min-height: auto;
    grid-template-columns: 1fr;
    padding-block: 75px 70px;
  }

  .hero-showcase {
    width: min(100%, 390px);
    justify-self: center;
    transform: none;
  }

  .faq-layout {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .faq-intro {
    position: static;
    max-width: 700px;
  }

  .shop-banner {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 680px) {
  .hero__layout {
    gap: 38px;
    padding-block: 70px 64px;
  }

  .hero-showcase {
    display: none;
  }

  .shop-banner {
    padding: 26px;
  }

  .shop-banner .button {
    width: 100%;
  }

  .faq-list summary {
    padding: 18px 50px 18px 18px;
  }

  .faq-list details p {
    padding: 16px 18px 20px;
  }

}



/* Dodatni sadržaj prenet iz prethodne verzije sajta */
.shop-banner__note {
  max-width: 720px;
  margin: 9px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
}

.media-section {
  background: var(--cream-100);
}

.media-layout {
  display: grid;
  grid-template-columns: minmax(250px, 0.72fr) minmax(0, 1.28fr);
  align-items: center;
  gap: 56px;
}

.media-copy h2 {
  margin: 0;
  color: var(--brown-800);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(32px, 4.5vw, 48px);
  line-height: 1.14;
}

.media-copy > p:not(.eyebrow) {
  margin: 18px 0;
  color: var(--muted);
  font-size: 16px;
}

.video-card {
  overflow: hidden;
  border: 1px solid var(--cream-300);
  border-radius: var(--radius-md);
  background: #000;
  box-shadow: var(--shadow-md);
  aspect-ratio: 16 / 9;
}

.video-card iframe {
  width: 100%;
  height: 100%;
  display: block;
  border: 0;
}

.discount-tiers {
  display: grid;
  gap: 14px;
}

.discount-tiers .discount-box {
  min-height: 0;
  padding: 25px 28px;
}

.discount-tiers .discount-box__number {
  font-size: 50px;
}

.discount-box--gold {
  color: var(--brown-950);
  background: linear-gradient(140deg, #f4d58a, #d9983a);
}

.discount-box--gold .discount-box__number {
  color: var(--brown-950);
}

.discount-box--gold p {
  color: rgba(52, 23, 17, 0.72);
}

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

.reviews-grid--all blockquote {
  display: flex;
  flex-direction: column;
}

.reviews-grid--all p {
  font-size: 16px;
}

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

.social-feed-card {
  max-width: 1100px;
  height: 760px;
  margin: 0 auto;
  overflow: hidden;
  border: 1px solid var(--cream-300);
  border-radius: var(--radius-md);
  background: var(--cream-100);
  box-shadow: var(--shadow-sm);
}

.social-feed-card iframe {
  width: 100%;
  height: 100%;
  display: block;
  border: 0;
}

.faq-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 11px;
  margin-top: 24px;
}

.faq-actions .button--dark {
  margin-top: 0;
}

.button--outline {
  color: var(--red-800);
  border: 1px solid rgba(107, 33, 24, 0.28);
  background: transparent;
}

.button--outline:hover {
  color: var(--white);
  background: var(--red-800);
}

.footer-extra-link {
  margin-bottom: 16px !important;
  color: #f1b95f;
}

.footer-extra-link i {
  margin-right: 6px;
}

.footer-bottom span a {
  color: rgba(255, 255, 255, 0.9);
}

.footer-bottom span a:hover {
  color: #f1b95f;
}

@media (max-width: 980px) {
  .media-layout {
    grid-template-columns: 1fr;
    gap: 32px;
  }

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

@media (max-width: 680px) {
  .discount-tiers .discount-box {
    align-items: flex-start;
    padding: 23px;
  }

  .reviews-grid--all {
    grid-template-columns: 1fr;
  }

  .social-feed-card {
    height: 600px;
    border-radius: var(--radius-sm);
  }

  .faq-actions {
    display: grid;
  }

  .faq-actions .button {
    width: 100%;
  }
}
