:root {
  --beige: #ede6d8;
  --beige-soft: #f4efe5;
  --white: #ffffff;
  --black: #141210;
  --black-soft: #1d1a17;
  --gold: #c9a24b;
  --gold-light: #f5d789;
  --gold-dark: #87611f;
  --text-dark: #2a2620;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--beige);
  color-scheme: light;
}

body {
  background: var(--beige);
  color: var(--text-dark);
  font-family: 'Jost', sans-serif;
  line-height: 1.5;
}

.page-shell {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.page-shell__content {
  flex: 1;
}

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

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

.navbar {
  background: var(--black);
  height: 84px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 96px;
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 3px solid var(--gold);
}

.navbar__logo img {
  height: 40px;
  width: auto;
}

.navbar__right {
  display: flex;
  align-items: center;
  gap: 22px;
  margin-right: 64px;
}

.navbar__links {
  display: flex;
  align-items: center;
  gap: 40px;
  list-style: none;
  margin-right: 12px;
}

.navbar__links a {
  color: var(--beige-soft);
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  position: relative;
  padding-bottom: 6px;
  transition: color 0.3s ease;
}

.navbar__links a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.3s ease;
}

.navbar__links a:hover {
  color: var(--gold-light);
}

.navbar__links a:hover::after {
  width: 100%;
}

.navbar__cart {
  display: flex;
  align-items: center;
  position: relative;
  cursor: pointer;
}

.navbar__cart-count {
  position: absolute;
  top: -9px;
  right: -11px;
  min-width: 17px;
  height: 17px;
  padding: 0 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gold);
  color: var(--black);
  font-family: 'Jost', sans-serif;
  font-size: 10px;
  font-weight: 600;
  border-radius: 50%;
  line-height: 1;
}

.navbar__cart-count.is-hidden {
  display: none;
}

.navbar__cart svg {
  width: 22px;
  height: 22px;
  stroke: #ffffff;
  transition: stroke 0.3s ease, transform 0.3s ease;
}

.navbar__cart:hover svg {
  stroke: var(--gold-light);
  transform: translateY(-2px);
}

.navbar__toggle {
  display: none;
  cursor: pointer;
  background: none;
  border: none;
  width: 26px;
  height: 20px;
  position: relative;
}

.navbar__toggle span {
  display: block;
  position: absolute;
  left: 0;
  width: 26px;
  height: 2px;
  background: #ffffff;
  transition: transform 0.3s ease, opacity 0.3s ease, top 0.3s ease;
}

.navbar__toggle span:nth-child(1) {
  top: 0;
}

.navbar__toggle span:nth-child(2) {
  top: 9px;
}

.navbar__toggle span:nth-child(3) {
  top: 18px;
}

.navbar__toggle.is-open span:nth-child(1) {
  top: 9px;
  transform: rotate(45deg);
}

.navbar__toggle.is-open span:nth-child(2) {
  opacity: 0;
}

.navbar__toggle.is-open span:nth-child(3) {
  top: 9px;
  transform: rotate(-45deg);
}

.hero {
  position: relative;
  height: 62vh;
  min-height: 460px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background-image: url('img/tlo_menu.webp');
  background-size: cover;
  background-position: center 25%;
  filter: blur(3px) brightness(0.62);
  transform: scale(1.05);
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(20, 18, 16, 0.35) 0%, rgba(20, 18, 16, 0.55) 100%);
}

.hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 24px;
}

.hero__title {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  font-style: italic;
  font-size: clamp(2.6rem, 7vw, 5.4rem);
  color: #f3efe6;
  letter-spacing: 1px;
  margin-bottom: 40px;
  text-shadow: 0 4px 30px rgba(0, 0, 0, 0.35);
}

.hero__title .gold {
  background: linear-gradient(120deg, var(--gold-light), var(--gold), var(--gold-dark));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero__buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
}

.btn {
  display: inline-block;
  padding: 16px 38px;
  font-family: 'Jost', sans-serif;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  border-radius: 2px;
  transition: all 0.35s ease;
  cursor: pointer;
  border: 1px solid transparent;
}

.btn--gold {
  background: linear-gradient(120deg, var(--gold-light), var(--gold));
  color: var(--black);
}

.btn--gold:hover {
  background: linear-gradient(120deg, var(--gold), var(--gold-dark));
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(163, 121, 47, 0.35);
}

.btn--outline {
  background: transparent;
  color: #f3efe6;
  border: 1px solid rgba(243, 239, 230, 0.6);
}

.btn--outline:hover {
  border-color: var(--gold-light);
  color: var(--gold-light);
  transform: translateY(-2px);
}

.back-home {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 32px;
  padding: 10px 20px;
  border: 1px solid var(--gold-dark);
  border-radius: 4px;
  background: transparent;
  font-family: 'Jost', sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--gold-dark);
  transition: color 0.3s ease, gap 0.3s ease, background 0.3s ease, border-color 0.3s ease;
}

.back-home svg {
  width: 16px;
  height: 16px;
  stroke: var(--gold-dark);
  transition: transform 0.3s ease, stroke 0.3s ease;
}

.back-home:hover {
  color: var(--black);
  gap: 12px;
  background: var(--gold-dark);
  border-color: var(--gold-dark);
}

.back-home:hover svg {
  transform: translateX(-3px);
  stroke: var(--black);
}

.back-home--bottom {
  display: flex;
  width: fit-content;
  margin: 48px auto 0;
}

.about {
  max-width: 780px;
  margin: 0 auto;
  padding: 88px 24px;
  text-align: center;
}

.about__text {
  font-size: 1.02rem;
  color: #5c5548;
  line-height: 1.75;
  margin-top: 18px;
}

.bestsellers {
  max-width: 1280px;
  margin: 0 auto;
  padding: 40px 24px 120px;
  scroll-margin-top: 84px;
  background: var(--beige-soft);
  box-shadow: 0 0 0 100vmax var(--beige-soft);
  clip-path: inset(0 -100vmax);
}

.bestsellers__heading {
  text-align: center;
  margin-bottom: 64px;
}

.bestsellers__eyebrow {
  font-family: 'Jost', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 14px;
}

.bestsellers__title {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: clamp(1.9rem, 3.5vw, 2.6rem);
  color: var(--black-soft);
}

.bestsellers__title--solo {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  font-style: italic;
  letter-spacing: 1px;
  color: var(--gold-dark);
  font-size: clamp(2rem, 4vw, 3rem);
}

.bestsellers__eyebrow--lg {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.2rem, 4.5vw, 3.4rem);
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: none;
  color: var(--gold-dark);
  margin-bottom: 18px;
}

.products__view-toggle {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 12px;
  margin-bottom: 24px;
}

.price-sort__select {
  height: 42px;
  padding: 0 36px 0 18px;
  background: transparent;
  border: 1px solid #c9bfa8;
  border-radius: 21px;
  font-family: 'Jost', sans-serif;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-dark);
  cursor: pointer;
  transition: border-color 0.3s ease;
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2387611f' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 14px;
}

.price-sort__select:hover,
.price-sort__select:focus {
  border-color: var(--gold);
  outline: none;
}

.nova-filter {
  position: relative;
  z-index: 5;
}

.nova-filter__trigger {
  display: flex;
  align-items: center;
  gap: 10px;
  height: 44px;
  padding: 0 20px;
  background: var(--white);
  border: 1px solid #c9bfa8;
  border-radius: 22px;
  font-family: 'Jost', sans-serif;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.4px;
  color: var(--text-dark);
  cursor: pointer;
  transition: border-color 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
}

.nova-filter__trigger:hover,
.nova-filter__trigger:focus-visible {
  border-color: var(--gold);
  box-shadow: 0 6px 16px rgba(201, 162, 75, 0.18);
  outline: none;
}

.nova-filter.is-open .nova-filter__trigger {
  border-color: var(--gold);
  background: var(--beige-soft);
}

.nova-filter.has-value .nova-filter__trigger {
  border-color: var(--gold);
}

.nova-filter__icon {
  display: flex;
  align-items: center;
  color: var(--gold-dark);
}

.nova-filter__icon svg {
  width: 16px;
  height: 16px;
}

.nova-filter__label {
  white-space: nowrap;
}

.nova-filter__chevron {
  display: flex;
  align-items: center;
  color: var(--gold-dark);
  transition: transform 0.3s ease;
}

.nova-filter__chevron svg {
  width: 13px;
  height: 13px;
}

.nova-filter.is-open .nova-filter__chevron {
  transform: rotate(180deg);
}

.nova-filter__menu {
  position: absolute;
  top: calc(100% + 12px);
  left: 0;
  min-width: 210px;
  list-style: none;
  background: var(--white);
  border: 1px solid #e9e0ca;
  border-radius: 16px;
  box-shadow: 0 18px 40px rgba(20, 18, 16, 0.14);
  padding: 10px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px) scale(0.98);
  transform-origin: top left;
  transition: opacity 0.22s ease, transform 0.22s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.22s ease;
}

.nova-filter.is-open .nova-filter__menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}

.nova-filter__option {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 14px;
  border-radius: 10px;
  font-family: 'Jost', sans-serif;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-dark);
  cursor: pointer;
  transition: background 0.18s ease, color 0.18s ease, padding-left 0.18s ease;
}

.nova-filter__option + .nova-filter__option {
  margin-top: 2px;
}

.nova-filter__option:hover {
  background: var(--beige-soft);
  padding-left: 18px;
}

.nova-filter__option:focus-visible {
  outline: none;
  background: var(--beige-soft);
  padding-left: 18px;
}

.nova-filter__option::after {
  content: '';
  width: 15px;
  height: 15px;
  flex-shrink: 0;
  border-radius: 50%;
  border: 1.5px solid #d8cdb2;
  background: var(--white);
  transition: border-color 0.2s ease, background 0.2s ease;
}

.nova-filter__option.is-active {
  background: var(--beige-soft);
  color: var(--gold-dark);
  font-weight: 600;
}

.nova-filter__option.is-active::after {
  border-color: var(--gold);
  background: radial-gradient(circle, var(--gold-dark) 0 40%, transparent 44%);
}

.nova-filter-chip {
  display: flex;
  align-items: center;
  gap: 8px;
  height: 44px;
  padding: 0;
  background: none;
  border-radius: 0;
  box-shadow: none;
}

.nova-filter-chip[hidden] {
  display: none;
}

.nova-filter-chip__label {
  font-family: 'Jost', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: var(--gold-dark);
  white-space: nowrap;
}

.nova-filter-chip__remove {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  padding: 0;
  background: transparent;
  border: 1px solid transparent;
  border-radius: 50%;
  color: var(--gold-dark);
  cursor: pointer;
  box-shadow: none;
  transition: background 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease, transform 0.15s ease;
}

.nova-filter-chip__remove svg {
  width: 12px;
  height: 12px;
  stroke: var(--gold-dark);
}

.nova-filter-chip__remove:hover,
.nova-filter-chip__remove:focus-visible {
  background: var(--white);
  border-color: #e3d9c2;
  box-shadow: 0 4px 10px rgba(201, 162, 75, 0.24);
  outline: none;
  transform: scale(1.06);
}

.nova-filter-chip__remove:active {
  transform: scale(0.96);
}

.cols-toggle {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 6px;
  border: 1px solid #c9bfa8;
  border-radius: 21px;
}

.cols-toggle__btn {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
  width: 30px;
  height: 30px;
  padding: 7px;
  background: transparent;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  transition: background 0.3s ease;
}

.cols-toggle__btn span {
  background: var(--black-soft);
  border-radius: 1px;
}

.cols-toggle__btn[data-cols="2"] {
  grid-template-columns: repeat(2, 1fr);
}

.cols-toggle__btn.is-active {
  background: var(--gold);
}

.cols-toggle__btn.is-active span {
  background: var(--black);
}

.cols-toggle__btn:hover span {
  background: var(--gold-dark);
}

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

.product-card {
  display: flex;
  flex-direction: column;
  border: 3px solid rgba(201, 162, 75, 0.2);
  border-radius: 6px;
  overflow: hidden;
  background: var(--white);
  box-shadow: 0 2px 6px rgba(20, 18, 16, 0.06), 0 12px 28px rgba(20, 18, 16, 0.05);
  transition: border-color 0.35s ease;
}

.product-card:hover {
  border-color: var(--gold);
}

.product-card__image {
  overflow: hidden;
  aspect-ratio: 3 / 4;
  background: #ddd3bf;
  border-bottom: 1px solid rgba(201, 162, 75, 0.25);
}

.product-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.product-card:hover .product-card__image img {
  transform: scale(1.06);
}

.product-card__body {
  display: grid;
  grid-template-rows: auto auto 1fr auto;
  flex-grow: 1;
  padding: 22px;
}

.product-card__name {
  font-family: 'Playfair Display', serif;
  font-weight: 600;
  font-size: 1.12rem;
  color: var(--black-soft);
  margin-bottom: 12px;
  min-height: 2.7em;
  display: flex;
  align-items: flex-start;
}

.product-card__desc-label {
  font-family: 'Jost', sans-serif;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--gold-dark);
  margin-bottom: 16px;
}

.product-card__price {
  font-family: 'Jost', sans-serif;
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--gold-dark);
  margin-bottom: 20px;
  text-align: right;
  align-self: end;
}

.product-card--empty {
  background: transparent;
  box-shadow: none;
  border: 3px dashed rgba(201, 162, 75, 0.25);
}

.product-card--empty:hover {
  border-color: rgba(201, 162, 75, 0.4);
}

.product-card__image--empty {
  aspect-ratio: 3 / 4;
  height: auto;
  background: var(--beige-soft);
}

.btn-cart {
  display: inline-block;
  width: 100%;
  padding: 15px 0;
  font-family: 'Jost', sans-serif;
  font-size: 12.5px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #ffffff;
  background: linear-gradient(120deg, var(--gold), var(--gold-dark));
  border: none;
  border-radius: 2px;
  cursor: pointer;
  transition: all 0.35s ease;
}

.btn-cart:hover {
  background: linear-gradient(120deg, var(--gold-dark), var(--gold));
  transform: translateY(-2px);
  box-shadow: 0 10px 22px rgba(163, 121, 47, 0.3);
}

.faq-preview,
.faq-page {
  max-width: 820px;
  margin: 0 auto;
  padding: 40px 24px 100px;
}

.faq-preview__heading {
  text-align: center;
  margin-bottom: 48px;
}

.faq-preview__list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.faq-item {
  border: 1px solid #d9cfba;
  border-radius: 2px;
  background: var(--beige-soft);
  overflow: hidden;
}

.faq-item__trigger {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 22px;
  background: transparent;
  border: none;
  text-align: left;
  font-family: 'Jost', sans-serif;
  font-weight: 600;
  font-size: 0.98rem;
  color: var(--black-soft);
  cursor: pointer;
}

.faq-item__chevron {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item__chevron svg {
  width: 16px;
  height: 16px;
  stroke: var(--gold-dark);
}

.faq-item.is-open .faq-item__chevron {
  transform: rotate(-90deg);
}

.faq-item__panel {
  display: grid;
  grid-template-rows: 0fr;
  overflow: hidden;
  transition: grid-template-rows 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item.is-open .faq-item__panel {
  grid-template-rows: 1fr;
}

.faq-item__panel p {
  min-height: 0;
  font-size: 0.9rem;
  color: #5c5548;
  line-height: 1.6;
  padding: 0 22px 20px 52px;
  opacity: 0;
  transform: translateY(-6px);
  transition: opacity 0.3s ease 0.05s, transform 0.3s ease 0.05s;
}

.faq-item.is-open .faq-item__panel p {
  opacity: 1;
  transform: translateY(0);
}

.legal-content {
  max-width: 720px;
  margin: 0 auto;
}

.legal-content h2 {
  font-family: 'Playfair Display', serif;
  font-weight: 600;
  font-size: 1.2rem;
  color: var(--black-soft);
  margin-top: 36px;
  margin-bottom: 12px;
}

.legal-content h2:first-child {
  margin-top: 0;
}

.legal-content p {
  font-size: 0.96rem;
  color: #5c5548;
  line-height: 1.75;
}

.contact {
  background: var(--beige-soft);
  border-top: 1px solid #d9cfba;
  padding: 88px 24px;
  scroll-margin-top: 88px;
}

.contact__inner {
  max-width: 780px;
  margin: 0 auto;
  text-align: center;
}

.contact__details {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 48px;
}

.contact__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 36px 24px;
  background: #ffffff;
  border: 1px solid rgba(201, 162, 75, 0.22);
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(20, 18, 16, 0.05), 0 14px 30px rgba(20, 18, 16, 0.05);
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.contact__item:hover {
  transform: translateY(-6px);
  border-color: var(--gold);
  box-shadow: 0 8px 16px rgba(20, 18, 16, 0.07), 0 24px 40px rgba(163, 121, 47, 0.12);
}

.contact__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  margin-bottom: 6px;
}

.contact__icon svg {
  width: 22px;
  height: 22px;
  stroke: var(--black);
}

.contact__label {
  font-family: 'Jost', sans-serif;
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold-dark);
}

.contact__value {
  font-family: 'Jost', sans-serif;
  font-weight: 500;
  font-size: 1.02rem;
  letter-spacing: 0.4px;
  color: var(--black-soft);
  text-align: center;
  line-height: 1.4;
}

.site-footer {
  background: var(--black);
  padding: 40px 24px;
  text-align: center;
}

.site-footer__links {
  display: flex;
  justify-content: center;
  gap: 32px;
  margin-bottom: 16px;
}

.site-footer__links a {
  color: #a89f8c;
  font-size: 0.85rem;
  text-decoration: underline;
  transition: color 0.3s ease;
}

.site-footer__links a:hover {
  color: var(--gold-light);
}

.site-footer__copy {
  color: #a89f8c;
  font-size: 0.8rem;
}

.checkout-info {
  max-width: 720px;
  margin: 0 auto;
  padding: 72px 24px 140px;
  min-height: 50vh;
}

.checkout-info__box {
  text-align: center;
  background: var(--beige-soft);
  border: 1px solid rgba(201, 162, 75, 0.25);
  border-radius: 8px;
  padding: 56px 40px;
  box-shadow: 0 2px 6px rgba(20, 18, 16, 0.05), 0 14px 30px rgba(20, 18, 16, 0.05);
}

.checkout-info__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  margin: 0 auto 24px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
}

.checkout-info__icon svg {
  width: 28px;
  height: 28px;
  stroke: var(--black);
}

.checkout-info__text {
  max-width: 480px;
  margin: 20px auto 28px;
  font-size: 0.98rem;
  color: #5c5548;
  line-height: 1.75;
}

.checkout-info__email {
  display: inline-block;
  font-family: 'Jost', sans-serif;
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--gold-dark);
  border-bottom: 1px solid var(--gold-dark);
  padding-bottom: 2px;
  transition: color 0.3s ease, border-color 0.3s ease;
}

.checkout-info__email:hover {
  color: var(--black-soft);
  border-color: var(--black-soft);
}

.cart-page {
  max-width: 1240px;
  margin: 0 auto;
  padding: 72px 24px 140px;
  min-height: 50vh;
}

.cart-page__heading {
  margin-bottom: 40px;
}

.cart-page__heading .bestsellers__title {
  text-align: left;
}

.cart-page__subtitle {
  margin-top: 10px;
  font-size: 0.95rem;
  color: #5c5548;
}

.cart-empty {
  text-align: center;
  font-size: 1rem;
  color: #5c5548;
  padding: 40px 0;
}

.cart-empty.is-hidden {
  display: none;
}

.cart-layout {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 32px;
  align-items: start;
}

.cart-layout__main {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.cart-items {
  display: flex;
  flex-direction: column;
  gap: 20px;
  background: var(--white);
  border: 1px solid #e4dcc8;
  border-radius: 8px;
  padding: 28px;
  box-shadow: 0 10px 30px rgba(30, 25, 15, 0.08);
}

.cart-item {
  display: grid;
  grid-template-columns: 90px 1fr auto auto auto;
  align-items: center;
  gap: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #ede6d8;
}

.cart-item:last-child {
  padding-bottom: 0;
  border-bottom: none;
}

.cart-item__image {
  width: 90px;
  height: 100px;
  overflow: hidden;
  border: 1px solid #e4dcc8;
  border-radius: 4px;
}

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

.cart-item__info {
  display: flex;
  flex-direction: column;
}

.cart-item__name {
  font-family: 'Playfair Display', serif;
  font-weight: 600;
  font-size: 1.02rem;
  color: var(--black-soft);
  margin-bottom: 6px;
}

.cart-item__price {
  font-size: 0.85rem;
  color: #5c5548;
}

.cart-item__vat {
  font-size: 0.75rem;
  color: #5c5548;
  font-style: italic;
  margin-top: 2px;
}

.cart-item__qty {
  display: flex;
  align-items: center;
  gap: 10px;
}

.qty-btn {
  width: 28px;
  height: 28px;
  background: transparent;
  border: 1px solid #c9bfa8;
  border-radius: 2px;
  cursor: pointer;
  font-size: 14px;
  color: var(--black-soft);
  transition: all 0.3s ease;
  box-shadow: 0 2px 6px rgba(30, 25, 15, 0.05);
}

.qty-btn:hover {
  border-color: var(--gold);
  color: var(--gold-dark);
}

.qty-value {
  min-width: 18px;
  text-align: center;
  font-size: 0.95rem;
}

.cart-item__linetotal {
  font-family: 'Jost', sans-serif;
  font-weight: 600;
  color: var(--black-soft);
  min-width: 80px;
  text-align: right;
}

.cart-item__remove {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  background: transparent;
  border: 1px solid #c9bfa8;
  border-radius: 2px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 2px 6px rgba(30, 25, 15, 0.05);
}

.cart-item__remove svg {
  width: 16px;
  height: 16px;
  stroke: var(--black-soft);
  transition: stroke 0.3s ease;
}

.cart-item__remove:hover {
  border-color: var(--gold);
}

.cart-item__remove:hover svg {
  stroke: var(--gold-dark);
}

.cart-delivery {
  background: var(--white);
  border: 1px solid #e4dcc8;
  border-radius: 8px;
  padding: 28px;
  box-shadow: 0 10px 30px rgba(30, 25, 15, 0.08);
}

.cart-delivery.is-hidden {
  display: none;
}

.cart-delivery__title {
  font-family: 'Playfair Display', serif;
  font-weight: 600;
  font-size: 1.15rem;
  color: var(--black-soft);
  margin-bottom: 20px;
}

.delivery-option {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px;
  border: 1px solid #e4dcc8;
  border-radius: 6px;
  cursor: pointer;
  transition: border-color 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
  margin-bottom: 12px;
  box-shadow: 0 4px 14px rgba(30, 25, 15, 0.06);
}

.delivery-option:last-child {
  margin-bottom: 0;
}

.delivery-option input {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.delivery-option.is-selected {
  border-color: var(--gold-dark);
  background: var(--beige-soft);
  box-shadow: 0 4px 16px rgba(184, 149, 76, 0.18);
}

.delivery-option:hover {
  border-color: var(--gold);
}

.delivery-option__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  flex-shrink: 0;
}

.delivery-option__icon svg {
  width: 24px;
  height: 24px;
  stroke: var(--gold-dark);
}

.delivery-option__info {
  display: flex;
  flex-direction: column;
  flex: 1;
}

.delivery-option__name {
  font-family: 'Jost', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--black-soft);
}

.delivery-option__note {
  font-size: 0.8rem;
  color: #8a8272;
  margin-top: 2px;
}

.delivery-option__price {
  font-family: 'Jost', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--black-soft);
}

.cart-summary {
  position: sticky;
  top: 108px;
  background: var(--white);
  border: 1px solid #e4dcc8;
  border-radius: 8px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  box-shadow: 0 10px 30px rgba(30, 25, 15, 0.08);
}

.cart-summary.is-hidden {
  display: none;
}

.cart-summary__promo {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 0;
  cursor: pointer;
  font-size: 0.9rem;
  color: var(--black-soft);
  border-bottom: 1px solid #ede6d8;
  margin-bottom: 16px;
}

.cart-summary__promo-icon svg {
  width: 18px;
  height: 18px;
  stroke: var(--gold-dark);
}

.cart-summary__promo-chevron {
  width: 14px;
  height: 14px;
  stroke: var(--black-soft);
  margin-left: auto;
  transition: transform 0.3s ease;
}

.cart-summary__promo.is-open .cart-summary__promo-chevron {
  transform: rotate(180deg);
}

.cart-summary__promo-field {
  display: none;
  gap: 8px;
  margin-bottom: 16px;
}

.cart-summary__promo-field.is-open {
  display: flex;
}

.cart-summary__promo-input {
  flex: 1;
  padding: 10px 12px;
  border: 1px solid #c9bfa8;
  border-radius: 4px;
  font-family: 'Jost', sans-serif;
  font-size: 0.85rem;
  box-shadow: inset 0 2px 6px rgba(30, 25, 15, 0.06);
  transition: box-shadow 0.3s ease, border-color 0.3s ease;
}

.cart-summary__promo-input:focus {
  outline: none;
  border-color: var(--gold-dark);
  box-shadow: 0 0 0 3px rgba(184, 149, 76, 0.15);
}

.cart-summary__promo-apply {
  padding: 10px 16px;
  background: transparent;
  border: 1px solid var(--gold-dark);
  border-radius: 4px;
  color: var(--gold-dark);
  font-family: 'Jost', sans-serif;
  font-weight: 600;
  font-size: 0.8rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.cart-summary__promo-apply:hover {
  background: var(--gold-dark);
  color: var(--white);
}

.cart-summary__vat {
  font-size: 0.78rem;
  color: #8a8272;
  font-style: italic;
  margin-bottom: 12px;
}

.cart-summary__row {
  display: flex;
  justify-content: space-between;
  width: 100%;
  font-family: 'Jost', sans-serif;
  font-weight: 500;
  font-size: 0.92rem;
  color: var(--black-soft);
  margin-bottom: 10px;
}

.cart-summary__row--total {
  border: 1px solid var(--gold-dark);
  border-radius: 4px;
  padding: 14px 16px;
  font-size: 1.15rem;
  font-weight: 700;
  margin-top: 8px;
  margin-bottom: 20px;
}

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

.cart-summary__checkout svg {
  width: 16px;
  height: 16px;
  stroke: var(--black);
}

.cart-summary__note {
  margin-top: 16px;
  font-size: 0.78rem;
  color: #8a8272;
  text-align: center;
}

@media (max-width: 900px) {
  .cart-layout {
    grid-template-columns: 1fr;
  }

  .cart-summary {
    position: static;
  }
}

@media (max-width: 700px) {
  .cart-items,
  .cart-delivery,
  .cart-summary {
    padding: 20px;
  }

  .cart-item {
    grid-template-columns: 70px 1fr auto;
    grid-template-areas:
      "image info remove"
      "image qty remove"
      "image total remove";
    row-gap: 10px;
  }

  .cart-item__image {
    grid-area: image;
    width: 70px;
    height: 84px;
  }

  .cart-item__info {
    grid-area: info;
  }

  .cart-item__qty {
    grid-area: qty;
  }

  .cart-item__linetotal {
    grid-area: total;
    text-align: left;
  }

  .cart-item__remove {
    grid-area: remove;
    align-self: center;
  }
}

@media (min-width: 861px) {
  .hero {
    height: 48vh;
    min-height: 380px;
  }

  .hero__bg {
    background-position: center 65%;
  }
}

@media (max-width: 860px) {
  .contact__details {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .products__view-toggle {
    display: flex;
  }

  .products,
  .bestsellers--home .products {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .products .product-card__name {
    font-size: 0.95rem;
  }

  .products .product-card__desc {
    font-size: 0.8rem;
  }

  .products .btn-cart {
    font-size: 11px;
    padding: 12px 0;
  }
  .navbar {
    padding: 0 20px;
  }

  .navbar__links {
    position: fixed;
    top: 84px;
    left: 0;
    right: 0;
    background: var(--black);
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: 0 0 0 0;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    transition: max-height 0.35s ease, opacity 0.25s ease, padding 0.35s ease, visibility 0s linear 0.35s;
    margin-right: 0;
  }

  .navbar__links.is-open {
    max-height: 260px;
    padding: 12px 0;
    opacity: 1;
    visibility: visible;
    transition: max-height 0.35s ease, opacity 0.25s ease, padding 0.35s ease, visibility 0s linear;
  }

  .navbar__links li {
    width: 100%;
  }

  .navbar__links a {
    display: block;
    padding: 14px 24px;
    width: 100%;
  }

  .navbar__right {
    gap: 20px;
    margin-right: 0;
  }

  .navbar__toggle {
    display: flex;
  }

  .hero__buttons {
    flex-direction: column;
    width: 100%;
    max-width: 320px;
    margin: 0 auto;
  }

  .btn {
    width: 100%;
    text-align: center;
  }
}
