:root {
  --dark: #181512;
  --dark-2: #241f1b;
  --cream: #f7f3ed;
  --cream-2: #fffdfa;
  --sand: #d7b893;
  --gold: #a6794d;
  --gold-light: #c79b6d;
  --text: #221d19;
  --muted: #776a60;
  --line: rgba(34, 29, 25, 0.13);
  --white: #fff;
  --container: 1360px;
  --serif: "Cormorant Garamond", Georgia, serif;
  --sans: "Inter", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  font-family: var(--sans);
  color: var(--text);
  background: var(--cream-2);
}

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

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

button {
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  font: inherit;
}

.container {
  width: min(var(--container), calc(100% - 96px));
  margin: 0 auto;
}

.section {
  padding: 58px 0 68px;
  background: var(--cream-2);
}

.section-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 34px;
}

.section-head h2,
.instagram h2,
.about-banner h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: 32px;
  font-weight: 500;
  line-height: 1.05;
  text-transform: uppercase;
  letter-spacing: .01em;
}

.section-head a {
  margin-top: 8px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--gold);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 58px;
  padding: 0 32px;
  border: 1px solid currentColor;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  transition: .2s ease;
}

.btn--light {
  color: var(--white);
}

.btn--light:hover {
  color: var(--text);
  background: var(--white);
  border-color: var(--white);
}

.btn--dark {
  color: var(--text);
}

.btn--dark:hover {
  color: var(--white);
  background: var(--text);
  border-color: var(--text);
}

/* Header */
.header {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 20;
  width: 100%;
  color: var(--white);
}

.header__inner {
  width: min(1360px, calc(100% - 68px));
  height: 110px;
  margin: 0 auto;
  padding-top: 18px;
  display: grid;
  grid-template-columns: 32px minmax(520px, 1fr) 275px minmax(220px, 1fr);
  align-items: center;
  gap: 28px;
}

.burger {
  width: 28px;
  height: 28px;
  color: currentColor;
}

.burger img,
.header-actions img {
  width: 24px;
  height: 24px;
  filter: brightness(0) invert(1);
  opacity: .92;
}

.nav {
  display: flex;
  align-items: center;
  gap: 28px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .02em;
}

.nav a,
.header-actions button,
.header-actions a {
  opacity: .92;
  transition: opacity .2s ease, color .2s ease;
}

.nav a:hover,
.header-actions button:hover,
.header-actions a:hover {
  opacity: 1;
  color: var(--sand);
}

.logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  text-transform: uppercase;
}

.logo__mark {
  width: 68px;
  height: 42px;
  object-fit: contain;
  margin-bottom: 6px;
}

.logo__title {
  font-family: var(--serif);
  font-size: 38px;
  font-weight: 500;
  line-height: .95;
  letter-spacing: .105em;
}

.logo__subtitle {
  margin-top: 8px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .45em;
  opacity: .72;
}

.logo--header {
  justify-self: center;
}

.logo--header .logo__mark {
  filter: brightness(0) invert(1);
}

.header-actions {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 25px;
}

.header-actions button,
.header-actions a {
  position: relative;
  color: currentColor;
}

.header-actions a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.header-actions .cart span,
.header-actions .wishlist-link span {
  position: absolute;
  top: -10px;
  right: -11px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  font-weight: 700;
  color: var(--text);
  background: var(--sand);
}

.header-actions .cart span.is-empty,
.header-actions .wishlist-link span.is-empty,
.page-header__actions .cart span.is-empty,
.page-header__actions .wishlist-link span.is-empty {
  display: none;
}

/* Hero */
.hero {
  position: relative;
  min-height: 875px;
  overflow: hidden;
  color: var(--white);
  background: var(--dark);
}

.hero__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero__shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(17, 15, 13, .84) 0%, rgba(20, 17, 15, .62) 34%, rgba(20, 17, 15, .10) 58%, rgba(16, 13, 11, .32) 100%), linear-gradient(180deg, rgba(0, 0, 0, .2) 0%, rgba(0, 0, 0, .03) 42%, rgba(0, 0, 0, .34) 100%);
  pointer-events: none;
}

.hero__content {
  position: relative;
  z-index: 3;
  padding-top: 300px;
  padding-bottom: 34px;
}

.hero__eyebrow {
  margin: 0 0 24px;
  font-size: 17px;
  line-height: 1.4;
}

.hero h1 {
  margin: 0 0 22px;
  max-width: 690px;
  font-family: var(--serif);
  font-size: clamp(52px, 5vw, 82px);
  font-weight: 500;
  line-height: .95;
  letter-spacing: -.02em;
}

.hero__text {
  margin: 0 0 36px;
  font-size: 17px;
  line-height: 1.55;
  color: rgba(255, 255, 255, .88);
}

.hero__meta {
  display: flex;
  align-items: center;
  gap: 22px;
  margin-top: 86px;
  font-size: 13px;
  font-weight: 500;
  color: rgba(255, 255, 255, .9);
}

.hero__meta i {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: currentColor;
}

.hero-slider {
  position: absolute;
  right: 47px;
  top: 51%;
  z-index: 5;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 17px;
  transform: translateY(-12%);
}

.hero-slider strong,
.hero-slider span {
  font-size: 28px;
  font-weight: 600;
  line-height: 1;
}

.hero-slider span {
  font-size: 20px;
  color: rgba(255, 255, 255, .86);
}

.hero-slider i {
  display: block;
  width: 2px;
  height: 45px;
  margin: 10px 0 8px;
  background: rgba(255, 255, 255, .84);
}

.hero-slider button {
  color: var(--white);
  font-size: 30px;
  line-height: 1;
}

/* Collections */
.collections {
  padding-top: 55px;
  padding-bottom: 58px;
}

.collections__grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 50px;
}

.collection-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  font-size: 16px;
  font-weight: 500;
  text-transform: uppercase;
  transition: transform .2s ease, color .2s ease;
}

.collection-card:hover {
  color: var(--gold);
  transform: translateY(-3px);
}

.collection-card img {
  width: 170px;
  height: 170px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .05), 0 10px 30px rgba(36, 31, 27, .08);
}

/* Products */
.products {
  padding-top: 65px;
  padding-bottom: 72px;
  background: #fffdfa;
}

.products__grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 28px;
}

.product-card {
  position: relative;
  min-height: 320px;
  padding: 18px 18px 24px;
  border-radius: 5px;
  background: #f8f1eb;
  overflow: hidden;
  transition: transform .2s ease, box-shadow .2s ease;
}

.product-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 38px rgba(36, 31, 27, .08);
}

.product-card__fav {
  position: absolute;
  top: 17px;
  right: 17px;
  z-index: 3;
  color: var(--gold);
  font-size: 26px;
  line-height: 1;
}

.product-card img {
  width: 100%;
  height: 215px;
  margin-bottom: 18px;
  border-radius: 4px;
  object-fit: cover;
  object-position: center;
  mix-blend-mode: multiply;
}

.product-card h3 {
  margin: 0 0 14px;
  font-size: 14px;
  font-weight: 500;
}

.product-card p {
  margin: 0;
  font-size: 15px;
  font-weight: 600;
}

.dots {
  display: flex;
  justify-content: center;
  gap: 13px;
  margin-top: 42px;
}

.dots button {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #dfd9d2;
}

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

/* Benefits */
.benefits {
  display: grid;
  grid-template-columns: minmax(420px, 1fr) minmax(560px, 1.75fr);
  background: var(--dark-2);
  color: var(--white);
}

.benefits__photo {
  min-height: 355px;
  overflow: hidden;
}

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

.benefits__content {
  display: grid;
  grid-template-columns: repeat(2, minmax(210px, 1fr));
  gap: 62px 95px;
  align-content: center;
  padding: 74px clamp(48px, 7vw, 126px);
  background: radial-gradient(circle at 55% 45%, rgba(164, 111, 67, .18), transparent 42%), linear-gradient(120deg, #261f1b 0%, #171411 100%);
}

.benefit-item {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 28px;
  align-items: center;
}

.benefit-item img {
  width: 54px;
  height: 54px;
  filter: invert(57%) sepia(21%) saturate(800%) hue-rotate(346deg) brightness(88%) contrast(82%);
}

.benefit-item p {
  margin: 0;
  font-size: 16px;
  line-height: 1.35;
  color: rgba(255, 255, 255, .92);
}

/* Instagram */
.instagram {
  padding-top: 48px;
  padding-bottom: 38px;
}

.instagram__inner {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 56px;
  align-items: start;
}

.instagram__text {
  padding-top: 34px;
}

.instagram__text h2 {
  margin-bottom: 28px;
}

.instagram__text p {
  margin: 0 0 32px;
  font-size: 15px;
  line-height: 1.6;
}

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

.instagram-card {
  height: 250px;
  border-radius: 5px;
  overflow: hidden;
  background: #eee;
  transition: transform .2s ease;
}

.instagram-card:hover {
  transform: translateY(-3px);
}

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

/* About banner */
.about-banner {
  padding: 0 0 70px;
  background: var(--cream-2);
}

.about-banner__box {
  position: relative;
  min-height: 230px;
  border-radius: 4px;
  overflow: hidden;
  background: #ead8c4;
}

.about-banner__box>img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.about-banner__box::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(247, 235, 220, .98) 0%, rgba(247, 235, 220, .86) 36%, rgba(247, 235, 220, .28) 57%, rgba(247, 235, 220, .03) 100%);
}

.about-banner__content {
  position: relative;
  z-index: 2;
  min-height: 230px;
  display: grid;
  grid-template-columns: 78px 1fr;
  align-content: center;
  align-items: center;
  column-gap: 34px;
  width: min(620px, 62%);
  padding: 34px 64px;
}

.about-banner__content img {
  width: 66px;
  height: 66px;
  filter: invert(47%) sepia(17%) saturate(960%) hue-rotate(346deg) brightness(91%) contrast(86%);
}

.about-banner__content h2 {
  font-size: 35px;
  text-transform: none;
  letter-spacing: 0;
}

.about-banner__content a {
  grid-column: 2;
  margin-top: 10px;
  width: fit-content;
  color: var(--gold);
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  text-decoration: underline;
  text-underline-offset: 4px;
}

/* Footer */
.footer {
  background: var(--cream-2);
  border-top: 1px solid var(--line);
}

.footer__inner {
  display: grid;
  grid-template-columns: 1.45fr repeat(4, 1fr);
  gap: 64px;
  padding: 66px 0 54px;
}

.logo--footer {
  align-items: flex-start;
  width: fit-content;
  margin-bottom: 22px;
}

.logo--footer .logo__mark {
  width: 58px;
  height: 42px;
  filter: invert(47%) sepia(17%) saturate(960%) hue-rotate(346deg) brightness(91%) contrast(86%);
}

.logo--footer .logo__title {
  font-size: 29px;
  color: #3a302a;
}

.logo--footer .logo__subtitle {
  font-size: 8px;
  letter-spacing: .36em;
  color: #3a302a;
  opacity: 1;
}

.footer__brand p {
  margin: 0 0 28px;
  max-width: 260px;
  font-size: 13px;
  line-height: 1.7;
  color: var(--muted);
}

.socials {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.socials a {
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(166, 121, 77, .45);
  border-radius: 10px;
  color: var(--text);
  transition: border-color .2s ease, color .2s ease, transform .2s ease, background-color .2s ease;
}

.socials a:hover {
  color: var(--gold);
  border-color: var(--gold);
  background: rgba(166, 121, 77, .06);
  transform: translateY(-2px);
}

.socials a img {
  width: 20px;
  height: 20px;
  display: block;
}

.footer-col {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
}

.footer-col h3 {
  margin: 0 0 12px;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .02em;
}

.footer-col a,
.footer-col p {
  margin: 0;
  font-size: 13px;
  line-height: 1.55;
  color: var(--muted);
}

.footer-col a:hover {
  color: var(--gold);
}

.footer__bottom {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 28px 0;
  border-top: 1px solid var(--line);
  font-size: 12px;
  color: var(--muted);
}

@media (max-width: 1180px) {
  .header__inner {
    grid-template-columns: 32px 1fr auto;
  }

  .nav {
    display: none;
  }

  .logo--header {
    justify-self: center;
  }

  .header-actions {
    gap: 18px;
  }

  .collections__grid,
  .products__grid {
    gap: 22px;
  }

  .collection-card img {
    width: 140px;
    height: 140px;
  }

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

  .instagram__text {
    padding-top: 0;
  }

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

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

  .hero {
    min-height: 760px;
  }

  .hero__content {
    padding-top: 280px;
  }

  .hero-slider {
    display: none;
  }

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

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

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

  .benefits__photo {
    min-height: 320px;
  }

  .benefits__content {
    padding: 54px 32px;
    gap: 36px;
  }

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

  .about-banner__content {
    width: 100%;
    padding: 28px;
  }

  .footer__inner {
    grid-template-columns: repeat(2, 1fr);
    gap: 42px;
  }
}

@media (max-width: 620px) {
  .header__inner {
    width: calc(100% - 32px);
    height: 74px;
    gap: 10px;
  }

  .logo--header .logo__title {
    font-size: 22px;
  }

  .logo--header .logo__subtitle {
    font-size: 7px;
    letter-spacing: .32em;
  }

  .logo--header .logo__mark {
    width: 44px;
    height: 28px;
    margin-bottom: 2px;
  }

  .header-actions {
    gap: 12px;
  }

  .header-actions button:nth-child(2),
  .header-actions button:nth-child(3) {
    display: none;
  }

  .header-actions img,
  .burger img {
    width: 22px;
    height: 22px;
  }

  .hero {
    min-height: 760px;
  }

  .hero__image {
    object-position: center top;
  }

  .hero__shade {
    background: linear-gradient(180deg, rgba(13, 11, 10, .25) 0%, rgba(13, 11, 10, .22) 28%, rgba(13, 11, 10, .82) 66%, rgba(13, 11, 10, .94) 100%);
  }

  .hero__content {
    padding-top: 420px;
  }

  .hero h1 {
    font-size: 42px;
    line-height: 1;
  }

  .hero__eyebrow,
  .hero__text {
    font-size: 15px;
  }

  .hero__meta {
    margin-top: 46px;
  }

  .section {
    padding: 42px 0 52px;
  }

  .section-head h2,
  .instagram h2 {
    font-size: 28px;
  }

  .collections__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 28px 18px;
  }

  .collection-card img {
    width: 130px;
    height: 130px;
  }

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

  .product-card img {
    height: 270px;
  }

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

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

  .instagram-card {
    height: 330px;
  }

  .about-banner {
    padding-bottom: 44px;
  }

  .about-banner__content {
    grid-template-columns: 1fr;
    min-height: 250px;
  }

  .about-banner__content h2 {
    font-size: 28px;
  }

  .about-banner__content a {
    grid-column: auto;
  }

  .about-banner__box::after {
    background: rgba(247, 235, 220, .86);
  }

  .footer__inner {
    grid-template-columns: 1fr;
    padding: 44px 0;
  }

  .footer__bottom {
    flex-direction: column;
  }
}

/* Inner pages: collections category */
.page--inner {
  background: var(--cream-2);
}

.page-header {
  position: static;
  z-index: 30;
  width: 100%;
  color: var(--text);
  background: var(--cream-2);
}

.page-header__inner {
  width: min(1360px, calc(100% - 96px));
  min-height: 112px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 210px 1fr auto;
  align-items: center;
  gap: 36px;
}

.page-header__logo {
  align-items: flex-start;
  justify-self: start;
  color: #3b2e27;
}

.page-header__logo .logo__mark {
  width: 58px;
  height: 42px;
  margin: 0 0 5px;
  filter: none;
}

.page-header__logo .logo__title {
  font-size: 28px;
  line-height: 1;
  letter-spacing: .105em;
  color: #5c3925;
}

.page-header__logo .logo__subtitle {
  margin-top: 7px;
  font-size: 8px;
  letter-spacing: .42em;
  color: #5c3925;
  opacity: 1;
}

.page-header__burger {
  display: none;
  width: 28px;
  height: 28px;
}

.page-header__burger img {
  width: 24px;
  height: 24px;
  filter: none;
}

.page-nav {
  justify-self: center;
  display: flex;
  align-items: center;
  gap: clamp(18px, 2.6vw, 40px);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .015em;
}

.page-nav a {
  position: relative;
  padding: 12px 0;
  transition: color .2s ease;
}

.page-nav a::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 0;
  height: 2px;
  background: var(--gold);
  transform: translateX(-50%);
  transition: width .2s ease;
}

.page-nav a:hover,
.page-nav a.is-active {
  color: var(--gold);
}

.page-nav a:hover::after,
.page-nav a.is-active::after {
  width: 34px;
}

.page-header__actions {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 26px;
}

.page-header__actions button,
.page-header__actions a {
  position: relative;
  color: var(--text);
}

.page-header__actions a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.page-header__actions img {
  width: 25px;
  height: 25px;
  filter: none;
  opacity: .95;
}

.page-header__actions .cart span,
.page-header__actions .wishlist-link span {
  position: absolute;
  top: -10px;
  right: -12px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--gold);
  color: var(--white);
  font-size: 11px;
  font-weight: 700;
}

.category-hero {
  padding: 34px 0 25px;
  text-align: center;
}

.category-hero h1 {
  margin: 0 0 22px;
  font-family: var(--serif);
  font-size: clamp(44px, 4.5vw, 60px);
  font-weight: 600;
  line-height: .95;
  text-transform: uppercase;
  letter-spacing: .01em;
}

.breadcrumbs {
  display: inline-flex;
  align-items: center;
  gap: 19px;
  color: #4c4039;
  font-size: 16px;
}

.breadcrumbs span {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: currentColor;
  opacity: .9;
}

.collection-page {
  padding: 0 0 58px;
}

.collection-page__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  max-width: 1080px;
  margin: 0 auto;
}

.collection-tile {
  position: relative;
  min-height: 305px;
  border-radius: 12px;
  overflow: hidden;
  background: #251c17;
  color: var(--white);
  isolation: isolate;
  transition: transform .22s ease, box-shadow .22s ease;
}

.collection-tile:hover {
  transform: translateY(-3px);
  box-shadow: 0 22px 46px rgba(39, 31, 25, .14);
}

.collection-tile--wide {
  grid-column: 1 / -1;
  min-height: 255px;
}

.collection-tile img {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.02);
  transition: transform .5s ease;
}

.collection-tile:hover img {
  transform: scale(1.075);
}

.collection-tile__shade {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(90deg, rgba(25, 19, 15, .72) 0%, rgba(25, 19, 15, .36) 45%, rgba(25, 19, 15, .05) 100%), linear-gradient(180deg, rgba(0, 0, 0, .12), rgba(0, 0, 0, .28));
}

.collection-tile__content {
  position: absolute;
  left: 28px;
  bottom: 28px;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 7px;
}

.collection-tile strong {
  font-family: var(--serif);
  font-size: 40px;
  font-weight: 600;
  line-height: .9;
  text-transform: uppercase;
  letter-spacing: .01em;
  text-shadow: 0 2px 18px rgba(0, 0, 0, .35);
}

.collection-tile em {
  font-style: normal;
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .01em;
}

.category-benefits {
  padding: 0 0 50px;
  background: var(--cream-2);
}

.category-benefits__inner {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  align-items: center;
  max-width: 1190px;
}

.category-benefit {
  position: relative;
  display: grid;
  grid-template-columns: 50px 1fr;
  align-items: center;
  gap: 18px;
  min-height: 70px;
  padding: 0 26px;
}

.category-benefit:not(:last-child)::after {
  content: "";
  position: absolute;
  right: 0;
  top: 8px;
  bottom: 8px;
  width: 1px;
  background: rgba(166, 121, 77, .25);
}

.category-benefit img {
  width: 44px;
  height: 44px;
  filter: invert(47%) sepia(17%) saturate(960%) hue-rotate(346deg) brightness(91%) contrast(86%);
}

.category-benefit p {
  margin: 0;
  color: #3f3731;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.42;
}

@media (max-width: 1180px) {
  .page-header__inner {
    grid-template-columns: 180px 1fr auto;
    width: min(calc(100% - 56px), 1360px);
    gap: 24px;
  }

  .page-nav {
    gap: 18px;
    font-size: 11px;
  }

  .collection-page__grid {
    max-width: none;
  }

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

  .category-benefit:nth-child(3)::after {
    display: none;
  }
}

@media (max-width: 900px) {
  .page-header__inner {
    min-height: 88px;
    grid-template-columns: auto 1fr auto;
  }

  .page-header__burger {
    display: block;
    order: 1;
  }

  .page-header__logo {
    order: 2;
    justify-self: center;
    align-items: center;
  }

  .page-nav {
    display: none;
  }

  .page-header__actions {
    order: 3;
    gap: 16px;
  }

  .page-header__actions button:nth-child(2) {
    display: none;
  }

  .category-hero {
    padding-top: 22px;
  }

  .collection-page__grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .collection-tile,
  .collection-tile--wide {
    grid-column: auto;
    min-height: 255px;
  }

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

  .category-benefit::after {
    display: none;
  }
}

@media (max-width: 620px) {
  .page-header__inner {
    width: calc(100% - 32px);
    min-height: 78px;
    gap: 10px;
  }

  .page-header__logo .logo__mark {
    width: 42px;
    height: 30px;
  }

  .page-header__logo .logo__title {
    font-size: 21px;
  }

  .page-header__logo .logo__subtitle {
    font-size: 7px;
    letter-spacing: .30em;
  }

  .page-header__actions {
    gap: 12px;
  }

  .page-header__actions img,
  .page-header__burger img {
    width: 22px;
    height: 22px;
  }

  .category-hero h1 {
    font-size: 38px;
  }

  .breadcrumbs {
    font-size: 14px;
  }

  .collection-page {
    padding-bottom: 40px;
  }

  .collection-tile,
  .collection-tile--wide {
    min-height: 220px;
    border-radius: 10px;
  }

  .collection-tile__content {
    left: 20px;
    bottom: 20px;
  }

  .collection-tile strong {
    font-size: 34px;
  }

  .collection-tile em {
    font-size: 14px;
  }

  .category-benefits {
    padding-bottom: 34px;
  }

  .category-benefits__inner {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .category-benefit {
    padding: 0;
    grid-template-columns: 46px 1fr;
  }
}

/* Product detail page */
.page--product .page-header__inner {
  min-height: 104px;
}

.product-section {
  padding: 22px 0 0;
  background: var(--cream-2);
}

.product-breadcrumbs {
  display: flex;
  align-items: center;
  gap: 22px;
  margin: 0 0 24px;
  font-size: 14px;
  color: #3f3731;
}

.product-breadcrumbs span {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: currentColor;
  opacity: .75;
}

.product-breadcrumbs a[aria-current="page"] {
  font-weight: 700;
  color: var(--text);
}

.product-layout {
  display: grid;
  grid-template-columns: 122px minmax(470px, 1fr) minmax(360px, 420px);
  gap: 30px 58px;
  align-items: start;
}

.product-thumbs {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}

.product-thumbs__arrow {
  width: 32px;
  height: 18px;
  color: var(--gold);
  font-size: 18px;
  line-height: 1;
}

.product-thumb {
  position: relative;
  width: 112px;
  height: 92px;
  border-radius: 10px;
  overflow: hidden;
  background: #f4ebe2;
  border: 1px solid transparent;
  transition: border-color .2s ease, transform .2s ease, box-shadow .2s ease;
}

.product-thumb:hover,
.product-thumb.is-active {
  border-color: rgba(166, 121, 77, .34);
  box-shadow: 0 12px 24px rgba(56, 42, 32, .08);
  transform: translateY(-1px);
}

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

.product-thumb--video::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(247, 243, 237, .28);
}

.product-thumb--video span {
  position: absolute;
  z-index: 2;
  left: 50%;
  top: 50%;
  width: 48px;
  height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, .92);
  box-shadow: 0 12px 30px rgba(44, 35, 29, .14);
  color: var(--text);
  font-size: 17px;
  transform: translate(-50%, -50%);
}

.product-gallery {
  min-height: 620px;
  border-radius: 10px;
  overflow: hidden;
  background: #f5eadf;
}

.product-gallery img {
  width: 100%;
  height: 100%;
  min-height: 620px;
  object-fit: cover;
  object-position: center;
}

.product-info {
  padding-top: 10px;
}

.product-info h1 {
  margin: 0 0 16px;
  font-family: var(--serif);
  font-size: clamp(46px, 4vw, 58px);
  font-weight: 600;
  line-height: .95;
  letter-spacing: -.015em;
}

.product-price {
  margin: 0 0 28px;
  color: #6f421f;
  font-size: 28px;
  font-weight: 700;
  line-height: 1;
}

.product-short {
  margin: 0 0 42px;
  color: #403832;
  font-size: 16px;
  line-height: 1.55;
}

.product-control {
  margin-bottom: 26px;
}

.product-control h2 {
  margin: 0 0 14px;
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: .04em;
}

.size-list {
  display: flex;
  align-items: center;
  gap: 15px;
}

.size-list button {
  width: 54px;
  height: 54px;
  border: 1px solid rgba(84, 68, 56, .15);
  border-radius: 8px;
  background: rgba(255, 255, 255, .55);
  color: #463b34;
  font-size: 15px;
  transition: .2s ease;
}

.size-list button:hover,
.size-list .is-active {
  background: #2b211b;
  border-color: #2b211b;
  color: var(--white);
}

.qty {
  display: inline-grid;
  grid-template-columns: 52px 52px 52px;
  height: 49px;
  border: 1px solid rgba(84, 68, 56, .15);
  border-radius: 7px;
  overflow: hidden;
  background: rgba(255, 255, 255, .55);
}

.qty button,
.qty span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #332b26;
  font-size: 18px;
  border-right: 1px solid rgba(84, 68, 56, .12);
}

.qty span {
  font-size: 15px;
}

.qty button:last-child {
  border-right: 0;
}

.add-cart {
  width: 100%;
  max-width: 370px;
  height: 64px;
  margin: 2px 0 28px;
  border-radius: 7px;
  background: linear-gradient(135deg, #6d421e 0%, #4d2b16 100%);
  color: var(--white);
  font-size: 15px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  box-shadow: 0 12px 22px rgba(91, 55, 28, .20);
  transition: transform .2s ease, box-shadow .2s ease;
}

.add-cart:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 28px rgba(91, 55, 28, .26);
}

.wishlist {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 22px;
  color: #815232;
  font-size: 16px;
}

.wishlist span {
  font-size: 34px;
  line-height: 1;
}

.product-features {
  display: flex;
  flex-direction: column;
  gap: 13px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.product-features li {
  display: grid;
  grid-template-columns: 32px 1fr;
  align-items: center;
  gap: 14px;
  color: #4c443e;
  font-size: 15px;
  line-height: 1.35;
}

.product-features img {
  width: 30px;
  height: 30px;
  filter: invert(47%) sepia(17%) saturate(960%) hue-rotate(346deg) brightness(91%) contrast(86%);
}

.product-tabs {
  padding: 28px 0 50px;
}

.product-tabs__nav {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-bottom: 1px solid var(--line);
}

.product-tabs__nav button {
  position: relative;
  padding: 0 0 17px;
  color: #2d2621;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  text-align: left;
}

.product-tabs__nav button::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 0;
  height: 2px;
  background: #6f421f;
  transition: width .2s ease;
}

.product-tabs__nav button.is-active::after,
.product-tabs__nav button:hover::after {
  width: 142px;
}

.product-tabs__content {
  padding-top: 18px;
}

.product-tabs__content p {
  margin: 0;
  max-width: 540px;
  color: #4c443e;
  font-size: 15px;
  line-height: 1.7;
}

.product-tabs__content #tab-description p {
  max-width: 100%;
}

.related-products {
  padding: 0 0 64px;
  background: var(--cream-2);
}

.related-products__head {
  margin-bottom: 20px;
  align-items: center;
}

.related-products__head h2 {
  font-size: 27px;
}

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

.related-card {
  position: relative;
  display: grid;
  grid-template-columns: 175px 1fr;
  align-items: center;
  min-height: 128px;
  padding: 14px 56px 14px 14px;
  border-radius: 9px;
  background: #f6ece3;
  overflow: hidden;
  transition: transform .2s ease, box-shadow .2s ease;
}

.related-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 36px rgba(37, 29, 23, .08);
}

.related-card__fav {
  position: absolute;
  top: 15px;
  right: 18px;
  color: var(--gold);
  font-size: 28px;
  line-height: 1;
}

.related-card img {
  width: 158px;
  height: 100px;
  object-fit: cover;
  object-position: center;
  mix-blend-mode: multiply;
}

.related-card h3 {
  margin: 0 0 10px;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.3;
}

.product-card__fav.is-active {
  color: #6d421e;
}

.wishlist-heart-icon {
  width: 22px;
  height: 22px;
  display: block;
  overflow: visible;
}

.wishlist-heart-icon__fill {
  fill: currentColor;
  opacity: 0;
  transition: opacity .18s ease;
}

.wishlist-heart-icon__stroke {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.65;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.related-card__fav.is-active .wishlist-heart-icon__fill,
.catalog-card__fav.is-active .wishlist-heart-icon__fill,
.product-card__fav.is-active .wishlist-heart-icon__fill {
  opacity: 1;
}

.product-card>.yith-wcwl-add-to-wishlist,
.product-card>.yith-add-to-wishlist-button-block,
.product-card>.yith-wcwl-add-to-wishlist-button,
.product-card>.yith-wcwl-add-to-wishlist-button__wrapper {
  display: none;
}

.collection-card--no-image {
  background: linear-gradient(145deg, #ead8c4, #cda778);
}

.related-card__fav.is-active {
  color: var(--brown);
}

.related-card__wishlist-source {
  display: none;
}

/* Replace the default YITH English notice with the theme modal. */
#yith-wcwl-popup-message {
  display: none !important;
}

.yith-wcwl-feedback-messages-container,
.yith-wcwl-add-to-wishlist__feedback {
  display: none !important;
}

.wishlist-modal {
  position: fixed;
  inset: 0;
  z-index: 10020;
  display: grid;
  place-items: center;
  padding: 20px;
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  transition: opacity .22s ease, visibility .22s ease;
}

.wishlist-modal.is-open {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
}

.wishlist-modal__backdrop {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  background: rgba(37, 29, 23, .45);
}

.wishlist-modal__dialog {
  position: relative;
  z-index: 1;
  width: min(100%, 440px);
  padding: 44px 42px 38px;
  border: 1px solid rgba(154, 104, 59, .28);
  border-radius: 14px;
  background: var(--cream-2);
  box-shadow: 0 24px 70px rgba(37, 29, 23, .25);
  text-align: center;
  transform: translateY(12px) scale(.98);
  transition: transform .22s ease;
}

.wishlist-modal.is-open .wishlist-modal__dialog {
  transform: translateY(0) scale(1);
}

.wishlist-modal__close {
  position: absolute;
  top: 12px;
  right: 15px;
  width: 32px;
  height: 32px;
  padding: 0;
  border: 0;
  color: var(--text);
  background: transparent;
  font-size: 30px;
  font-weight: 300;
  line-height: 1;
}

.wishlist-modal__icon {
  display: inline-grid;
  width: 46px;
  height: 46px;
  place-items: center;
  margin-bottom: 16px;
  border-radius: 50%;
  color: var(--white);
  background: var(--brown);
  font-size: 23px;
}

.wishlist-modal__eyebrow {
  margin: 0 0 8px;
  color: var(--gold);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.wishlist-modal h2 {
  margin: 0 0 10px;
  font-family: var(--serif);
  font-size: 29px;
  font-weight: 500;
  line-height: 1.05;
}

.wishlist-modal__dialog>p:not(.wishlist-modal__eyebrow) {
  margin: 0 auto 25px;
  max-width: 290px;
  color: var(--text-light);
  font-size: 14px;
  line-height: 1.55;
}

.wishlist-modal__link {
  display: inline-flex;
  min-height: 47px;
  align-items: center;
  justify-content: center;
  padding: 0 22px;
  color: var(--white);
  background: var(--brown);
  font-size: 12px;
  font-weight: 700;
  text-decoration: none;
  text-transform: uppercase;
}

body.wishlist-modal-open {
  overflow: hidden;
}

@media (max-width: 520px) {
  .wishlist-modal__dialog {
    padding: 40px 25px 30px;
  }
}

.related-card h3 a {
  color: inherit;
  text-decoration: none;
}

/* Wishlist (YITH) */
.page--wishlist main {
  background: var(--cream-2);
}

.page--wishlist .section {
  width: min(var(--container), calc(100% - 96px));
  padding: 34px 0 72px;
}

.page--wishlist .footer .container {
  width: min(var(--container), calc(100% - 96px));
  max-width: var(--container);
  margin-right: auto;
  margin-left: auto;
  box-sizing: border-box;
}

.page--wishlist .footer__inner {
  grid-template-columns: minmax(240px, 1.45fr) repeat(4, minmax(0, 1fr));
  gap: 48px;
}

.page--wishlist .footer__legal,
.page--wishlist .footer__bottom {
  clear: both;
}

.page--wishlist .breadcrumbs {
  margin-bottom: 22px;
}

.page--wishlist .page-title {
  margin: 0 0 32px;
  color: #302820;
  font-family: var(--serif);
  font-size: clamp(40px, 4vw, 58px);
  font-weight: 500;
  line-height: .95;
  letter-spacing: -.02em;
}

.page--wishlist .page-content>h2,
.page--wishlist .page-content .wishlist-title h2 {
  margin: 0 0 20px;
  color: #3a302a;
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 500;
}

.page--wishlist .wishlist_table {
  width: 100%;
  margin: 0;
  border: 0;
  border-collapse: separate;
  border-spacing: 0 12px;
  background: transparent;
}

.page--wishlist .wishlist_table thead {
  display: none;
}

.page--wishlist .wishlist_table tbody,
.page--wishlist .wishlist_table tr {
  display: block;
}

.page--wishlist .wishlist_table tr {
  display: grid;
  grid-template-columns: 60px 112px minmax(180px, 1fr) minmax(120px, .5fr) minmax(120px, .55fr) minmax(145px, .7fr);
  align-items: center;
  min-height: 140px;
  overflow: hidden;
  border: 1px solid rgba(166, 121, 77, .2);
  border-radius: 12px;
  background: #fffdf9;
  box-shadow: 0 12px 28px rgba(72, 51, 36, .05);
}

.page--wishlist .wishlist_table td {
  display: flex;
  align-items: center;
  min-width: 0;
  min-height: 112px;
  padding: 18px;
  border: 0 !important;
  background: transparent !important;
  color: #4f453e;
  font-size: 14px;
}

.page--wishlist .wishlist_table .product-remove {
  justify-content: center;
  padding: 8px 10px 8px 18px;
}

.page--wishlist .wishlist_table .product-remove a.remove {
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  border: 1px solid rgba(166, 121, 77, .45);
  border-radius: 50%;
  color: #8b562e !important;
  font-size: 20px;
  font-weight: 400;
  text-decoration: none;
}

.page--wishlist .wishlist_table .product-thumbnail {
  padding-left: 0;
}

.page--wishlist .wishlist_table .product-thumbnail img {
  display: block;
  width: 92px !important;
  height: 104px !important;
  max-width: none;
  object-fit: cover;
  mix-blend-mode: multiply;
}

.page--wishlist .wishlist_table .product-name a {
  color: #332b26;
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 500;
  line-height: 1.1;
  text-decoration: none;
}

.page--wishlist .wishlist_table .product-price,
.page--wishlist .wishlist_table .product-price .woocommerce-Price-amount {
  color: #7a4b28;
  font-size: 20px;
  font-weight: 600;
}

.page--wishlist .wishlist_table .product-stock-status {
  color: #63744e;
  font-weight: 600;
}

.page--wishlist .wishlist_table .product-add-to-cart a,
.page--wishlist .wishlist_table .product-add-to-cart button {
  display: inline-flex;
  justify-content: center;
  width: 100%;
  padding: 12px 16px;
  border: 1px solid #744320;
  border-radius: 2px;
  background: #744320;
  color: #fff;
  font: inherit;
  font-size: 12px;
  font-weight: 600;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: .04em;
}

.page--wishlist .wishlist_table .product-add-to-cart a:hover,
.page--wishlist .wishlist_table .product-add-to-cart button:hover {
  background: #8c5630;
  color: #fff;
}

.page--wishlist .yith-wcwl-share {
  display: none;
}

.page--wishlist .yith-wcwl-share h4 {
  color: #3a302a;
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 500;
}

@media (max-width: 900px) {

  .page--wishlist .section,
  .page--wishlist .footer .container {
    width: min(calc(100% - 32px), 620px);
  }

  .page--wishlist .section {
    padding: 24px 0 48px;
  }

  .page--wishlist .wishlist_table tr {
    grid-template-columns: 48px 92px minmax(0, 1fr);
    gap: 0;
    min-height: 128px;
    padding: 12px;
  }

  .page--wishlist .wishlist_table td {
    min-height: auto;
    padding: 8px;
  }

  .page--wishlist .wishlist_table .product-thumbnail {
    padding-left: 2px;
  }

  .page--wishlist .wishlist_table .product-thumbnail img {
    width: 78px !important;
    height: 94px !important;
  }

  .page--wishlist .wishlist_table .product-name a {
    font-size: 19px;
  }

  .page--wishlist .wishlist_table .product-price,
  .page--wishlist .wishlist_table .product-stock-status,
  .page--wishlist .wishlist_table .product-add-to-cart {
    grid-column: 3;
  }

  .page--wishlist .wishlist_table .product-add-to-cart {
    padding-top: 4px;
  }
}

.related-card p {
  margin: 0;
  font-size: 14px;
  font-weight: 600;
}

@media (max-width: 1180px) {
  .product-layout {
    grid-template-columns: 96px minmax(360px, 1fr) minmax(330px, 380px);
    gap: 26px 34px;
  }

  .product-thumb {
    width: 92px;
    height: 78px;
  }

  .product-gallery,
  .product-gallery img {
    min-height: 560px;
  }

  .size-list {
    gap: 10px;
  }

  .size-list button {
    width: 48px;
    height: 48px;
  }

  .related-card {
    grid-template-columns: 130px 1fr;
    padding-right: 42px;
  }

  .related-card img {
    width: 120px;
    height: 92px;
  }
}

@media (max-width: 900px) {
  .product-section {
    padding-top: 10px;
  }

  .product-breadcrumbs {
    margin-bottom: 20px;
  }

  .product-layout {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .product-thumbs {
    order: 2;
    flex-direction: row;
    justify-content: flex-start;
    overflow-x: auto;
    padding-bottom: 8px;
  }

  .product-thumbs__arrow {
    display: none;
  }

  .product-thumb {
    flex: 0 0 86px;
    width: 86px;
    height: 76px;
  }

  .product-gallery {
    order: 1;
    min-height: 0;
  }

  .product-gallery img {
    min-height: 0;
    height: auto;
    aspect-ratio: 4 / 5;
  }

  .product-info {
    order: 3;
    padding-top: 6px;
  }

  .add-cart {
    max-width: none;
  }

  .product-tabs {
    padding-top: 16px;
  }

  .product-tabs__nav {
    grid-template-columns: repeat(2, 1fr);
    gap: 18px 24px;
  }

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

  .related-card {
    min-height: 132px;
    grid-template-columns: 160px 1fr;
  }

  .related-card img {
    width: 145px;
    height: 104px;
  }
}

@media (max-width: 620px) {
  .product-breadcrumbs {
    gap: 12px;
    font-size: 13px;
    overflow-x: auto;
    white-space: nowrap;
  }

  .product-info h1 {
    font-size: 42px;
  }

  .product-price {
    font-size: 24px;
    margin-bottom: 22px;
  }

  .product-short {
    margin-bottom: 30px;
  }

  .size-list {
    flex-wrap: wrap;
  }

  .size-list button {
    width: 50px;
    height: 50px;
  }

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

  .product-tabs__nav button {
    padding: 14px 0;
    border-bottom: 1px solid rgba(34, 29, 25, .09);
  }

  .product-tabs__nav button::after {
    display: none;
  }

  .related-products__head {
    flex-direction: row;
    align-items: flex-end;
  }

  .related-products__head h2 {
    font-size: 24px;
  }

  .related-card {
    grid-template-columns: 118px 1fr;
    min-height: 118px;
    padding: 12px 44px 12px 12px;
  }

  .related-card img {
    width: 106px;
    height: 90px;
  }

  .related-card h3 {
    font-size: 14px;
  }
}

/* Catalog listing page */
.page--catalog .page-header__inner {
  min-height: 104px;
}

.catalog-page {
  padding: 22px 0 54px;
  background: var(--cream-2);
}

.catalog-breadcrumbs {
  display: flex;
  align-items: center;
  gap: 22px;
  margin: 0 0 26px;
  font-size: 14px;
  color: #3f3731;
}

.catalog-breadcrumbs span {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: currentColor;
  opacity: .75;
}

.catalog-breadcrumbs a[aria-current="page"] {
  font-weight: 700;
  color: var(--text);
}

.catalog-page h1 {
  margin: 0 0 18px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--line);
  font-family: var(--serif);
  font-size: clamp(48px, 4.7vw, 62px);
  font-weight: 600;
  line-height: .95;
  letter-spacing: -.015em;
}

.catalog-topline {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  margin: 0 0 18px;
  color: #4e463f;
}

.catalog-topline p {
  margin: 0;
  font-size: 14px;
  font-weight: 500;
}

.catalog-topline button {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 14px;
  color: #4e463f;
}

.catalog-topline strong {
  font-weight: 600;
}

.catalog-topline span {
  margin-left: 8px;
  color: var(--text);
  font-size: 17px;
  line-height: 1;
}

.catalog-layout {
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  gap: 24px;
  align-items: start;
}

.catalog-filter {
  padding: 18px 18px 20px;
  border: 1px solid rgba(166, 121, 77, .16);
  border-radius: 6px;
  background: rgba(255, 255, 255, .38);
  box-shadow: 0 14px 36px rgba(72, 51, 36, .04);
}

.filter-group {
  padding: 0 0 20px;
  margin: 0 0 20px;
  border-bottom: 1px solid rgba(166, 121, 77, .18);
}

.filter-group:last-child {
  margin-bottom: 0;
  border-bottom: 0;
  padding-bottom: 0;
}

.filter-group__head {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 0 0 14px;
  color: #2e2823;
  font-family: var(--serif);
  font-size: 17px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .015em;
}

.filter-group__head span {
  color: #6f421f;
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1;
}

.choice {
  position: relative;
  display: flex;
  align-items: center;
  gap: 13px;
  min-height: 28px;
  color: #4f453e;
  font-size: 14px;
  line-height: 1.2;
  cursor: pointer;
}

.choice+.choice {
  margin-top: 7px;
}

.choice input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.choice span {
  position: relative;
  flex: 0 0 11px;
  width: 11px;
  height: 11px;
  border: 1px solid rgba(111, 66, 31, .48);
  background: rgba(255, 255, 255, .55);
}

.choice--radio span {
  border-radius: 50%;
}

.choice--check span {
  width: 15px;
  height: 15px;
  border-radius: 3px;
}

.choice.is-active span,
.choice input:checked+span {
  border-color: #7b5133;
  background: #7b5133;
}

.choice--radio.is-active span::after,
.choice--radio input:checked+span::after {
  content: "";
  position: absolute;
  inset: 3px;
  border-radius: 50%;
  background: #7b5133;
  box-shadow: 0 0 0 2px var(--cream-2) inset;
}

.choice--check.is-active span::after,
.choice--check input:checked+span::after {
  content: "✓";
  position: absolute;
  left: 50%;
  top: 50%;
  color: var(--white);
  font-size: 10px;
  font-weight: 700;
  transform: translate(-50%, -55%);
}

.filter-group--price p {
  margin: 0 0 17px;
  color: #4f453e;
  font-size: 14px;
}

.price-range {
  position: relative;
  height: 24px;
  margin: 0 8px 22px;
}

.price-range::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  height: 2px;
  background: rgba(166, 121, 77, .28);
  transform: translateY(-50%);
}

.price-range i {
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  height: 3px;
  background: #70431f;
  transform: translateY(-50%);
}

.price-range__dot {
  position: absolute;
  top: 50%;
  width: 18px;
  height: 18px;
  border: 2px solid #70431f;
  border-radius: 50%;
  background: var(--cream-2);
  transform: translateY(-50%);
}

.price-range__dot--left {
  left: -2px;
}

.price-range__dot--right {
  right: -2px;
}

.filter-apply {
  width: 100%;
  height: 45px;
  border-radius: 5px;
  background: linear-gradient(135deg, #6d421e 0%, #4d2b16 100%);
  color: var(--white);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .045em;
  box-shadow: 0 10px 20px rgba(91, 55, 28, .14);
  transition: transform .2s ease, box-shadow .2s ease;
}

.filter-apply:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 28px rgba(91, 55, 28, .22);
}

.catalog-products__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px 16px;
}

.catalog-card {
  position: relative;
  border-radius: 7px;
  overflow: hidden;
  background: #f7eee6;
  transition: transform .2s ease, box-shadow .2s ease;
}

.catalog-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 36px rgba(37, 29, 23, .07);
}

.catalog-card__image {
  display: block;
  height: 172px;
  overflow: hidden;
  background: #f4e9df;
}

.catalog-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform .45s ease;
}

.catalog-card:hover .catalog-card__image img {
  transform: scale(1.055);
}

.catalog-card__fav {
  position: absolute;
  top: 12px;
  right: 14px;
  z-index: 2;
  color: var(--gold);
  font-size: 29px;
  line-height: 1;
  text-shadow: 0 1px 7px rgba(255, 255, 255, .65);
  transition: transform .2s ease, color .2s ease;
}

.catalog-card__fav:hover {
  color: #6d421e;
  transform: scale(1.08);
}

.catalog-card__fav.is-active {
  color: #6d421e;
}

.catalog-card>.yith-wcwl-add-to-wishlist,
.catalog-card>.yith-add-to-wishlist-button-block,
.catalog-card>.yith-wcwl-add-to-wishlist-button,
.catalog-card>.yith-wcwl-add-to-wishlist-button__wrapper {
  display: none;
}

.catalog-card h2 {
  margin: 13px 14px 8px;
  color: #3a302a;
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 600;
  line-height: 1.15;
}

.catalog-card p {
  margin: 0 14px 18px;
  color: #6f421f;
  font-size: 15px;
  font-weight: 700;
}

.catalog-pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 18px;
  margin-top: 16px;
}

.catalog-pagination a {
  width: 32px;
  height: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 5px;
  color: #453b34;
  font-size: 14px;
  line-height: 1;
  transition: .2s ease;
}

.catalog-pagination a:first-child,
.catalog-pagination a:last-child {
  border: 1px solid rgba(84, 68, 56, .12);
  background: rgba(255, 255, 255, .36);
  font-size: 22px;
}

.catalog-pagination a:hover,
.catalog-pagination .is-active {
  background: #2b211b;
  color: var(--white);
}

@media (max-width: 1180px) {
  .catalog-layout {
    grid-template-columns: 260px 1fr;
    gap: 20px;
  }

  .catalog-card__image {
    height: 156px;
  }

  .catalog-card h2 {
    font-size: 17px;
  }
}

@media (max-width: 900px) {
  .catalog-page {
    padding-top: 10px;
  }

  .catalog-breadcrumbs {
    margin-bottom: 20px;
  }

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

  .catalog-filter {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px 22px;
  }

  .filter-group {
    margin: 0;
    padding-bottom: 0;
    border-bottom: 0;
  }

  .filter-group--price {
    grid-column: 1 / -1;
  }

  .catalog-products__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
  }

  .catalog-card__image {
    height: auto;
    aspect-ratio: 1.42 / 1;
  }
}

@media (max-width: 620px) {
  .catalog-breadcrumbs {
    gap: 12px;
    font-size: 13px;
    overflow-x: auto;
    white-space: nowrap;
  }

  .catalog-page h1 {
    font-size: 44px;
  }

  .catalog-topline {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
  }

  .catalog-filter {
    grid-template-columns: 1fr;
    padding: 16px;
  }

  .catalog-products__grid {
    grid-template-columns: 1fr;
  }

  .catalog-card__image {
    aspect-ratio: 1.5 / 1;
  }

  .catalog-pagination {
    margin-top: 22px;
  }
}

/* Payment and pickup page */
.page--payment .page-header__inner {
  min-height: 104px;
}

.payment-page {
  padding: 22px 0 36px;
  background: var(--cream-2);
}

.payment-breadcrumbs {
  display: flex;
  align-items: center;
  gap: 22px;
  margin: 0 0 22px;
  font-size: 14px;
  color: #3f3731;
}

.payment-breadcrumbs span {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: currentColor;
  opacity: .75;
}

.payment-breadcrumbs a[aria-current="page"] {
  font-weight: 700;
  color: var(--text);
}

.payment-intro {
  display: grid;
  grid-template-columns: minmax(360px, 450px) minmax(0, 1fr);
  gap: 58px;
  align-items: start;
  margin-bottom: 26px;
}

.payment-intro h1 {
  margin: 0 0 38px;
  font-family: var(--serif);
  font-size: clamp(50px, 5vw, 68px);
  font-weight: 600;
  line-height: .92;
  letter-spacing: -.02em;
}

.payment-points {
  display: flex;
  flex-direction: column;
  gap: 31px;
}

.payment-point {
  display: grid;
  grid-template-columns: 48px 1fr;
  align-items: center;
  gap: 26px;
}

.payment-point img {
  width: 44px;
  height: 44px;
}

.payment-point p {
  margin: 0;
  color: #3f3731;
  font-size: 17px;
  line-height: 1.55;
}

.payment-intro__image {
  min-height: 350px;
  border-radius: 10px;
  overflow: hidden;
  background: #efe4d8;
  box-shadow: 0 14px 34px rgba(68, 47, 33, .07);
}

.payment-intro__image img {
  width: 100%;
  height: 100%;
  min-height: 350px;
  object-fit: cover;
  object-position: center;
}

.payment-methods {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-bottom: 21px;
}

.payment-method-card {
  display: grid;
  grid-template-columns: 78px 1fr;
  gap: 24px;
  align-items: center;
  min-height: 136px;
  padding: 28px 28px 24px;
  border: 1px solid rgba(166, 121, 77, .17);
  border-radius: 10px;
  background: rgba(255, 255, 255, .42);
  box-shadow: 0 14px 36px rgba(72, 51, 36, .04);
}

.payment-method-card img {
  width: 66px;
  height: 66px;
}

.payment-method-card h2 {
  margin: 0 0 10px;
  color: #3b3029;
  font-family: var(--serif);
  font-size: 25px;
  font-weight: 600;
  line-height: 1.05;
}

.payment-method-card p {
  margin: 0;
  color: #4f463f;
  font-size: 14px;
  line-height: 1.55;
}

.no-delivery-banner {
  position: relative;
  min-height: 132px;
  margin-bottom: 18px;
  border-radius: 10px;
  overflow: hidden;
  background: #ead8c4;
  box-shadow: 0 14px 36px rgba(72, 51, 36, .04);
  isolation: isolate;
}

.no-delivery-banner__bg {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.no-delivery-banner::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(90deg, rgba(248, 239, 229, .98) 0%, rgba(248, 239, 229, .90) 45%, rgba(248, 239, 229, .36) 66%, rgba(248, 239, 229, .04) 100%);
}

.no-delivery-banner__content {
  position: relative;
  z-index: 3;
  min-height: 132px;
  display: flex;
  align-items: center;
  gap: 28px;
  padding: 22px 30px;
}

.no-delivery-banner__icons {
  display: flex;
  align-items: center;
  gap: 23px;
}

.no-delivery-banner__icons img {
  width: 66px;
  height: 66px;
  filter: invert(47%) sepia(17%) saturate(960%) hue-rotate(346deg) brightness(91%) contrast(86%);
}

.no-delivery-banner__content h2 {
  margin: 0 0 6px;
  font-family: var(--serif);
  font-size: 32px;
  font-weight: 600;
  line-height: 1;
}

.no-delivery-banner__content p {
  margin: 0;
  font-size: 19px;
  color: #3f3731;
  line-height: 1.3;
}

.payment-steps {
  padding-top: 1px;
}

.payment-steps h2 {
  margin: 0 0 12px;
  font-family: var(--serif);
  font-size: 32px;
  font-weight: 600;
  line-height: 1;
}

.payment-steps__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
  margin-bottom: 18px;
}

.payment-step {
  position: relative;
  min-height: 122px;
  padding: 22px 20px 20px 78px;
  border: 1px solid rgba(166, 121, 77, .14);
  border-radius: 10px;
  background: rgba(255, 255, 255, .35);
  box-shadow: 0 14px 34px rgba(72, 51, 36, .035);
}

.payment-step:not(:last-child)::after {
  content: "";
  position: absolute;
  left: calc(100% + 3px);
  top: 58px;
  width: 20px;
  border-top: 2px dotted rgba(166, 121, 77, .34);
}

.payment-step>span {
  position: absolute;
  top: 19px;
  left: 26px;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #ead9c7;
  color: #6f421f;
  font-size: 13px;
  font-weight: 700;
}

.payment-step img {
  position: absolute;
  left: 23px;
  bottom: 22px;
  width: 38px;
  height: 38px;
}

.payment-step h3 {
  margin: 0 0 8px;
  color: #3a302a;
  font-family: var(--serif);
  font-size: 19px;
  font-weight: 600;
  line-height: 1.1;
}

.payment-step p {
  margin: 0;
  color: #4f463f;
  font-size: 13px;
  line-height: 1.52;
}

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

.payment-faq-card {
  display: grid;
  grid-template-columns: 50px 1fr;
  gap: 22px;
  align-items: center;
  min-height: 85px;
  padding: 18px 24px;
  border: 1px solid rgba(166, 121, 77, .14);
  border-radius: 10px;
  background: rgba(255, 255, 255, .35);
}

.payment-faq-card img {
  width: 44px;
  height: 44px;
}

.payment-faq-card h3 {
  margin: 0 0 7px;
  color: #3a302a;
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 600;
  line-height: 1.1;
}

.payment-faq-card p {
  margin: 0;
  color: #4f463f;
  font-size: 13px;
  line-height: 1.45;
}

@media (max-width: 1180px) {
  .payment-intro {
    grid-template-columns: minmax(320px, 410px) minmax(0, 1fr);
    gap: 30px;
  }

  .payment-method-card {
    grid-template-columns: 58px 1fr;
    padding: 22px;
  }

  .payment-method-card img {
    width: 54px;
    height: 54px;
  }

  .payment-method-card h2 {
    font-size: 22px;
  }

  .payment-steps__grid {
    gap: 16px;
  }

  .payment-step {
    padding-left: 70px;
  }

  .payment-step:not(:last-child)::after {
    display: none;
  }
}

@media (max-width: 900px) {
  .payment-page {
    padding-top: 10px;
  }

  .payment-breadcrumbs {
    margin-bottom: 20px;
  }

  .payment-intro {
    grid-template-columns: 1fr;
  }

  .payment-intro__image {
    order: -1;
    min-height: 300px;
  }

  .payment-intro__image img {
    min-height: 300px;
  }

  .payment-intro h1 {
    margin-bottom: 26px;
  }

  .payment-points {
    gap: 22px;
  }

  .payment-methods {
    grid-template-columns: 1fr;
  }

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

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

@media (max-width: 620px) {
  .payment-breadcrumbs {
    gap: 12px;
    font-size: 13px;
    overflow-x: auto;
    white-space: nowrap;
  }

  .payment-intro {
    gap: 24px;
  }

  .payment-intro h1 {
    font-size: 44px;
  }

  .payment-point {
    grid-template-columns: 42px 1fr;
    gap: 16px;
  }

  .payment-point img {
    width: 38px;
    height: 38px;
  }

  .payment-point p {
    font-size: 15px;
  }

  .payment-intro__image {
    min-height: 240px;
  }

  .payment-intro__image img {
    min-height: 240px;
  }

  .payment-method-card {
    grid-template-columns: 48px 1fr;
    min-height: 114px;
    padding: 18px;
  }

  .payment-method-card img {
    width: 44px;
    height: 44px;
  }

  .payment-method-card h2 {
    font-size: 21px;
  }

  .no-delivery-banner {
    min-height: 150px;
  }

  .no-delivery-banner__content {
    min-height: 150px;
    align-items: flex-start;
    flex-direction: column;
    gap: 16px;
    padding: 22px;
  }

  .no-delivery-banner__icons img {
    width: 48px;
    height: 48px;
  }

  .no-delivery-banner__content h2 {
    font-size: 28px;
  }

  .no-delivery-banner__content p {
    font-size: 16px;
  }

  .payment-steps h2 {
    font-size: 30px;
  }

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

  .payment-step {
    min-height: 110px;
  }

  .payment-faq-card {
    padding: 16px;
    gap: 16px;
  }
}

/* About brand page */
.page--about .page-header__inner {
  min-height: 104px;
}

.about-page {
  padding: 22px 0 40px;
  background: var(--cream-2);
}

.about-breadcrumbs {
  display: flex;
  align-items: center;
  gap: 22px;
  margin: 0 0 28px;
  font-size: 14px;
  color: #3f3731;
}

.about-breadcrumbs span {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: currentColor;
  opacity: .75;
}

.about-breadcrumbs a[aria-current="page"] {
  font-weight: 700;
  color: var(--text);
}

.about-intro {
  display: grid;
  grid-template-columns: minmax(350px, 445px) minmax(0, 1fr);
  gap: 64px;
  align-items: start;
  margin-bottom: 26px;
}

.about-intro--text-only {
  grid-template-columns: minmax(0, 760px);
}

.about-intro__text h1 {
  margin: 0 0 30px;
  font-family: var(--serif);
  font-size: clamp(48px, 5.1vw, 66px);
  font-weight: 600;
  line-height: .95;
  letter-spacing: -.02em;
}

.about-intro__text p {
  margin: 0 0 20px;
  color: #403832;
  font-size: 15px;
  line-height: 1.7;
}

.about-intro__image {
  min-height: 318px;
  border-radius: 10px;
  overflow: hidden;
  background: #efe4d8;
  box-shadow: 0 14px 34px rgba(68, 47, 33, .06);
}

.about-intro__image img {
  width: 100%;
  height: 100%;
  min-height: 318px;
  object-fit: cover;
  object-position: center;
}

.about-values {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin: 0 0 30px;
  border: 1px solid rgba(166, 121, 77, .12);
  border-radius: 10px;
  background: rgba(255, 255, 255, .42);
  box-shadow: 0 14px 34px rgba(72, 51, 36, .035);
  overflow: hidden;
}

.about-value {
  position: relative;
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 20px;
  align-items: center;
  min-height: 90px;
  padding: 20px 28px;
}

.about-value:not(:last-child)::after {
  content: "";
  position: absolute;
  right: 0;
  top: 18px;
  bottom: 18px;
  width: 1px;
  background: rgba(166, 121, 77, .22);
}

.about-value img {
  width: 48px;
  height: 48px;
  filter: invert(47%) sepia(17%) saturate(960%) hue-rotate(346deg) brightness(91%) contrast(86%);
}

.about-value h2 {
  margin: 0 0 7px;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.1;
}

.about-value p {
  margin: 0;
  color: #4f463f;
  font-size: 12px;
  line-height: 1.45;
}

.about-philosophy {
  display: grid;
  grid-template-columns: minmax(280px, 330px) 1fr;
  gap: 48px;
  align-items: start;
  padding: 0 4px 28px;
}

.about-philosophy__text h2 {
  margin: 0 0 28px;
  font-family: var(--serif);
  font-size: 34px;
  font-weight: 600;
  line-height: 1;
}

.about-philosophy__text p {
  margin: 0 0 17px;
  color: #403832;
  font-size: 14px;
  line-height: 1.68;
}

.btn--brown {
  min-height: 42px;
  margin-top: 8px;
  padding: 0 25px;
  border-color: #5d351c;
  border-radius: 5px;
  background: linear-gradient(135deg, #6d421e 0%, #4d2b16 100%);
  color: var(--white);
  font-size: 11px;
  letter-spacing: .05em;
  box-shadow: 0 10px 20px rgba(91, 55, 28, .16);
}

.btn--brown:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 24px rgba(91, 55, 28, .22);
}

.about-philosophy__gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.about-philosophy__gallery img {
  width: 100%;
  height: 256px;
  object-fit: cover;
  object-position: center;
  border-radius: 8px;
  background: #eee2d6;
  box-shadow: 0 14px 32px rgba(50, 36, 26, .06);
}

.about-why {
  padding: 0 0 10px;
}

.about-why>h2 {
  margin: 0 0 22px;
  text-align: center;
  font-family: var(--serif);
  font-size: 34px;
  font-weight: 600;
  line-height: 1;
}

.about-why__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}

.about-why-card {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 16px;
  align-items: center;
  min-height: 80px;
  padding: 17px 20px;
  border: 1px solid rgba(166, 121, 77, .12);
  border-radius: 10px;
  background: rgba(255, 255, 255, .42);
  box-shadow: 0 12px 28px rgba(72, 51, 36, .03);
}

.about-why-card img {
  width: 45px;
  height: 45px;
  filter: invert(47%) sepia(17%) saturate(960%) hue-rotate(346deg) brightness(91%) contrast(86%);
}

.about-why-card h3 {
  margin: 0 0 6px;
  color: #3a302a;
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 600;
  line-height: 1.1;
}

.about-why-card p {
  margin: 0;
  color: #4f463f;
  font-size: 12px;
  line-height: 1.42;
}

.about-cta {
  position: relative;
  min-height: 126px;
  margin-top: 10px;
  border-radius: 9px;
  overflow: hidden;
  background: #ead8c4;
  isolation: isolate;
}

.about-cta>img {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 48%;
}

.about-cta::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(90deg, rgba(248, 239, 229, .98) 0%, rgba(248, 239, 229, .88) 39%, rgba(248, 239, 229, .35) 59%, rgba(248, 239, 229, .04) 100%);
}

.about-cta__content {
  position: relative;
  z-index: 3;
  min-height: 126px;
  display: grid;
  grid-template-columns: 82px 1fr;
  align-items: center;
  align-content: center;
  column-gap: 22px;
  width: min(560px, 62%);
  padding: 18px 30px;
}

.about-cta__content>img {
  width: 62px;
  height: 62px;
  filter: invert(47%) sepia(17%) saturate(960%) hue-rotate(346deg) brightness(91%) contrast(86%);
}

.about-cta__content h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: 31px;
  font-weight: 600;
  line-height: 1.05;
}

.btn--outline-brown {
  grid-column: 2;
  justify-self: start;
  min-height: 36px;
  margin-top: 12px;
  padding: 0 22px;
  border-color: #6f421f;
  border-radius: 5px;
  color: #6f421f;
  background: rgba(255, 255, 255, .28);
  font-size: 11px;
  letter-spacing: .04em;
}

.btn--outline-brown:hover {
  background: #6f421f;
  color: var(--white);
}

@media (max-width: 1180px) {
  .about-intro {
    grid-template-columns: minmax(310px, 390px) 1fr;
    gap: 34px;
  }

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

  .about-value:nth-child(2)::after {
    display: none;
  }

  .about-philosophy {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .about-philosophy__gallery img {
    height: 230px;
  }

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

@media (max-width: 900px) {
  .about-page {
    padding-top: 10px;
  }

  .about-breadcrumbs {
    margin-bottom: 20px;
  }

  .about-intro {
    grid-template-columns: 1fr;
  }

  .about-intro__image {
    order: -1;
    min-height: 300px;
  }

  .about-intro__image img {
    min-height: 300px;
  }

  .about-philosophy__gallery {
    grid-template-columns: 1fr 1fr;
  }

  .about-philosophy__gallery img:nth-child(3) {
    grid-column: 1 / -1;
  }

  .about-cta__content {
    width: 74%;
  }
}

@media (max-width: 620px) {
  .about-breadcrumbs {
    gap: 12px;
    font-size: 13px;
    overflow-x: auto;
    white-space: nowrap;
  }

  .about-intro__text h1 {
    font-size: 43px;
  }

  .about-values {
    grid-template-columns: 1fr;
  }

  .about-value {
    padding: 18px;
  }

  .about-value::after {
    display: none;
  }

  .about-philosophy__text h2,
  .about-why>h2 {
    font-size: 30px;
  }

  .about-philosophy__gallery {
    grid-template-columns: 1fr;
  }

  .about-philosophy__gallery img,
  .about-philosophy__gallery img:nth-child(3) {
    grid-column: auto;
    height: 260px;
  }

  .about-why__grid {
    grid-template-columns: 1fr;
  }

  .about-cta {
    min-height: 240px;
  }

  .about-cta__content {
    grid-template-columns: 1fr;
    width: 100%;
    min-height: 240px;
    gap: 14px;
    padding: 24px;
  }

  .about-cta__content h2 {
    font-size: 28px;
  }

  .btn--outline-brown {
    grid-column: auto;
  }
}


/* Contacts page */
.page--contacts .page-header__inner {
  min-height: 104px;
}

.contacts-page {
  padding: 20px 0 34px;
  background: var(--cream-2);
}

.contacts-breadcrumbs {
  display: flex;
  align-items: center;
  gap: 22px;
  margin: 0 0 28px;
  color: #3f3731;
  font-size: 14px;
}

.contacts-breadcrumbs span {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: currentColor;
  opacity: .75;
}

.contacts-breadcrumbs a[aria-current="page"] {
  color: var(--text);
  font-weight: 700;
}

.contacts-intro {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  align-items: stretch;
  margin-bottom: 36px;
}

.contacts-intro__text h1 {
  margin: 0 0 18px;
  font-family: var(--serif);
  font-size: clamp(52px, 5.4vw, 74px);
  font-weight: 600;
  line-height: .95;
  letter-spacing: -.025em;
}

.contacts-intro__lead {
  max-width: 680px;
  margin: 0 0 24px;
  color: #443a33;
  font-size: 16px;
  line-height: 1.65;
}

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

.contact-card {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 16px;
  align-items: center;
  min-height: 72px;
  padding: 16px 18px;
  border: 1px solid rgba(166, 121, 77, .12);
  border-radius: 9px;
  background: rgba(255, 255, 255, .44);
  box-shadow: 0 10px 25px rgba(72, 51, 36, .025);
}

.contact-card img {
  width: 38px;
  height: 38px;
  color: var(--gold);
  filter: invert(47%) sepia(17%) saturate(960%) hue-rotate(346deg) brightness(91%) contrast(86%);
}

.contact-card h2 {
  margin: 0 0 5px;
  color: #3a302a;
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 600;
  line-height: 1.1;
}

.contact-card p {
  margin: 0;
  color: #433a33;
  font-size: 12px;
  line-height: 1.45;
}

.contacts-intro__image {
  min-height: 370px;
  height: 100%;
  border-radius: 10px;
  overflow: hidden;
  background: #eee0d1;
  box-shadow: 0 14px 34px rgba(68, 47, 33, .06);
}

.contacts-intro__image img {
  width: 100%;
  height: 100%;
  min-height: 370px;
  object-fit: cover;
  object-position: center;
}

.contact-gallery {
  position: relative;
  height: 100%;
  min-height: 370px;
  border-radius: 10px;
  overflow: hidden;
  background: #eadfd4;
}

.contact-gallery__slides {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: inherit;
}

.contact-gallery__slide {
  position: absolute;
  inset: 0;
  margin: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity .4s ease, visibility .4s ease;
}

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

.contact-gallery__slide img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  object-position: center;
  display: block;
}

.contact-gallery__nav {
  position: absolute;
  top: 50%;
  z-index: 2;
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(20, 16, 13, .58);
  color: #fff;
  font-family: var(--serif);
  font-size: 34px;
  line-height: 1;
  transform: translateY(-50%);
  backdrop-filter: blur(6px);
  transition: background .2s ease, transform .2s ease;
}

.contact-gallery__nav:hover {
  background: rgba(166, 121, 77, .92);
  transform: translateY(-50%) scale(1.04);
}

.contact-gallery__nav--prev {
  left: 16px;
}

.contact-gallery__nav--next {
  right: 16px;
}

.contact-gallery__dots {
  position: absolute;
  left: 50%;
  bottom: 16px;
  z-index: 2;
  display: flex;
  gap: 10px;
  transform: translateX(-50%);
}

.contact-gallery__dots button {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .58);
  box-shadow: 0 1px 4px rgba(0, 0, 0, .15);
  transition: transform .2s ease, background .2s ease;
}

.contact-gallery__dots button.is-active {
  background: var(--gold);
  transform: scale(1.2);
}

.contacts-help {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin: 22px 0 18px;
}

.contacts-help-card {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 22px;
  align-items: center;
  min-height: 92px;
  padding: 20px 26px;
  border: 1px solid rgba(166, 121, 77, .12);
  border-radius: 10px;
  background: rgba(255, 255, 255, .42);
  box-shadow: 0 12px 26px rgba(72, 51, 36, .025);
}

.contacts-help-card img {
  width: 48px;
  height: 48px;
  filter: invert(47%) sepia(17%) saturate(960%) hue-rotate(346deg) brightness(91%) contrast(86%);
}

.contacts-help-card h2 {
  margin: 0 0 7px;
  color: #3a302a;
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 600;
  line-height: 1.08;
}

.contacts-help-card p {
  margin: 0;
  color: #4f463f;
  font-size: 12px;
  line-height: 1.45;
}

.contacts-map-section {
  margin-top: 16px;
}

.contacts-section-title {
  margin: 0 0 12px;
  font-family: var(--serif);
  font-size: 32px;
  font-weight: 600;
  line-height: 1;
}

.contacts-map-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(330px, .95fr);
  gap: 22px;
}

.contacts-map {
  min-height: 205px;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid rgba(166, 121, 77, .12);
  background: #eadfd4;
}

.contacts-map img {
  width: 100%;
  height: 100%;
  min-height: 205px;
  object-fit: cover;
  object-position: center;
}

.contacts-route {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 15px;
  min-height: 205px;
  padding: 24px 34px;
  border: 1px solid rgba(166, 121, 77, .12);
  border-radius: 10px;
  background: rgba(255, 255, 255, .42);
}

.contacts-route__item {
  display: grid;
  grid-template-columns: 32px 1fr;
  gap: 14px;
  align-items: center;
  color: #403832;
  font-size: 14px;
  line-height: 1.45;
}

.contacts-route__item img {
  width: 26px;
  height: 26px;
  filter: invert(47%) sepia(17%) saturate(960%) hue-rotate(346deg) brightness(91%) contrast(86%);
}

.contacts-route__item strong {
  font-weight: 700;
}

.contacts-route .btn--brown {
  align-self: center;
  min-width: 295px;
  min-height: 42px;
  margin-top: 4px;
}

.contacts-bottom {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, .92fr);
  gap: 34px;
  align-items: start;
  margin-top: 24px;
}

.contacts-faq h2,
.contacts-form h2 {
  margin: 0 0 16px;
  font-family: var(--serif);
  font-size: 32px;
  font-weight: 600;
  line-height: 1;
}

.contacts-faq__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px 14px;
}

.contacts-faq-card {
  display: grid;
  grid-template-columns: 50px 1fr;
  gap: 16px;
  align-items: start;
  min-height: 84px;
  padding: 16px 17px;
  border: 1px solid rgba(166, 121, 77, .12);
  border-radius: 9px;
  background: rgba(255, 255, 255, .42);
}

.contacts-faq-card img {
  width: 40px;
  height: 40px;
  filter: invert(47%) sepia(17%) saturate(960%) hue-rotate(346deg) brightness(91%) contrast(86%);
}

.contacts-faq-card h3 {
  margin: 0 0 6px;
  color: #3a302a;
  font-family: var(--serif);
  font-size: 17px;
  font-weight: 600;
  line-height: 1.1;
}

.contacts-faq-card p {
  margin: 0;
  color: #4f463f;
  font-size: 11px;
  line-height: 1.42;
}

.contacts-form {
  padding-left: 30px;
  border-left: 1px solid rgba(166, 121, 77, .14);
}

.contacts-form p {
  margin: -8px 0 12px;
  color: #443a33;
  font-size: 13px;
  line-height: 1.35;
}

.contacts-form__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

.contacts-form input,
.contacts-form textarea {
  width: 100%;
  min-height: 37px;
  padding: 0 14px;
  border: 1px solid rgba(80, 62, 50, .13);
  border-radius: 6px;
  background: rgba(255, 255, 255, .55);
  color: var(--text);
  font: 12px var(--sans);
  outline: none;
  transition: border-color .2s ease, box-shadow .2s ease;
}

.contacts-form input:focus,
.contacts-form textarea:focus {
  border-color: rgba(166, 121, 77, .55);
  box-shadow: 0 0 0 3px rgba(166, 121, 77, .09);
}

.contacts-form textarea {
  grid-column: 1 / -1;
  min-height: 66px;
  padding-top: 12px;
  resize: vertical;
}

.contacts-form__agree {
  grid-column: 1 / 2;
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 2px;
  color: #4f463f;
  font-size: 11px;
  line-height: 1.3;
}

.contacts-form__agree input {
  width: 14px;
  min-height: 14px;
  height: 14px;
  padding: 0;
  accent-color: var(--gold);
}

.contacts-form__agree a {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.contacts-form__grid .btn--brown {
  grid-column: 2;
  justify-self: end;
  width: 100%;
  max-width: 270px;
  min-height: 38px;
  margin-top: 0;
}

@media (max-width: 1180px) {
  .contacts-intro {
    grid-template-columns: 1fr;
  }

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

  .contacts-help-card {
    padding: 18px;
    gap: 16px;
  }

  .contacts-bottom {
    grid-template-columns: 1fr;
  }

  .contacts-form {
    padding-left: 0;
    border-left: 0;
  }
}

@media (max-width: 900px) {
  .contacts-page {
    padding-top: 10px;
  }

  .contacts-breadcrumbs {
    margin-bottom: 20px;
  }

  .contacts-intro {
    grid-template-columns: 1fr;
  }

  .contacts-intro__image {
    order: -1;
    min-height: 300px;
  }

  .contacts-intro__image img,
  .contact-gallery {
    min-height: 300px;
  }

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

  .contacts-help {
    grid-template-columns: 1fr;
  }

  .contacts-map-grid {
    grid-template-columns: 1fr;
  }

  .contacts-route .btn--brown {
    align-self: stretch;
    min-width: 0;
  }
}

@media (max-width: 620px) {
  .contacts-breadcrumbs {
    gap: 12px;
    font-size: 13px;
    overflow-x: auto;
    white-space: nowrap;
  }

  .contacts-intro__text h1 {
    font-size: 46px;
  }

  .contacts-quick,
  .contacts-faq__grid,
  .contacts-form__grid {
    grid-template-columns: 1fr;
  }

  .contacts-intro__image {
    min-height: 250px;
  }

  .contacts-intro__image img,
  .contact-gallery {
    min-height: 250px;
  }

  .contact-gallery__nav {
    width: 38px;
    height: 38px;
    font-size: 28px;
  }

  .contact-gallery__nav--prev {
    left: 10px;
  }

  .contact-gallery__nav--next {
    right: 10px;
  }

  .contacts-section-title,
  .contacts-faq h2,
  .contacts-form h2 {
    font-size: 29px;
  }

  .contacts-route {
    padding: 22px;
  }

  .contacts-form__agree,
  .contacts-form__grid .btn--brown {
    grid-column: auto;
    max-width: none;
  }
}


/* Cart page */
.page--cart .page-header__inner {
  min-height: 104px;
}

.cart-page {
  padding: 20px 0 56px;
  background: var(--cream-2);
}

.cart-page h1 {
  margin: 0 0 42px;
  font-family: var(--serif);
  font-size: clamp(54px, 5.2vw, 76px);
  font-weight: 600;
  line-height: .92;
  letter-spacing: -.02em;
  text-transform: uppercase;
}

.cart-table {
  width: 100%;
}

.cart-table__head,
.cart-row {
  display: grid;
  grid-template-columns: minmax(340px, 1.9fr) minmax(120px, .65fr) minmax(140px, .7fr) minmax(120px, .65fr) 34px;
  align-items: center;
  column-gap: 26px;
}

.cart-table__head {
  padding: 0 0 18px;
  border-bottom: 1px solid var(--line);
  color: #2f2722;
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .03em;
}

.cart-row {
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}

.cart-row__product {
  display: grid;
  grid-template-columns: 134px 1fr;
  align-items: center;
  gap: 22px;
}

.cart-row__product img {
  width: 134px;
  height: 108px;
  border-radius: 8px;
  object-fit: cover;
  background: #f5eadf;
}

.cart-row__title {
  margin: 0 0 8px;
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 600;
  line-height: 1.1;
}

.cart-row__meta {
  margin: 0;
  color: #4e443d;
  font-size: 16px;
  line-height: 1.45;
}

.cart-row__price,
.cart-row__sum {
  color: #2d251f;
  font-size: 21px;
  font-weight: 500;
}

.cart-row .qty {
  width: 122px;
  height: 50px;
  grid-template-columns: 40px 42px 40px;
}

.cart-row .qty button,
.cart-row .qty span {
  width: 40px;
  height: 50px;
  font-size: 24px;
}

.cart-row .qty span {
  width: 42px;
  font-size: 20px;
}

.cart-row__remove {
  color: var(--gold);
  font-size: 36px;
  line-height: 1;
  opacity: .85;
  transition: opacity .2s ease, transform .2s ease;
}

.cart-row__remove:hover {
  opacity: 1;
  transform: scale(1.08);
}

.cart-bottom {
  display: grid;
  grid-template-columns: minmax(320px, 1fr) minmax(340px, 470px);
  gap: 80px;
  align-items: start;
  margin-top: 56px;
}

.cart-tools {
  display: flex;
  flex-direction: column;
  gap: 34px;
}

.promo-form {
  display: flex;
  align-items: center;
  gap: 14px;
}

.promo-form input {
  flex: 0 1 290px;
  height: 58px;
  padding: 0 22px;
  border: 1px solid rgba(80, 62, 50, .18);
  border-radius: 6px;
  background: rgba(255, 255, 255, .62);
  color: var(--text);
  font: 17px var(--sans);
  outline: none;
  transition: border-color .2s ease, box-shadow .2s ease;
}

.promo-form input:focus {
  border-color: rgba(166, 121, 77, .55);
  box-shadow: 0 0 0 3px rgba(166, 121, 77, .09);
}

.promo-form .btn--brown {
  min-width: 150px;
  min-height: 58px;
  margin-top: 0;
  font-size: 14px;
}

.cart-tools .btn--outline {
  width: fit-content;
  min-width: 290px;
  min-height: 58px;
  border: 1px solid rgba(93, 53, 28, .5);
  border-radius: 6px;
  color: #6a4324;
  font-size: 15px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .03em;
  transition: all .2s ease;
}

.cart-tools .btn--outline:hover {
  background: #6a4324;
  color: var(--white);
}

.order-summary {
  padding-top: 2px;
}

.order-summary h2 {
  margin: 0 0 26px;
  font-family: var(--serif);
  font-size: 40px;
  font-weight: 600;
  line-height: .95;
  text-transform: uppercase;
  letter-spacing: -.01em;
}

.order-summary__rows {
  display: grid;
  gap: 18px;
  margin-bottom: 22px;
}

.order-summary__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  color: #403832;
  font-size: 17px;
  line-height: 1.35;
}

.order-summary__row span:last-child {
  font-weight: 500;
  color: #2c241e;
}

.order-summary__row--muted span:last-child {
  color: #8e6139;
}

.order-summary__total {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
  padding-top: 26px;
  border-top: 1px solid var(--line);
}

.order-summary__total strong {
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 600;
  line-height: 1;
  text-transform: uppercase;
}

.order-summary__total span {
  color: #2d251f;
  font-size: 56px;
  font-weight: 700;
  line-height: .9;
}

.order-summary .btn--brown {
  width: 100%;
  min-height: 68px;
  margin-top: 36px;
  font-size: 16px;
  letter-spacing: .04em;
}

@media (max-width: 1180px) {

  .cart-table__head,
  .cart-row {
    grid-template-columns: minmax(280px, 1.6fr) 110px 132px 110px 26px;
    column-gap: 18px;
  }

  .cart-row__product {
    grid-template-columns: 112px 1fr;
    gap: 18px;
  }

  .cart-row__product img {
    width: 112px;
    height: 92px;
  }

  .cart-bottom {
    gap: 38px;
  }

  .order-summary__total span {
    font-size: 46px;
  }
}

@media (max-width: 900px) {
  .cart-page {
    padding-top: 10px;
  }

  .cart-page h1 {
    margin-bottom: 28px;
  }

  .cart-table__head {
    display: none;
  }

  .cart-table {
    display: flex;
    flex-direction: column;
    gap: 18px;
  }

  .cart-row {
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 20px;
    border: 1px solid rgba(166, 121, 77, .14);
    border-radius: 12px;
    background: rgba(255, 255, 255, .46);
  }

  .cart-row__price::before {
    content: 'Цена: ';
    font-size: 15px;
    color: #665950;
  }

  .cart-row__sum::before {
    content: 'Сумма: ';
    font-size: 15px;
    color: #665950;
  }

  .cart-row__remove {
    justify-self: end;
    margin-top: -10px;
  }

  .cart-bottom {
    grid-template-columns: 1fr;
    margin-top: 34px;
  }

  .order-summary {
    padding: 28px;
    border: 1px solid rgba(166, 121, 77, .14);
    border-radius: 12px;
    background: rgba(255, 255, 255, .46);
  }
}

@media (max-width: 620px) {
  .cart-page h1 {
    font-size: 44px;
  }

  .cart-row {
    padding: 16px;
  }

  .cart-row__product {
    grid-template-columns: 86px 1fr;
    gap: 14px;
  }

  .cart-row__product img {
    width: 86px;
    height: 76px;
  }

  .cart-row__title {
    font-size: 19px;
  }

  .cart-row__meta,
  .cart-row__price,
  .cart-row__sum {
    font-size: 16px;
  }

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

  .promo-form input,
  .promo-form .btn--brown {
    width: 100%;
    flex-basis: auto;
  }

  .cart-tools .btn--outline {
    width: 100%;
    min-width: 0;
  }

  .order-summary {
    padding: 22px 18px;
  }

  .order-summary h2 {
    font-size: 32px;
  }

  .order-summary__total span {
    font-size: 38px;
  }
}


/* Mobile menu */
body.menu-open {
  overflow: hidden;
}

.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  justify-content: center;
  padding: 0;
  pointer-events: none;
  opacity: 0;
  transition: opacity .25s ease;
}

.mobile-menu.is-open {
  pointer-events: auto;
  opacity: 1;
}

.mobile-menu__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, .84);
  backdrop-filter: blur(5px);
}

.mobile-menu__panel {
  position: relative;
  width: min(860px, calc(100% - 32px));
  max-height: calc(100dvh - 24px);
  margin: 12px auto;
  overflow: hidden auto;
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 22px;
  background: radial-gradient(circle at 78% 12%, rgba(151, 104, 61, .16), transparent 32%), linear-gradient(145deg, rgba(37, 34, 30, .98), rgba(18, 18, 16, .985));
  color: rgba(255, 255, 255, .94);
  box-shadow: 0 36px 90px rgba(0, 0, 0, .58);
  transform: translateY(18px) scale(.985);
  transition: transform .25s ease;
}

.mobile-menu.is-open .mobile-menu__panel {
  transform: translateY(0) scale(1);
}

.mobile-menu__top {
  position: sticky;
  top: 0;
  z-index: 2;
  min-height: 118px;
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  gap: 28px;
  padding: 22px 40px;
  border-bottom: 1px solid rgba(255, 255, 255, .10);
  background: rgba(24, 22, 19, .92);
  backdrop-filter: blur(8px);
}

.mobile-menu__logo {
  display: grid;
  grid-template-columns: 76px 1fr;
  align-items: center;
  gap: 22px;
  color: var(--white);
  text-transform: uppercase;
}

.mobile-menu__logo img {
  width: 76px;
  height: 62px;
  filter: brightness(0) invert(1) sepia(.15) saturate(1.2);
}

.mobile-menu__brand-title {
  display: block;
  font-family: var(--serif);
  font-size: 34px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: .15em;
}

.mobile-menu__brand-subtitle {
  display: block;
  margin-top: 9px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .42em;
  color: rgba(255, 255, 255, .8);
}

.mobile-menu__cart {
  position: relative;
  width: 54px;
  height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
}

.mobile-menu__cart img {
  width: 36px;
  height: 36px;
  filter: brightness(0) invert(1);
}

.mobile-menu__cart span {
  position: absolute;
  top: 5px;
  right: 0;
  width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: linear-gradient(135deg, #b27b43, #72431d);
  color: var(--white);
  font-size: 18px;
  font-weight: 700;
  box-shadow: 0 8px 18px rgba(0, 0, 0, .28);
}

.mobile-menu__close {
  position: relative;
  width: 64px;
  height: 64px;
  border-left: 1px solid rgba(255, 255, 255, .08);
  color: var(--white);
}

.mobile-menu__close::before,
.mobile-menu__close::after {
  content: "";
  position: absolute;
  left: 16px;
  top: 31px;
  width: 38px;
  height: 3px;
  border-radius: 3px;
  background: currentColor;
}

.mobile-menu__close::before {
  transform: rotate(45deg);
}

.mobile-menu__close::after {
  transform: rotate(-45deg);
}

.mobile-menu__body {
  padding: 42px 42px 0;
}

.mobile-menu__group {
  padding-bottom: 28px;
  margin-bottom: 28px;
  border-bottom: 1px solid rgba(255, 255, 255, .10);
}

.mobile-menu__group-title {
  width: 100%;
  display: grid;
  grid-template-columns: 42px 1fr auto;
  align-items: center;
  gap: 20px;
  color: var(--gold-light);
  text-align: left;
  font-family: var(--serif);
  font-size: 33px;
  font-weight: 600;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: .09em;
}

.mobile-menu__group-title img {
  width: 34px;
  height: 34px;
  filter: invert(61%) sepia(31%) saturate(697%) hue-rotate(346deg) brightness(89%) contrast(88%);
}

.mobile-menu__group-title span {
  color: var(--gold-light);
  font-family: var(--sans);
  font-size: 28px;
  line-height: 1;
}

.mobile-menu__list {
  display: grid;
  margin: 22px 0 0 62px;
}

.mobile-menu__list a,
.mobile-menu__main-link {
  position: relative;
  min-height: 62px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(255, 255, 255, .10);
  color: rgba(255, 255, 255, .95);
  font-family: var(--serif);
  font-size: 33px;
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: .01em;
  text-shadow: 0 4px 14px rgba(0, 0, 0, .34);
  transition: color .2s ease, padding-left .2s ease;
}

.mobile-menu__list a::after,
.mobile-menu__main-link::after {
  content: "›";
  color: var(--white);
  font-family: var(--sans);
  font-size: 42px;
  font-weight: 300;
  line-height: 1;
}

.mobile-menu__list a:hover,
.mobile-menu__main-link:hover {
  color: var(--gold-light);
  padding-left: 8px;
}

.mobile-menu__links {
  display: grid;
  gap: 0;
  margin-top: 8px;
}

.mobile-menu__main-link {
  min-height: 82px;
  text-transform: uppercase;
  letter-spacing: .04em;
}

.mobile-menu__contacts {
  display: grid;
  gap: 22px;
  padding: 34px 42px 30px;
  border-top: 1px solid rgba(255, 255, 255, .10);
}

.mobile-menu__contact {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 20px;
  align-items: start;
  color: rgba(255, 255, 255, .92);
  font-family: var(--serif);
  font-size: 28px;
  line-height: 1.25;
}

.mobile-menu__contact img {
  width: 30px;
  height: 30px;
  margin-top: 2px;
  filter: invert(61%) sepia(31%) saturate(697%) hue-rotate(346deg) brightness(89%) contrast(88%);
}

.mobile-menu__socials {
  display: flex;
  align-items: center;
  gap: 28px;
  padding-top: 10px;
}

.mobile-menu__socials a {
  width: 58px;
  height: 58px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, .62);
  border-radius: 12px;
  color: var(--white);
  transition: border-color .2s ease, color .2s ease, transform .2s ease;
}

.mobile-menu__socials a img {
  width: 24px;
  height: 24px;
  display: block;
}

.mobile-menu__socials a:hover {
  color: var(--gold-light);
  border-color: var(--gold-light);
  transform: translateY(-2px);
}

.mobile-menu__badges {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px 28px;
  padding: 24px 42px 32px;
  border-top: 1px solid rgba(255, 255, 255, .10);
  color: #e9dfd5;
}

.mobile-menu__badge {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-family: var(--serif);
  font-size: 24px;
  line-height: 1.2;
}

.mobile-menu__badge img {
  width: 30px;
  height: 30px;
  filter: invert(61%) sepia(31%) saturate(697%) hue-rotate(346deg) brightness(89%) contrast(88%);
}

.mobile-menu__divider {
  width: 1px;
  height: 28px;
  background: rgba(255, 255, 255, .28);
}

@media (min-width: 901px) {
  .mobile-menu {
    display: none;
  }
}

@media (max-width: 620px) {
  .mobile-menu__panel {
    width: min(calc(100% - 18px), 560px);
    max-height: calc(100dvh - 12px);
    margin: 6px auto;
    border-radius: 18px;
  }

  .mobile-menu__top {
    min-height: 88px;
    grid-template-columns: 1fr auto auto;
    gap: 12px;
    padding: 16px 20px;
  }

  .mobile-menu__logo {
    grid-template-columns: 48px 1fr;
    gap: 13px;
  }

  .mobile-menu__logo img {
    width: 48px;
    height: 42px;
  }

  .mobile-menu__brand-title {
    font-size: 23px;
    letter-spacing: .13em;
  }

  .mobile-menu__brand-subtitle {
    margin-top: 6px;
    font-size: 8px;
    letter-spacing: .33em;
  }

  .mobile-menu__cart {
    width: 42px;
    height: 42px;
  }

  .mobile-menu__cart img {
    width: 30px;
    height: 30px;
  }

  .mobile-menu__cart span {
    width: 26px;
    height: 26px;
    font-size: 14px;
  }

  .mobile-menu__close {
    width: 45px;
    height: 45px;
  }

  .mobile-menu__close::before,
  .mobile-menu__close::after {
    left: 10px;
    top: 22px;
    width: 28px;
    height: 2px;
  }

  .mobile-menu__body {
    padding: 28px 24px 0;
  }

  .mobile-menu__group {
    padding-bottom: 22px;
    margin-bottom: 24px;
  }

  .mobile-menu__group-title {
    grid-template-columns: 30px 1fr auto;
    gap: 14px;
    font-size: 25px;
    letter-spacing: .08em;
  }

  .mobile-menu__group-title img {
    width: 26px;
    height: 26px;
  }

  .mobile-menu__group-title span {
    font-size: 22px;
  }

  .mobile-menu__list {
    margin-left: 45px;
  }

  .mobile-menu__list a,
  .mobile-menu__main-link {
    min-height: 50px;
    font-size: 27px;
  }

  .mobile-menu__list a::after,
  .mobile-menu__main-link::after {
    font-size: 33px;
  }

  .mobile-menu__main-link {
    min-height: 65px;
  }

  .mobile-menu__contacts {
    gap: 18px;
    padding: 26px 24px 22px;
  }

  .mobile-menu__contact {
    grid-template-columns: 32px 1fr;
    gap: 14px;
    font-size: 23px;
  }

  .mobile-menu__contact img {
    width: 24px;
    height: 24px;
  }

  .mobile-menu__socials {
    gap: 18px;
  }

  .mobile-menu__socials a {
    width: 47px;
    height: 47px;
    border-radius: 10px;
  }

  .mobile-menu__socials a img {
    width: 21px;
    height: 21px;
  }

  .mobile-menu__badges {
    padding: 20px 24px 24px;
    gap: 14px 18px;
  }

  .mobile-menu__badge {
    font-size: 18px;
    gap: 10px;
  }

  .mobile-menu__badge img {
    width: 24px;
    height: 24px;
  }

  .mobile-menu__divider {
    display: none;
  }
}


/* Mobile search */
.mobile-search {
  position: fixed;
  inset: 0;
  z-index: 1001;
  display: flex;
  justify-content: center;
  padding: 0;
  pointer-events: none;
  opacity: 0;
  transition: opacity .25s ease;
}

.mobile-search.is-open {
  pointer-events: auto;
  opacity: 1;
}

.mobile-search__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, .84);
  backdrop-filter: blur(5px);
}

.mobile-search__panel {
  position: relative;
  width: min(860px, calc(100% - 32px));
  max-height: calc(100dvh - 24px);
  margin: 12px auto;
  overflow: hidden auto;
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 34px;
  background: radial-gradient(circle at 82% 10%, rgba(151, 104, 61, .18), transparent 34%), linear-gradient(145deg, rgba(37, 34, 30, .98), rgba(18, 18, 16, .985));
  color: rgba(255, 255, 255, .94);
  box-shadow: 0 36px 90px rgba(0, 0, 0, .58);
  transform: translateY(18px) scale(.985);
  transition: transform .25s ease;
}

.mobile-search.is-open .mobile-search__panel {
  transform: translateY(0) scale(1);
}

.mobile-search__top {
  min-height: 146px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 26px 42px 12px;
}

.mobile-search__logo {
  display: grid;
  grid-template-columns: 88px 1fr;
  align-items: center;
  gap: 22px;
  color: var(--white);
  text-transform: uppercase;
}

.mobile-search__logo img {
  width: 88px;
  height: 70px;
  filter: brightness(0) invert(1) sepia(.15) saturate(1.2);
}

.mobile-search__brand-title {
  display: block;
  font-family: var(--serif);
  font-size: 40px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: .16em;
}

.mobile-search__brand-subtitle {
  display: block;
  margin-top: 10px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .42em;
  color: rgba(255, 255, 255, .8);
}

.mobile-search__cart {
  position: relative;
  width: 56px;
  height: 56px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  flex-shrink: 0;
}

.mobile-search__cart img {
  width: 38px;
  height: 38px;
  filter: brightness(0) invert(1);
}

.mobile-search__cart span {
  position: absolute;
  top: 3px;
  right: -2px;
  width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: linear-gradient(135deg, #b27b43, #72431d);
  color: var(--white);
  font-size: 18px;
  font-weight: 700;
  box-shadow: 0 8px 18px rgba(0, 0, 0, .28);
}

.mobile-search__body {
  padding: 0 42px 34px;
}

.mobile-search__field {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 118px;
  padding: 0 34px 0 116px;
  border: 2px solid rgba(195, 134, 74, .9);
  border-radius: 34px;
  color: rgba(255, 255, 255, .66);
  font-family: var(--serif);
  font-size: 34px;
  line-height: 1.1;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .03);
}

.mobile-search__field img {
  position: absolute;
  left: 34px;
  top: 50%;
  width: 54px;
  height: 54px;
  transform: translateY(-50%);
  filter: brightness(0) invert(1);
  opacity: .9;
}

.mobile-search__field input {
  width: 100%;
  height: 100%;
  border: 0;
  background: transparent;
  color: var(--white);
  font: inherit;
  outline: none;
}

.mobile-search__field input::placeholder {
  color: rgba(255, 255, 255, .52);
}

.mobile-search__section {
  margin-top: 58px;
}

.mobile-search__section-title {
  display: grid;
  grid-template-columns: 42px 1fr;
  align-items: center;
  gap: 20px;
  color: var(--gold-light);
  font-family: var(--serif);
  font-size: 34px;
  font-weight: 600;
  letter-spacing: .09em;
  text-transform: uppercase;
}

.mobile-search__section-title img {
  width: 34px;
  height: 34px;
  filter: invert(61%) sepia(31%) saturate(697%) hue-rotate(346deg) brightness(89%) contrast(88%);
}

.mobile-search__list {
  margin: 34px 0 0;
}

.mobile-search__list a {
  min-height: 108px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(195, 134, 74, .34);
  color: var(--white);
  font-family: var(--serif);
  font-size: 34px;
  font-weight: 500;
  line-height: 1.1;
  text-shadow: 0 4px 14px rgba(0, 0, 0, .34);
  transition: color .2s ease, padding-left .2s ease;
}

.mobile-search__list a::after {
  content: "›";
  color: var(--white);
  font-family: var(--sans);
  font-size: 52px;
  font-weight: 300;
  line-height: 1;
}

.mobile-search__list a:hover {
  color: var(--gold-light);
  padding-left: 8px;
}

@media (min-width: 901px) {
  .mobile-search {
    display: none;
  }
}

@media (max-width: 900px) {
  .mobile-search__panel {
    width: min(calc(100% - 18px), 560px);
    max-height: calc(100dvh - 12px);
    margin: 6px auto;
    border-radius: 24px;
  }

  .mobile-search__top {
    min-height: 106px;
    padding: 18px 24px 10px;
  }

  .mobile-search__logo {
    grid-template-columns: 56px 1fr;
    gap: 16px;
  }

  .mobile-search__logo img {
    width: 56px;
    height: 46px;
  }

  .mobile-search__brand-title {
    font-size: 26px;
    letter-spacing: .14em;
  }

  .mobile-search__brand-subtitle {
    margin-top: 7px;
    font-size: 9px;
    letter-spacing: .33em;
  }

  .mobile-search__cart {
    width: 42px;
    height: 42px;
  }

  .mobile-search__cart img {
    width: 30px;
    height: 30px;
  }

  .mobile-search__cart span {
    width: 26px;
    height: 26px;
    font-size: 14px;
  }

  .mobile-search__body {
    padding: 0 24px 26px;
  }

  .mobile-search__field {
    min-height: 92px;
    padding: 0 22px 0 78px;
    border-radius: 26px;
    font-size: 24px;
  }

  .mobile-search__field img {
    left: 24px;
    width: 36px;
    height: 36px;
  }

  .mobile-search__section {
    margin-top: 38px;
  }

  .mobile-search__section-title {
    grid-template-columns: 30px 1fr;
    gap: 14px;
    font-size: 25px;
    letter-spacing: .08em;
  }

  .mobile-search__section-title img {
    width: 26px;
    height: 26px;
  }

  .mobile-search__list {
    margin-top: 22px;
  }

  .mobile-search__list a {
    min-height: 76px;
    font-size: 27px;
  }

  .mobile-search__list a::after {
    font-size: 38px;
  }
}

/* Updated legal footer and policy page */
.footer__legal {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(320px, .9fr);
  gap: 32px;
  align-items: center;
  padding: 0 0 34px;
}

.footer__legal-text {
  padding: 22px 26px;
  border: 1px solid rgba(166, 121, 77, .14);
  border-radius: 12px;
  background: rgba(255, 255, 255, .42);
  color: #5c5049;
}

.footer__legal-text strong {
  display: block;
  margin-bottom: 8px;
  color: #3a302a;
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 600;
}

.footer__legal-text p {
  margin: 0 0 8px;
  font-size: 12px;
  line-height: 1.55;
}

.footer__legal-text p:last-child {
  margin-bottom: 0;
}

.footer__payment {
  display: block;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 12px 28px rgba(72, 51, 36, .05);
}

.footer__payment img {
  width: 100%;
  height: auto;
}

.footer-contacts a {
  color: inherit;
}

.policy-page {
  padding: 22px 0 56px;
  background: var(--cream-2);
}

.policy-breadcrumbs {
  display: flex;
  align-items: center;
  gap: 22px;
  margin: 0 0 28px;
  color: #3f3731;
  font-size: 14px;
}

.policy-breadcrumbs span {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: currentColor;
  opacity: .75;
}

.policy-breadcrumbs a[aria-current="page"] {
  color: var(--text);
  font-weight: 700;
}

.policy-hero {
  max-width: 850px;
  margin-bottom: 32px;
}

.policy-hero h1 {
  margin: 0 0 18px;
  font-family: var(--serif);
  font-size: clamp(46px, 5vw, 70px);
  font-weight: 600;
  line-height: .95;
  letter-spacing: -.02em;
}

.policy-hero p {
  margin: 0;
  color: #443a33;
  font-size: 17px;
  line-height: 1.6;
}

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

.policy-card {
  padding: 28px 30px;
  border: 1px solid rgba(166, 121, 77, .14);
  border-radius: 12px;
  background: rgba(255, 255, 255, .42);
  box-shadow: 0 12px 26px rgba(72, 51, 36, .025);
}

.policy-card--wide {
  grid-column: 1 / -1;
}

.policy-card h2 {
  margin: 0 0 12px;
  font-family: var(--serif);
  font-size: 30px;
  font-weight: 600;
  line-height: 1;
}

.policy-card p {
  margin: 0 0 10px;
  color: #4f463f;
  font-size: 15px;
  line-height: 1.65;
}

.policy-card p:last-child {
  margin-bottom: 0;
}

.policy-card a {
  color: #6f421f;
  text-decoration: underline;
  text-underline-offset: 3px;
}

@media (max-width: 1180px) {
  .footer__legal {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 900px) {
  .policy-page {
    padding-top: 10px;
  }

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

@media (max-width: 620px) {
  .footer__legal-text {
    padding: 18px;
  }

  .policy-breadcrumbs {
    gap: 12px;
    font-size: 13px;
    overflow-x: auto;
    white-space: nowrap;
  }

  .policy-card {
    padding: 22px 18px;
  }

  .policy-card h2 {
    font-size: 26px;
  }
}


/* Events page */
.page--events .page-header__inner {
  min-height: 104px;
}

.events-page {
  padding: 22px 0 38px;
  background: var(--cream-2);
}

.events-breadcrumbs {
  display: flex;
  align-items: center;
  gap: 22px;
  margin: 0 0 28px;
  color: #3f3731;
  font-size: 14px;
}

.events-breadcrumbs span {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: currentColor;
  opacity: .75;
}

.events-breadcrumbs a[aria-current="page"] {
  color: var(--text);
  font-weight: 700;
}

.events-hero {
  margin-bottom: 42px;
}

.events-hero h1 {
  margin: 0 0 20px;
  color: #302a25;
  font-family: var(--serif);
  font-size: clamp(58px, 5.8vw, 82px);
  font-weight: 600;
  line-height: .92;
  letter-spacing: -.025em;
}

.events-hero p {
  margin: 0;
  max-width: 520px;
  color: #4b423b;
  font-size: 17px;
  line-height: 1.45;
}

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

.event-card {
  position: relative;
  min-height: 374px;
  overflow: hidden;
  border-radius: 10px;
  background: #f2e3d4;
  box-shadow: 0 18px 44px rgba(61, 42, 30, .07);
  isolation: isolate;
}

.event-card--wide {
  grid-column: 1 / -1;
  min-height: 395px;
}

.event-card__bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: right center;
}

.event-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
}

.event-card--dark {
  color: var(--white);
  background: #12100e;
}

.event-card--dark::after {
  background: linear-gradient(90deg, rgba(7, 7, 6, .96) 0%, rgba(9, 8, 7, .86) 38%, rgba(9, 8, 7, .35) 67%, rgba(9, 8, 7, .08) 100%);
}

.event-card--light {
  color: #3a2d25;
}

.event-card--light::after {
  background: linear-gradient(90deg, rgba(247, 231, 216, .97) 0%, rgba(247, 231, 216, .86) 44%, rgba(247, 231, 216, .20) 68%, rgba(247, 231, 216, 0) 100%);
}

.event-card--mehendi::after {
  background: linear-gradient(90deg, rgba(18, 13, 10, .96) 0%, rgba(18, 13, 10, .82) 46%, rgba(18, 13, 10, .28) 72%, rgba(18, 13, 10, .05) 100%);
}

.event-card__content {
  position: relative;
  z-index: 1;
  max-width: 470px;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 34px 34px 30px;
}

.event-card--wide .event-card__content {
  max-width: 500px;
  padding: 34px 38px 36px;
}

.event-card__tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 30px;
  margin-bottom: 22px;
  padding: 0 22px;
  border: 1px solid currentColor;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  line-height: 1;
  opacity: .9;
}

.event-card h2 {
  margin: 0 0 16px;
  font-family: var(--serif);
  font-size: clamp(42px, 4.2vw, 64px);
  font-weight: 600;
  line-height: .92;
  letter-spacing: -.02em;
}

.event-card:not(.event-card--wide) h2 {
  font-size: clamp(36px, 3vw, 50px);
}

.event-card time {
  display: block;
  margin-bottom: 24px;
  font-size: 23px;
  font-weight: 600;
  line-height: 1.1;
}

.event-card p {
  margin: 0 0 22px;
  font-size: 16px;
  line-height: 1.42;
}

.event-card strong {
  display: block;
  margin-bottom: 22px;
  color: #8a4f2a;
  font-size: 17px;
  line-height: 1.3;
}

.event-card__note {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 18px;
  align-items: start;
  margin-top: auto;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, .28);
  font-size: 14px;
  line-height: 1.38;
  color: rgba(255, 255, 255, .9);
}

.event-card__note img,
.event-card__meta img {
  width: 26px;
  height: 26px;
  filter: invert(70%) sepia(21%) saturate(709%) hue-rotate(348deg) brightness(89%) contrast(83%);
}

.event-card__meta {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 12px;
  align-items: start;
  margin: 0 0 14px;
  font-size: 14px;
  line-height: 1.35;
  color: rgba(255, 255, 255, .9);
}

.event-card__meta time {
  margin: 0;
  font-size: 15px;
  font-weight: 600;
}

@media (max-width: 900px) {
  .events-page {
    padding-top: 10px;
  }

  .events-breadcrumbs {
    margin-bottom: 20px;
  }

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

  .event-card,
  .event-card--wide {
    grid-column: auto;
    min-height: 390px;
  }

  .event-card--wide .event-card__content,
  .event-card__content {
    padding: 28px 24px;
    max-width: 88%;
  }

  .event-card h2,
  .event-card:not(.event-card--wide) h2 {
    font-size: 42px;
  }
}

@media (max-width: 620px) {
  .events-breadcrumbs {
    gap: 12px;
    overflow-x: auto;
    white-space: nowrap;
    font-size: 13px;
  }

  .events-hero h1 {
    font-size: 50px;
  }

  .events-hero p {
    font-size: 15px;
  }

  .event-card,
  .event-card--wide {
    min-height: 420px;
    border-radius: 10px;
  }

  .event-card__content,
  .event-card--wide .event-card__content {
    max-width: none;
    padding: 24px 20px;
  }

  .event-card--dark::after,
  .event-card--mehendi::after {
    background: linear-gradient(90deg, rgba(8, 7, 6, .96) 0%, rgba(8, 7, 6, .80) 62%, rgba(8, 7, 6, .24) 100%);
  }

  .event-card--light::after {
    background: linear-gradient(90deg, rgba(247, 231, 216, .97) 0%, rgba(247, 231, 216, .78) 63%, rgba(247, 231, 216, .15) 100%);
  }

  .event-card h2,
  .event-card:not(.event-card--wide) h2 {
    font-size: 38px;
  }

  .event-card time {
    font-size: 19px;
    margin-bottom: 18px;
  }

  .event-card p {
    font-size: 14px;
  }
}

/* Account, favorites and desktop search pages */
.account-page {
  padding: 24px 0 34px;
  background: var(--cream-2);
}

.account-breadcrumbs {
  display: flex;
  align-items: center;
  gap: 18px;
  margin: 0 0 18px;
  color: #3f3731;
  font-size: 14px;
}

.account-breadcrumbs span {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: currentColor;
  opacity: .75;
}

.account-breadcrumbs a[aria-current="page"] {
  color: var(--text);
  font-weight: 700;
}

.account-title {
  margin: 0 0 22px;
  font-family: var(--serif);
  font-size: clamp(52px, 5vw, 72px);
  font-weight: 600;
  line-height: .95;
  letter-spacing: -.025em;
}

.account-layout {
  display: grid;
  grid-template-columns: 290px minmax(0, 1fr);
  gap: 16px;
  align-items: stretch;
}

.account-sidebar {
  min-height: 1040px;
  padding: 18px;
  border: 1px solid rgba(166, 121, 77, .16);
  border-radius: 12px;
  background: rgba(255, 255, 255, .58);
  box-shadow: 0 18px 42px rgba(73, 52, 37, .035);
}

.account-sidebar__link {
  position: relative;
  min-height: 72px;
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 0 18px;
  border-radius: 8px;
  color: #2f2823;
  font-size: 16px;
  transition: background .2s ease, color .2s ease;
}

.account-sidebar__link:not(:last-child) {
  border-bottom: 1px solid rgba(166, 121, 77, .14);
  border-radius: 0;
}

.account-sidebar__link.is-active {
  border-bottom-color: transparent;
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(224, 203, 181, .72), rgba(246, 238, 228, .92));
  color: #8b5b31;
}

.account-sidebar__link:hover {
  color: var(--gold);
}

.account-sidebar__link img {
  width: 30px;
  height: 30px;
  color: currentColor;
}

.account-sidebar__link--cart span {
  margin-left: auto;
  width: 28px;
  height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #eadbca;
  color: #6d421e;
  font-weight: 700;
}

.account-content {
  display: grid;
  gap: 16px;
}

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

/* Contact Form 7 inherits the visual language of the contact page. */
.contacts-form__cf7 .wpcf7-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.contacts-form__cf7 .wpcf7-form>p {
  margin: 0;
}

.contacts-form__cf7 .wpcf7-form>p:has(textarea),
.contacts-form__cf7 .wpcf7-form>p:has(.wpcf7-acceptance),
.contacts-form__cf7 .wpcf7-form>p:has(input[type="submit"]),
.contacts-form__cf7 .wpcf7-response-output {
  grid-column: 1 / -1;
}

/* Search: a compact product finder for both desktop and mobile headers. */
.mobile-search {
  display: flex;
  align-items: flex-start;
}

.mobile-search__panel {
  width: min(760px, calc(100% - 32px));
  max-height: min(760px, calc(100dvh - 80px));
  margin: min(12vh, 120px) auto 0;
  overflow-y: auto;
  border: 1px solid rgba(166, 121, 77, .2);
  border-radius: 16px;
  background: var(--cream-2);
  color: var(--text);
  box-shadow: 0 24px 70px rgba(20, 14, 10, .28);
}

.search-dialog__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 28px;
  border-bottom: 1px solid var(--line);
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 600;
}

.search-dialog__header button {
  display: inline-flex;
  flex: 0 0 36px;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  padding: 0 0 2px;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--text);
  font-size: 27px;
  font-weight: 300;
  line-height: 1;
}

.mobile-search__top {
  display: none;
}

.mobile-search__body {
  padding: 26px 28px 30px;
}

.mobile-search__field {
  min-height: 62px;
  padding: 0 18px 0 54px;
  border: 1px solid rgba(92, 61, 37, .26);
  border-radius: 8px;
  background: #fff;
  color: var(--text);
  font-family: var(--serif);
  font-size: 24px;
  box-shadow: none;
}

.mobile-search__field img {
  left: 19px;
  width: 24px;
  height: 24px;
  filter: none;
  opacity: .72;
}

.mobile-search__field input {
  color: var(--text);
}

.mobile-search__field input::placeholder {
  color: #8b7f75;
}

.mobile-search__section {
  margin-top: 22px;
}

.mobile-search__section-title {
  display: block;
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: .1em;
  color: var(--muted);
}

.mobile-search__section-title img {
  display: none;
}

.mobile-search__list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 12px 0 0;
}

.mobile-search__list a {
  min-height: auto;
  padding: 8px 12px;
  border: 1px solid rgba(166, 121, 77, .25);
  border-radius: 99px;
  color: #654630;
  font-family: var(--sans);
  font-size: 12px;
  text-shadow: none;
}

.mobile-search__list a::after {
  display: none;
}

.search-results:empty {
  display: none;
}

.search-results {
  margin-top: 16px;
}

.search-results__list {
  display: grid;
  gap: 8px;
}

.search-result {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 13px;
  align-items: center;
  padding: 8px;
  border-radius: 8px;
  transition: background .2s ease;
}

.search-result:hover {
  background: #f4eadf;
}

.search-result img {
  width: 54px;
  height: 54px;
  object-fit: cover;
  border-radius: 5px;
}

.search-result span {
  display: grid;
  gap: 3px;
}

.search-result strong {
  font-family: var(--serif);
  font-size: 19px;
  font-weight: 600;
}

.search-result em {
  color: #7a4a24;
  font-size: 12px;
  font-style: normal;
  font-weight: 700;
}

.search-results__status {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 13px;
}

.search-results__all {
  display: inline-block;
  margin-top: 16px;
  color: #7a4a24;
  font-size: 12px;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.search-page {
  padding: 42px 0 90px;
}

.search-page__header {
  margin-bottom: 30px;
  padding-bottom: 22px;
  border-bottom: 1px solid var(--line);
}

.search-page__header p {
  margin: 0 0 8px;
  color: var(--muted);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.search-page__header h1 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(42px, 5vw, 68px);
  font-weight: 600;
}

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

.search-page__empty {
  margin: 0;
  color: var(--muted);
}

@media (max-width: 900px) {
  .search-page__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 901px) {
  .mobile-search {
    display: flex;
  }
}

@media (max-width: 600px) {
  .mobile-search__panel {
    width: calc(100% - 18px);
    max-height: calc(100dvh - 18px);
    margin-top: 9px;
    border-radius: 12px;
  }

  .search-dialog__header,
  .mobile-search__body {
    padding-left: 18px;
    padding-right: 18px;
  }

  .mobile-search__field {
    font-size: 20px;
  }
}

.contacts-form__cf7 .wpcf7-form label {
  display: block;
  color: #4f463f;
  font-size: 12px;
}

.contacts-form__cf7 .wpcf7-form-control-wrap {
  display: block;
  margin-top: 5px;
}

.contacts-form__cf7 textarea {
  height: 66px !important;
  min-height: 66px;
  padding-top: 12px;
}

.contacts-form__cf7 .wpcf7-acceptance .wpcf7-list-item {
  margin: 0;
}

.contacts-form__cf7 .wpcf7-acceptance input {
  width: 14px;
  min-height: 14px;
  height: 14px;
  margin: 0 7px 0 0;
  padding: 0;
  accent-color: var(--gold);
}

.contacts-form__cf7 input[type="submit"] {
  width: 100%;
  min-height: 42px;
  border: 0;
  background: linear-gradient(135deg, #6d421e 0%, #4d2b16 100%);
  color: #fff;
  font: inherit;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  cursor: pointer;
  transition: background .2s ease;
}

.contacts-form__cf7 input[type="submit"]:hover {
  background: linear-gradient(135deg, #8b5b31 0%, #5d351c 100%);
}

.contacts-form__cf7 .wpcf7-response-output {
  margin: 4px 0 0;
  padding: 10px 12px;
  font-size: 12px;
}

.contacts-intro__lead--legacy {
  display: none;
}

.contacts-intro__lead--content p {
  margin: 0 0 12px;
}

.contacts-intro__lead--content p:last-child {
  margin-bottom: 0;
}

.account-layout--guest {
  grid-template-columns: minmax(0, 720px);
  justify-content: center;
}

.account-layout--guest .account-content {
  width: 100%;
}

/* WooCommerce account endpoints */
.account-content>.woocommerce,
.account-content>.woocommerce-MyAccount-content {
  min-width: 0;
}

.account-content .woocommerce-notices-wrapper:empty {
  display: none;
}

.account-content .woocommerce-message,
.account-content .woocommerce-info,
.account-content .woocommerce-error {
  margin: 0 0 16px;
  padding: 15px 18px;
  border: 1px solid rgba(166, 121, 77, .22);
  border-left: 3px solid #a6794d;
  border-radius: 8px;
  background: rgba(255, 255, 255, .74);
  color: #3f332a;
}

.account-content .woocommerce-error {
  border-left-color: #a34e43;
}

.account-welcome {
  padding: 38px 42px 40px;
  background: linear-gradient(125deg, #fffdfa, #f3e8dc);
}

.account-eyebrow {
  margin: 0 0 9px;
  color: #a36b39;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
}

.account-welcome h2 {
  margin-bottom: 12px;
  font-size: clamp(32px, 3vw, 44px);
}

.account-welcome>p:not(.account-eyebrow) {
  max-width: 570px;
  margin: 0;
  color: #68594e;
  line-height: 1.6;
}

.account-quick-links {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 28px;
}

.account-quick-links a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 64px;
  padding: 0 18px;
  border: 1px solid rgba(166, 121, 77, .25);
  border-radius: 8px;
  background: rgba(255, 255, 255, .58);
  color: #3f3025;
  font-weight: 600;
  transition: .2s ease;
}

.account-quick-links a span {
  color: #9a612f;
  font-size: 20px;
}

.account-quick-links a:hover {
  border-color: #a6794d;
  background: #fff;
  transform: translateY(-2px);
}

.account-dashboard-notices>* {
  margin-top: 0;
}

.account-content .woocommerce-MyAccount-content>p,
.account-content .woocommerce>p {
  margin: 0;
  padding: 26px 32px;
  border: 1px solid rgba(166, 121, 77, .16);
  border-radius: 12px;
  background: rgba(255, 255, 255, .62);
}

.account-content .woocommerce-MyAccount-content a,
.account-content .woocommerce a {
  color: #89532a;
}

.account-content form {
  padding: 30px 38px;
  border: 1px solid rgba(166, 121, 77, .16);
  border-radius: 12px;
  background: rgba(255, 255, 255, .66);
}

.account-content form h3,
.account-content .woocommerce-orders-table+.woocommerce-pagination {
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 500;
}

.account-content .form-row {
  margin: 0 0 18px;
}

.account-content .form-row label {
  display: block;
  margin: 0 0 8px;
  color: #382d26;
  font-size: 14px;
  font-weight: 600;
}

.account-content .form-row input.input-text,
.account-content .form-row select,
.account-content .form-row textarea {
  width: 100%;
  min-height: 48px;
  padding: 10px 14px;
  border: 1px solid rgba(80, 62, 50, .2);
  border-radius: 6px;
  background: #fffdfa;
  color: #302720;
  font: inherit;
}

.account-content .form-row textarea {
  min-height: 120px;
}

.account-content .button,
.account-content button[type="submit"] {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  padding: 0 23px;
  border: 1px solid #855027;
  border-radius: 4px;
  background: #855027;
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  transition: .2s ease;
}

.account-content .button:hover,
.account-content button[type="submit"]:hover {
  background: #633719;
  border-color: #633719;
  color: #fff;
}

.account-content .woocommerce-orders-table,
.account-content .woocommerce-table--order-details,
.account-content .woocommerce-Addresses {
  width: 100%;
  border: 1px solid rgba(166, 121, 77, .18);
  border-radius: 12px;
  border-collapse: separate;
  border-spacing: 0;
  overflow: hidden;
  background: rgba(255, 255, 255, .66);
}

.account-content .woocommerce-orders-table th,
.account-content .woocommerce-orders-table td,
.account-content .woocommerce-table--order-details th,
.account-content .woocommerce-table--order-details td {
  padding: 17px 18px;
  border-bottom: 1px solid rgba(166, 121, 77, .14);
  text-align: left;
}

.account-content .woocommerce-orders-table th,
.account-content .woocommerce-table--order-details th {
  background: #f7eee5;
  color: #3c2d22;
  font-size: 12px;
  text-transform: uppercase;
}

.account-content .woocommerce-orders-table tr:last-child td,
.account-content .woocommerce-table--order-details tr:last-child td {
  border-bottom: 0;
}

.account-content .woocommerce-Addresses {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
}

.account-content .woocommerce-Addresses address,
.account-content .woocommerce-Address-title {
  padding: 22px 26px;
}

.account-content .woocommerce-Address+.woocommerce-Address {
  border-left: 1px solid rgba(166, 121, 77, .14);
}

.account-layout--guest .woocommerce form.login,
.account-layout--guest .woocommerce form.register {
  padding: 38px;
}

.account-layout--guest .woocommerce h2 {
  margin: 0 0 22px;
  font-family: var(--serif);
  font-size: 38px;
  font-weight: 500;
}

.account-layout--guest .woocommerce .woocommerce-form-login__rememberme {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 14px 16px 0 0;
  color: #5e5046;
  font-size: 14px;
}

.account-layout--guest .woocommerce .lost_password {
  margin: 18px 0 0;
  font-size: 14px;
}

/* Guest login/register screen. WooCommerce renders it without the
   my-account.php template, so it needs its own page-level wrapper. */
.account-page--guest {
  padding: 24px 0 72px;
}

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

.account-login-shell .u-column1,
.account-login-shell .u-column2 {
  min-width: 0;
  padding: 36px 38px 38px;
  border: 1px solid rgba(166, 121, 77, .18);
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(255, 255, 255, .8), rgba(246, 238, 228, .72));
  box-shadow: 0 18px 42px rgba(73, 52, 37, .035);
}

.account-login-shell .u-column1::before,
.account-login-shell .u-column2::before {
  content: "Island Soul";
  display: block;
  margin-bottom: 12px;
  color: #a36b39;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
}

.account-login-shell h2 {
  margin: 0 0 24px;
  font-family: var(--serif);
  font-size: 42px;
  font-weight: 500;
  line-height: 1;
}

.account-login-shell form.login,
.account-login-shell form.register {
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
}

.account-login-shell .form-row {
  margin-bottom: 18px;
}

.account-login-shell .form-row label {
  display: block;
  margin-bottom: 8px;
  color: #382d26;
  font-size: 14px;
  font-weight: 600;
}

.account-login-shell .form-row input.input-text {
  width: 100%;
  min-height: 48px;
  padding: 0 14px;
  border: 1px solid rgba(80, 62, 50, .2);
  border-radius: 6px;
  background: #fffdfa;
  color: #302720;
  font: inherit;
}

.account-login-shell .woocommerce-form-login__rememberme {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 14px 16px 0 0;
  color: #5e5046;
  font-size: 14px;
}

.account-login-shell .button,
.account-login-shell button[type="submit"] {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  padding: 0 23px;
  border: 1px solid #855027;
  border-radius: 4px;
  background: #855027;
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  transition: .2s ease;
}

.account-login-shell .button:hover,
.account-login-shell button[type="submit"]:hover {
  border-color: #633719;
  background: #633719;
  color: #fff;
}

.account-login-shell .woocommerce-privacy-policy-text {
  margin-top: 18px;
  color: #796b60;
  font-size: 12px;
  line-height: 1.6;
}

.account-login-shell .lost_password {
  margin: 18px 0 0;
  font-size: 14px;
}

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

  .account-sidebar {
    min-height: 0;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    padding: 8px;
  }

  .account-sidebar__link {
    min-height: 58px;
    padding: 0 10px;
    gap: 10px;
    font-size: 14px;
  }

  .account-sidebar__link img {
    width: 23px;
    height: 23px;
  }

  .account-sidebar__link:not(:last-child) {
    border-bottom: 0;
  }

  .account-quick-links {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 620px) {
  .account-page {
    padding: 18px 0 28px;
  }

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

  .account-welcome {
    padding: 26px 20px;
  }

  .account-content form,
  .account-layout--guest .woocommerce form.login,
  .account-layout--guest .woocommerce form.register {
    padding: 24px 18px;
  }

  .account-content .woocommerce-Addresses {
    grid-template-columns: 1fr;
  }

  .account-content .woocommerce-Address+.woocommerce-Address {
    border-left: 0;
    border-top: 1px solid rgba(166, 121, 77, .14);
  }

  .account-content .woocommerce-orders-table {
    display: block;
    overflow-x: auto;
    white-space: nowrap;
  }

  .account-page--guest {
    padding: 18px 0 46px;
  }

  .account-login-shell .u-columns {
    grid-template-columns: 1fr;
  }

  .account-login-shell .u-column1,
  .account-login-shell .u-column2 {
    padding: 26px 20px;
  }
}

.account-card {
  border: 1px solid rgba(166, 121, 77, .16);
  border-radius: 12px;
  background: rgba(255, 255, 255, .62);
  box-shadow: 0 18px 42px rgba(73, 52, 37, .035);
}

.account-profile {
  padding: 28px 40px 24px;
}

.account-card h2,
.account-card__head h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: 32px;
  font-weight: 600;
  line-height: 1.05;
}

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

.account-form label {
  display: grid;
  gap: 7px;
  color: #312922;
  font-size: 14px;
  font-weight: 500;
}

.account-form input {
  width: 100%;
  height: 48px;
  padding: 0 16px;
  border: 1px solid rgba(80, 62, 50, .18);
  border-radius: 6px;
  background: rgba(255, 255, 255, .72);
  color: var(--text);
  font: 15px var(--sans);
  outline: none;
  transition: border-color .2s ease, box-shadow .2s ease;
}

.account-form input:focus {
  border-color: rgba(166, 121, 77, .55);
  box-shadow: 0 0 0 3px rgba(166, 121, 77, .09);
}

.account-form__full {
  grid-column: 1 / -1;
}

.password-field {
  position: relative;
  display: block;
}

.password-field img {
  position: absolute;
  right: 14px;
  top: 50%;
  width: 22px;
  height: 22px;
  transform: translateY(-50%);
  opacity: .62;
}

.password-field input {
  padding-right: 48px;
}

.account-save {
  width: fit-content;
  min-width: 230px;
  min-height: 46px;
  margin-top: 2px;
  font-size: 14px;
}

.account-card__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 20px;
}

.account-card__head a {
  color: #9a612f;
  font-size: 14px;
  font-weight: 700;
}

.account-preview {
  padding: 24px 36px 26px;
}

.account-products {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.account-product {
  position: relative;
}

.account-product button {
  position: absolute;
  top: 12px;
  right: 14px;
  z-index: 2;
  color: #5f5146;
  font-family: var(--serif);
  font-size: 34px;
  line-height: 1;
}

.account-product img {
  width: 100%;
  height: 150px;
  border-radius: 7px;
  object-fit: cover;
  background: #f2e7dc;
}

.account-product h3 {
  margin: 12px 0 6px;
  font-size: 15px;
  font-weight: 500;
}

.account-product p {
  margin: 0 0 12px;
  color: #2d251f;
  font-size: 15px;
  font-weight: 600;
}

.account-product a {
  width: 100%;
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(166, 121, 77, .62);
  border-radius: 6px;
  color: #8a5428;
  font-weight: 700;
  transition: all .2s ease;
}

.account-product a:hover {
  background: #8a5428;
  color: var(--white);
}

.account-cart-preview {
  padding: 24px 36px 26px;
}

.mini-cart-table {
  display: grid;
}

.mini-cart-head,
.mini-cart-row {
  display: grid;
  grid-template-columns: 1.7fr .82fr .9fr .9fr 28px;
  align-items: center;
  gap: 18px;
  padding: 0 0 12px;
  border-bottom: 1px solid rgba(166, 121, 77, .16);
  color: #2d251f;
  font-size: 13px;
}

.mini-cart-head {
  font-weight: 700;
}

.mini-cart-row {
  padding: 12px 0;
  font-size: 14px;
}

.mini-cart-row>div {
  display: grid;
  grid-template-columns: 76px 1fr;
  align-items: center;
  gap: 14px;
}

.mini-cart-row img {
  width: 76px;
  height: 52px;
  border-radius: 5px;
  object-fit: cover;
}

.mini-qty {
  width: 110px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: space-around;
  border: 1px solid rgba(80, 62, 50, .14);
  border-radius: 5px;
  background: rgba(255, 255, 255, .58);
}

.mini-cart-row button {
  color: #8a6b55;
  font-size: 24px;
  line-height: 1;
}

.mini-cart-total {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 12px 28px;
  width: min(100%, 440px);
  margin: 18px 0 0 auto;
}

.mini-cart-total strong {
  justify-self: end;
  font-size: 18px;
}

.mini-cart-total span {
  font-size: 24px;
  font-weight: 700;
}

.mini-cart-total .btn {
  grid-column: 1 / -1;
  width: 100%;
  min-height: 46px;
  margin-top: 0;
}

.account-benefits .category-benefits__inner {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.favorites-page .account-layout {
  align-items: start;
}

.favorites-page .account-sidebar {
  min-height: 940px;
}

.favorites-list-card {
  padding: 34px 28px 28px;
}

.favorites-title {
  margin: 0 0 18px;
  font-family: var(--serif);
  font-size: clamp(44px, 4vw, 60px);
  font-weight: 600;
  line-height: .95;
  letter-spacing: -.02em;
}

.favorites-list {
  border: 1px solid rgba(166, 121, 77, .12);
  border-radius: 12px;
  padding: 0 28px;
}

.favorite-row {
  display: grid;
  grid-template-columns: 210px minmax(0, 1fr) 44px 44px 156px;
  align-items: center;
  gap: 28px;
  padding: 28px 0;
  border-bottom: 1px solid rgba(166, 121, 77, .14);
}

.favorite-row:last-child {
  border-bottom: 0;
}

.favorite-row>img {
  width: 210px;
  height: 140px;
  border-radius: 7px;
  object-fit: cover;
  background: #f2e7dc;
}

.favorite-row__info h2 {
  margin: 0 0 8px;
  font-size: 17px;
  font-weight: 500;
}

.favorite-row__info p {
  margin: 0 0 22px;
  color: #4c443e;
  font-size: 13px;
}

.favorite-row__info strong {
  font-size: 17px;
  font-weight: 500;
}

.favorite-icon img,
.favorite-trash img {
  width: 28px;
  height: 28px;
  opacity: .85;
}

.favorite-row .btn {
  min-height: 46px;
  margin: 0;
}

.favorites-clear {
  width: 240px;
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 22px;
  border: 1px solid rgba(166, 121, 77, .72);
  border-radius: 6px;
  color: #9a612f;
  font-weight: 700;
}

.favorites-clear img {
  width: 22px;
  height: 22px;
}

.search-page-desktop {
  min-height: 100vh;
  padding: 0;
  background: #070707;
  color: var(--white);
}

.search-page-desktop__panel {
  min-height: 100vh;
  border: 4px solid rgba(255, 255, 255, .08);
  border-radius: 36px;
  background: radial-gradient(circle at 86% 16%, rgba(103, 78, 51, .16), transparent 30%), linear-gradient(145deg, #171717, #0d0d0d);
  box-shadow: inset 0 0 120px rgba(255, 255, 255, .03);
}

.search-page-desktop__header {
  min-height: 180px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(calc(100% - 180px), 1440px);
  margin: 0 auto;
}

.search-page-desktop__logo {
  display: grid;
  grid-template-columns: 92px 1fr;
  align-items: center;
  gap: 28px;
  text-transform: uppercase;
}

.search-page-desktop__logo img {
  width: 92px;
  height: 74px;
  filter: brightness(0) invert(1) sepia(.15) saturate(1.2);
}

.search-page-desktop__logo strong {
  display: block;
  font-family: var(--serif);
  font-size: 40px;
  font-weight: 600;
  letter-spacing: .16em;
  line-height: 1;
}

.search-page-desktop__logo em {
  display: block;
  margin-top: 12px;
  font-style: normal;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .44em;
  color: rgba(255, 255, 255, .78);
}

.search-page-desktop__actions {
  display: flex;
  align-items: center;
  gap: 36px;
}

.search-page-desktop__actions img {
  width: 35px;
  height: 35px;
  filter: brightness(0) invert(1);
}

.search-page-desktop__cart {
  position: relative;
}

.search-page-desktop__cart span {
  position: absolute;
  right: -20px;
  top: -9px;
  width: 48px;
  height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: linear-gradient(135deg, #b27b43, #72431d);
  color: #fff;
  font-weight: 700;
  font-size: 22px;
}

.search-desktop-content {
  width: min(calc(100% - 220px), 1260px);
  margin: 0 auto;
  padding: 80px 0 140px;
  text-align: center;
}

.search-desktop-content h1 {
  margin: 0 0 58px;
  font-family: var(--serif);
  font-size: clamp(78px, 7vw, 108px);
  font-weight: 500;
  line-height: .9;
}

.search-desktop-form {
  position: relative;
  height: 112px;
  display: flex;
  align-items: center;
  max-width: 1050px;
  margin: 0 auto;
  padding: 0 36px 0 112px;
  border: 2px solid rgba(195, 134, 74, .92);
  border-radius: 20px;
}

.search-desktop-form img {
  position: absolute;
  left: 38px;
  top: 50%;
  width: 48px;
  height: 48px;
  transform: translateY(-50%);
  filter: brightness(0) invert(1) sepia(.8) saturate(1.8) hue-rotate(335deg);
}

.search-desktop-form input {
  width: 100%;
  height: 100%;
  border: 0;
  background: transparent;
  color: var(--white);
  font: 42px var(--serif);
  outline: none;
}

.search-desktop-form input::placeholder {
  color: rgba(255, 255, 255, .42);
}

.search-desktop-categories {
  margin-top: 112px;
}

.search-desktop-title {
  display: grid;
  grid-template-columns: 1fr 44px auto 1fr;
  align-items: center;
  gap: 24px;
  color: var(--gold-light);
}

.search-desktop-title span {
  height: 1px;
  background: rgba(195, 134, 74, .28);
}

.search-desktop-title img {
  width: 44px;
  height: 44px;
  filter: invert(61%) sepia(31%) saturate(697%) hue-rotate(346deg) brightness(89%) contrast(88%);
}

.search-desktop-title strong {
  font-family: var(--serif);
  font-size: 40px;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.search-desktop-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
  margin-top: 58px;
}

.search-desktop-grid a {
  min-height: 104px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 48px;
  border: 1px solid rgba(195, 134, 74, .30);
  border-radius: 12px;
  color: var(--white);
  font-family: var(--serif);
  font-size: 36px;
  text-align: left;
  transition: border-color .2s ease, color .2s ease, transform .2s ease;
}

.search-desktop-grid a::after {
  content: '›';
  color: var(--gold-light);
  font-family: var(--sans);
  font-size: 44px;
}

.search-desktop-grid a:hover {
  color: var(--gold-light);
  border-color: rgba(195, 134, 74, .7);
  transform: translateY(-2px);
}

@media (max-width: 1180px) {
  .account-layout {
    grid-template-columns: 250px 1fr;
  }

  .account-sidebar {
    min-height: auto;
  }

  .account-products {
    gap: 18px;
  }

  .favorite-row {
    grid-template-columns: 170px 1fr 38px 38px 140px;
    gap: 18px;
  }

  .favorite-row>img {
    width: 170px;
  }

  .search-page-desktop__header,
  .search-desktop-content {
    width: min(calc(100% - 80px), 1260px);
  }
}

@media (max-width: 900px) {

  .page-header__actions button:nth-child(2),
  .page-header__actions a:nth-child(2) {
    display: none;
  }

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

  .account-sidebar {
    min-height: 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
    padding: 12px;
  }

  .account-sidebar__link {
    min-height: 58px;
    border-bottom: 0 !important;
    border-radius: 8px !important;
    background: rgba(255, 255, 255, .42);
  }

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

  .account-products {
    grid-template-columns: 1fr;
  }

  .mini-cart-head {
    display: none;
  }

  .mini-cart-row {
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 16px 0;
  }

  .mini-cart-total {
    width: 100%;
  }

  .favorite-row {
    grid-template-columns: 120px 1fr 40px 40px;
  }

  .favorite-row>img {
    width: 120px;
    height: 96px;
  }

  .favorite-row .btn {
    grid-column: 2 / -1;
  }

  .search-page-desktop__header {
    min-height: 120px;
    width: min(calc(100% - 44px), 1260px);
  }

  .search-page-desktop__logo {
    grid-template-columns: 56px 1fr;
    gap: 16px;
  }

  .search-page-desktop__logo img {
    width: 56px;
    height: 46px;
  }

  .search-page-desktop__logo strong {
    font-size: 26px;
  }

  .search-page-desktop__logo em {
    font-size: 9px;
    letter-spacing: .34em;
  }

  .search-page-desktop__actions {
    gap: 24px;
  }

  .search-desktop-content {
    width: min(calc(100% - 44px), 1260px);
    padding: 48px 0 90px;
  }

  .search-desktop-form {
    height: 86px;
    padding-left: 82px;
  }

  .search-desktop-form input {
    font-size: 30px;
  }

  .search-desktop-form img {
    width: 34px;
    height: 34px;
    left: 28px;
  }

  .search-desktop-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }
}

@media (max-width: 620px) {

  .account-title,
  .favorites-title {
    font-size: 42px;
  }

  .account-profile,
  .account-preview,
  .account-cart-preview,
  .favorites-list-card {
    padding: 22px 18px;
  }

  .account-sidebar {
    grid-template-columns: 1fr;
  }

  .account-card h2,
  .account-card__head h2 {
    font-size: 28px;
  }

  .account-card__head {
    align-items: flex-start;
    flex-direction: column;
  }

  .mini-cart-total {
    grid-template-columns: 1fr;
  }

  .mini-cart-total strong {
    justify-self: start;
  }

  .favorites-list {
    padding: 0 16px;
  }

  .favorite-row {
    grid-template-columns: 1fr 40px 40px;
    gap: 14px;
  }

  .favorite-row>img {
    grid-column: 1 / -1;
    width: 100%;
    height: 170px;
  }

  .favorite-row__info {
    grid-column: 1 / -1;
  }

  .favorite-row .btn {
    grid-column: 1 / -1;
  }

  .favorites-clear {
    width: 100%;
  }

  .account-benefits .category-benefits__inner {
    grid-template-columns: 1fr;
  }

  .search-page-desktop__panel {
    border-width: 2px;
    border-radius: 18px;
  }

  .search-page-desktop__actions a:first-child {
    display: none;
  }

  .search-desktop-content h1 {
    font-size: 62px;
  }

  .search-desktop-form {
    height: 76px;
    border-radius: 16px;
    padding-left: 72px;
  }

  .search-desktop-form input {
    font-size: 24px;
  }

  .search-desktop-title {
    grid-template-columns: 34px auto;
    justify-content: center;
  }

  .search-desktop-title span {
    display: none;
  }

  .search-desktop-title img {
    width: 34px;
    height: 34px;
  }

  .search-desktop-title strong {
    font-size: 28px;
  }

  .search-desktop-grid a {
    min-height: 76px;
    padding: 0 24px;
    font-size: 28px;
  }
}


/* Swiper sliders patch */
.header__inner {
  grid-template-columns: 32px minmax(650px, 1fr) 235px minmax(190px, .72fr);
  gap: 20px;
}

.nav {
  gap: clamp(14px, 1.4vw, 24px);
  white-space: nowrap;
}

.nav a {
  white-space: nowrap;
}

.logo--header .logo__title {
  font-size: clamp(31px, 2.6vw, 36px);
}

.logo--header .logo__mark {
  width: 58px;
}

.header-actions {
  gap: 20px;
}

.hero {
  min-height: min(875px, 100vh);
}

.hero-swiper,
.hero-swiper .swiper-wrapper,
.hero-slide {
  width: 100%;
  height: 100%;
  min-height: inherit;
}

.hero-slide {
  position: relative;
  overflow: hidden;
}

.hero-slide picture {
  position: absolute;
  inset: 0;
}

.hero-swiper.swiper-initialized .swiper-slide {
  opacity: 0 !important;
  transition-property: opacity;
}

.hero-swiper.swiper-initialized .swiper-slide-active {
  opacity: 1 !important;
}

.hero-slider button {
  width: 26px;
  height: 26px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: background .2s ease, transform .2s ease;
}

.hero-slider button:hover {
  background: rgba(255, 255, 255, .14);
  transform: scale(1.08);
}

.hero-slider__next,
.hero-slider__prev {
  width: 42px !important;
  height: 42px !important;
  border: 1px solid rgba(255, 255, 255, .55);
  border-radius: 50% !important;
  background: rgba(31, 22, 16, .16);
  backdrop-filter: blur(5px);
}

.hero-slider__next svg,
.hero-slider__prev svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.65;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.hero-slider__next:hover,
.hero-slider__prev:hover {
  border-color: #e3bf91;
  background: rgba(166, 121, 77, .34);
  color: #fff5e9;
}

.collections-swiper,
.products-swiper {
  width: 100%;
  overflow: hidden;
}

.collections-swiper .swiper-wrapper,
.products-swiper .swiper-wrapper {
  align-items: stretch;
}

.collections-swiper .swiper-slide,
.products-swiper .swiper-slide {
  height: auto;
}

.collections-swiper .collection-card {
  width: auto;
}

.products-swiper .product-card {
  display: flex;
  flex-direction: column;
  width: auto;
  height: auto;
  min-height: 320px;
}

.products-swiper .product-card img {
  flex-shrink: 0;
}

.products-pagination.swiper-pagination {
  position: static;
  display: flex;
  width: 100% !important;
  justify-content: center;
  align-items: center;
  gap: 13px;
  margin-top: 42px;
  text-align: center;
}

#catalog .products-pagination {
  position: static !important;
  left: auto !important;
  width: 100% !important;
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
  gap: 6px !important;
  margin-top: 30px !important;
  transform: none !important;
}

#catalog .products-pagination .swiper-pagination-bullet {
  margin: 0 !important;
}

.products-pagination .swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  margin: 0 !important;
  background: #dfd9d2;
  opacity: 1;
}

.products-pagination .swiper-pagination-bullet-active {
  background: var(--gold);
}

.contact-gallery.swiper {
  position: relative;
  height: 100%;
  min-height: 370px;
  border-radius: 10px;
  overflow: hidden;
  background: #eadfd4;
}

.contact-gallery .swiper-wrapper {
  height: 100%;
  min-height: inherit;
}

.contact-gallery .contact-gallery__slide {
  position: relative;
  inset: auto;
  margin: 0;
  height: auto;
  opacity: 1;
  visibility: visible;
}

.contact-gallery .contact-gallery__slide img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  object-position: center;
  display: block;
}

.contact-gallery .contact-gallery__dots.swiper-pagination {
  position: absolute;
  left: 50%;
  bottom: 16px;
  z-index: 3;
  width: auto;
  display: flex;
  gap: 10px;
  transform: translateX(-50%);
}

.contact-gallery .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  margin: 0 !important;
  border-radius: 50%;
  background: rgba(255, 255, 255, .58);
  opacity: 1;
  box-shadow: 0 1px 4px rgba(0, 0, 0, .15);
  transition: transform .2s ease, background .2s ease;
}

.contact-gallery .swiper-pagination-bullet-active {
  background: var(--gold);
  transform: scale(1.2);
}

@media (max-width: 1320px) {
  .header__inner {
    width: min(1180px, calc(100% - 54px));
    grid-template-columns: 28px minmax(610px, 1fr) 210px minmax(170px, .6fr);
    gap: 18px;
  }

  .nav {
    gap: 15px;
    font-size: 11px;
  }

  .header-actions {
    gap: 16px;
  }

  .logo--header .logo__title {
    font-size: 30px;
  }
}

@media (max-width: 1180px) {
  .header__inner {
    grid-template-columns: 32px 1fr auto;
  }

  .nav {
    display: none;
  }
}

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

  .hero-swiper,
  .hero-swiper .swiper-wrapper,
  .hero-slide {
    min-height: 760px;
  }

  .collections-swiper {
    overflow: visible;
  }
}

@media (max-width: 620px) {

  .hero,
  .hero-swiper,
  .hero-swiper .swiper-wrapper,
  .hero-slide {
    min-height: 760px;
  }

  .products-pagination.swiper-pagination {
    margin-top: 30px;
  }
}


/* Discount program */
.discount-program {
  display: grid;
  grid-template-columns: minmax(480px, .74fr) minmax(640px, 1fr);
  min-height: 620px;
  overflow: hidden;
  background: #1e1814;
  color: #ead4b8;
}

.discount-program__photo {
  min-height: 620px;
  overflow: hidden;
  background: #1c1511;
}

.discount-program__photo img {
  width: 100%;
  height: 100%;
  min-height: 620px;
  object-fit: cover;
  object-position: center;
}

.discount-program__content {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 620px;
  padding: clamp(48px, 5vw, 78px) clamp(36px, 6vw, 92px);
  background: radial-gradient(circle at 50% 44%, rgba(169, 111, 61, .18), transparent 42%), linear-gradient(115deg, #261f1b 0%, #171411 78%);
}

.discount-program__content::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0, 0, 0, .12), transparent 18%, rgba(255, 255, 255, .025) 52%, transparent);
  pointer-events: none;
}

.discount-program__inner {
  position: relative;
  z-index: 1;
  width: min(780px, 100%);
  text-align: center;
}

.discount-program h2 {
  margin: 0 0 22px;
  font-family: var(--serif);
  font-size: clamp(48px, 4.5vw, 78px);
  font-weight: 600;
  line-height: .96;
  letter-spacing: .025em;
  color: #e8c89e;
  text-transform: uppercase;
}

.discount-program h2::after,
.discount-program__final::after {
  content: "";
  display: block;
  width: 330px;
  max-width: 56%;
  height: 1px;
  margin: 22px auto 0;
  background: linear-gradient(90deg, transparent, rgba(232, 200, 158, .72), transparent);
}

.discount-program__subtitle {
  margin: 0 0 34px;
  font-family: var(--serif);
  font-size: clamp(23px, 2vw, 32px);
  color: #f0dfc9;
}

.discount-program__birthday {
  margin: 0 auto 26px;
  padding: 28px 36px 24px;
  border: 1px solid rgba(205, 160, 105, .62);
  background: linear-gradient(180deg, rgba(255, 255, 255, .03), rgba(255, 255, 255, .01));
  box-shadow: inset 0 0 40px rgba(0, 0, 0, .16);
}

.discount-program__birthday strong {
  display: block;
  font-family: var(--serif);
  font-size: clamp(36px, 3.5vw, 56px);
  font-weight: 600;
  line-height: 1;
  color: #efd5b3;
}

.discount-program__birthday strong span {
  margin-left: 16px;
  font-size: 1.2em;
}

.discount-program__birthday p {
  margin: 10px 0 0;
  color: #e9dac7;
  font-size: clamp(16px, 1.35vw, 21px);
  line-height: 1.35;
}

.discount-program__list {
  margin: 0;
  padding: 0;
  list-style: none;
  text-align: left;
}

.discount-program__list li {
  display: flex;
  align-items: baseline;
  gap: 12px;
  padding: 16px 12px 18px;
  border-bottom: 1px solid rgba(232, 200, 158, .26);
  color: #e5d4bf;
  font-size: clamp(15px, 1.35vw, 20px);
  line-height: 1.35;
}

.discount-program__list span {
  flex: 0 0 auto;
  color: #ead0ac;
  text-transform: lowercase;
}

.discount-program__list strong {
  font-family: var(--serif);
  font-size: 2.05em;
  line-height: .7;
  font-weight: 600;
  color: #e8c89e;
}

.discount-program__final {
  margin: 44px 0 0;
  font-family: var(--serif);
  font-size: clamp(28px, 2.4vw, 42px);
  font-weight: 600;
  line-height: 1.05;
  color: #e8c89e;
  text-transform: uppercase;
  letter-spacing: .02em;
}

.discount-program__final strong {
  font-size: 1.18em;
}

.discount-program__final::after {
  margin-top: 22px;
  width: 220px;
}

.discount-program__site {
  margin: 22px 0 0;
  color: #f1e2ce;
  font-size: clamp(16px, 1.4vw, 20px);
  letter-spacing: .45em;
  text-transform: uppercase;
}

@media (max-width: 1180px) {
  .discount-program {
    grid-template-columns: 1fr;
  }

  .discount-program__photo {
    min-height: 500px;
  }

  .discount-program__photo img {
    min-height: 500px;
  }

  .discount-program__content {
    min-height: auto;
    padding: 56px 32px 64px;
  }
}

@media (max-width: 760px) {
  .discount-program__photo {
    min-height: 360px;
  }

  .discount-program__photo img {
    min-height: 360px;
  }

  .discount-program__content {
    padding: 42px 18px 50px;
  }

  .discount-program h2 {
    font-size: 38px;
  }

  .discount-program__subtitle {
    font-size: 22px;
    margin-bottom: 24px;
  }

  .discount-program__birthday {
    padding: 22px 16px 20px;
  }

  .discount-program__birthday strong {
    font-size: 34px;
  }

  .discount-program__birthday strong span {
    display: block;
    margin: 10px 0 0;
  }

  .discount-program__birthday p {
    font-size: 15px;
  }

  .discount-program__list li {
    display: block;
    padding: 15px 0;
    font-size: 15px;
    text-align: center;
  }

  .discount-program__list span {
    display: block;
    margin-bottom: 6px;
  }

  .discount-program__list strong {
    font-size: 34px;
  }

  .discount-program__final {
    margin-top: 34px;
    font-size: 26px;
  }

  .discount-program__site {
    font-size: 13px;
    letter-spacing: .25em;
  }
}

/* Payment redesign v3 */
.payment-v3 {
  padding: 22px 0 0;
  background: radial-gradient(circle at 72% 9%, rgba(215, 184, 147, .16), transparent 32%), var(--cream-2);
}

.payment-v3__container {
  /* Uses the shared .container width so its edges match the header and footer. */
  max-width: none;
}

.payment-v3 h1,
.payment-v3 h2,
.payment-v3 h3 {
  font-family: var(--serif);
  color: #241f1b;
}

.payment-v3__intro {
  display: grid;
  grid-template-columns: minmax(390px, 540px) minmax(360px, 520px);
  align-items: start;
  justify-content: space-between;
  gap: 64px;
  margin-bottom: 20px;
}

.payment-v3__intro-text h1 {
  margin: 0 0 18px;
  font-size: clamp(46px, 4.7vw, 66px);
  font-weight: 600;
  line-height: .96;
  letter-spacing: -.02em;
}

.payment-v3__intro-text>p {
  max-width: 540px;
  margin: 0 0 24px;
  color: #332b25;
  font-size: 16px;
  line-height: 1.75;
}

.payment-v3__notice {
  display: grid;
  grid-template-columns: 64px 1fr;
  align-items: center;
  gap: 22px;
  min-height: 118px;
  padding: 24px 28px;
  border: 1px solid rgba(166, 121, 77, .22);
  border-radius: 10px;
  background: rgba(255, 255, 255, .45);
  box-shadow: 0 18px 45px rgba(69, 45, 28, .045);
}

.payment-v3__notice img {
  width: 58px;
  height: 58px;
  filter: invert(48%) sepia(18%) saturate(1163%) hue-rotate(349deg) brightness(90%) contrast(85%);
}

.payment-v3__notice p {
  margin: 0;
  font-family: var(--serif);
  font-size: 21px;
  font-weight: 600;
  line-height: 1.32;
  color: #33271f;
}

.payment-v3__certificate {
  margin: 0;
  justify-self: center;
  width: min(100%, 430px);
}

.payment-v3__certificate img {
  width: 100%;
  border-radius: 6px;
  filter: drop-shadow(0 18px 30px rgba(94, 59, 29, .10));
}

.payment-v3__grid {
  display: grid;
  grid-template-columns: minmax(330px, 1fr) minmax(420px, 1.35fr);
  gap: 18px;
  align-items: stretch;
}

.payment-v3__card {
  border: 1px solid rgba(166, 121, 77, .18);
  border-radius: 11px;
  background: rgba(255, 255, 255, .48);
  box-shadow: 0 18px 48px rgba(70, 47, 31, .04);
}

.payment-v3__delivery,
.payment-v3__pay {
  padding: 26px 28px;
}

.payment-v3__card-head {
  display: grid;
  grid-template-columns: 48px 1fr;
  align-items: center;
  gap: 18px;
  margin-bottom: 22px;
}

.payment-v3__card-head img {
  width: 42px;
  height: 42px;
  filter: invert(48%) sepia(18%) saturate(1163%) hue-rotate(349deg) brightness(90%) contrast(85%);
}

.payment-v3__card h2 {
  margin: 0;
  font-size: 27px;
  font-weight: 600;
  line-height: 1.08;
}

.payment-v3__text-block {
  margin-left: 54px;
  color: #302923;
  font-size: 15px;
  line-height: 1.72;
}

.payment-v3__text-block p {
  margin: 0 0 12px;
}

.payment-v3__text-block strong {
  font-weight: 600;
}

.payment-v3__store {
  width: 100%;
  height: 205px;
  margin-top: 20px;
  border-radius: 7px;
  object-fit: cover;
  object-position: center;
}

.payment-v3__pay-inner {
  display: grid;
  grid-template-columns: 1fr 252px;
  gap: 26px;
  align-items: start;
}

.payment-v3__pay-list {
  display: grid;
  gap: 18px;
  padding-right: 28px;
  border-right: 1px solid rgba(166, 121, 77, .28);
}

.payment-v3__pay-inner:not(:has(.payment-v3__qr-wrap)) {
  grid-template-columns: 1fr;
}

.payment-v3__pay-inner:not(:has(.payment-v3__qr-wrap)) .payment-v3__pay-list {
  padding-right: 0;
  border-right: 0;
}

/* The separator belongs only to the QR-code column. */
.payment-v3__pay-inner:not(:has(.payment-v3__qr-wrap)) {
  grid-template-columns: 1fr;
}

.payment-v3__pay-inner:not(:has(.payment-v3__qr-wrap)) .payment-v3__pay-list {
  padding-right: 0;
  border-right: 0;
}

.payment-v3__pay-item {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 18px;
  align-items: start;
}

.payment-v3__pay-item img {
  width: 34px;
  height: 34px;
  filter: invert(48%) sepia(18%) saturate(1163%) hue-rotate(349deg) brightness(90%) contrast(85%);
}

.payment-v3__pay-item p {
  margin: 0;
  color: #302923;
  font-size: 14px;
  line-height: 1.55;
}

.payment-v3__pay-item strong {
  display: inline-block;
  margin-bottom: 3px;
  font-weight: 600;
}

.payment-v3__qr-wrap {
  display: grid;
  justify-items: center;
  gap: 16px;
}

.payment-v3__qr {
  width: 190px;
  border-radius: 6px;
  box-shadow: 0 12px 26px rgba(56, 38, 26, .06);
}

.payment-v3__receipts {
  display: flex;
  align-items: end;
  justify-content: center;
  gap: 9px;
  width: 100%;
}

.payment-v3__receipts span {
  max-width: 74px;
  color: #936743;
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 600;
  line-height: 1.05;
}

.payment-v3__receipts button {
  width: 52px;
  height: 64px;
  padding: 3px;
  border: 1px solid rgba(166, 121, 77, .28);
  border-radius: 5px;
  background: #fffaf4;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.payment-v3__receipts button:hover {
  transform: translateY(-2px);
  border-color: var(--gold);
  box-shadow: 0 10px 20px rgba(68, 44, 27, .12);
}

.payment-v3__receipts button img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  border-radius: 3px;
}

.payment-v3__bank-cards {
  min-height: 146px;
  padding: 24px 26px;
}

.payment-v3__bank-cards h2 {
  margin: 0 0 24px;
  font-size: 26px;
  line-height: 1.05;
}

.payment-v3__logos {
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
}

.payment-logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 34px;
  font-weight: 800;
  letter-spacing: -.02em;
  line-height: 1;
}

.payment-logo--visa {
  color: #1b59a8;
  font-size: 31px;
  font-style: italic;
}

.payment-logo--mc {
  gap: 0;
  color: #eb6b22;
  font-size: 42px;
  letter-spacing: -.34em;
  transform: translateX(-5px);
}

.payment-logo--bel {
  color: #2473bd;
  font-size: 19px;
}

.payment-logo--mir {
  color: #239351;
  font-size: 30px;
}

.payment-v3__security {
  padding: 20px 28px;
}

.payment-v3__security ul {
  margin: 0;
  padding: 0;
  list-style: none;
  columns: 1;
}

.payment-v3__security li {
  position: relative;
  margin: 0 0 7px;
  padding-left: 26px;
  color: #3a3029;
  font-size: 13px;
  line-height: 1.38;
}

.payment-v3__security li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  width: 15px;
  height: 15px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--gold);
  border-radius: 50%;
  color: var(--gold);
  font-size: 10px;
  font-weight: 700;
}

.payment-v3__return {
  display: grid;
  grid-template-columns: 285px 1fr;
  gap: 24px;
  align-items: start;
  margin-top: 18px;
  padding: 18px 20px;
}

.payment-v3__return>img {
  width: 100%;
  height: 210px;
  object-fit: cover;
  border-radius: 8px;
}

.payment-v3__return h2 {
  margin: 0 0 10px;
  font-size: 29px;
  font-weight: 600;
  line-height: 1.05;
}

.payment-v3__return p {
  margin: 0 0 9px;
  color: #2f2822;
  font-size: 14px;
  line-height: 1.48;
}

.payment-v3__legal-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 14px;
}

.payment-v3__mini-card {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 18px;
  align-items: center;
  min-height: 112px;
  padding: 18px 20px;
  border: 1px solid rgba(166, 121, 77, .17);
  border-radius: 9px;
  background: rgba(255, 255, 255, .45);
}

.payment-v3__mini-card img {
  width: 46px;
  height: 46px;
  filter: invert(48%) sepia(18%) saturate(1163%) hue-rotate(349deg) brightness(90%) contrast(85%);
}

.payment-v3__mini-card h3 {
  margin: 0 0 6px;
  font-size: 21px;
  font-weight: 600;
  line-height: 1.05;
}

.payment-v3__mini-card p {
  margin: 0;
  color: #3f352d;
  font-size: 12.5px;
  line-height: 1.42;
}

.payment-v3__info-strip {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 12px;
  margin-top: 12px;
}

.payment-v3__info-strip>div {
  display: grid;
  grid-template-columns: 38px 1fr;
  align-items: center;
  gap: 16px;
  min-height: 66px;
  padding: 13px 20px;
  border: 1px solid rgba(166, 121, 77, .16);
  border-radius: 8px;
  background: rgba(255, 255, 255, .42);
  color: #332c26;
  font-size: 13px;
  line-height: 1.42;
}

.payment-v3__info-strip img {
  width: 34px;
  height: 34px;
  filter: invert(48%) sepia(18%) saturate(1163%) hue-rotate(349deg) brightness(90%) contrast(85%);
}

.payment-v3__features {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin: 18px 0 10px;
  border-top: 1px solid rgba(166, 121, 77, .16);
  border-bottom: 1px solid rgba(166, 121, 77, .16);
}

.payment-v3__features>div {
  min-height: 82px;
  display: grid;
  grid-template-columns: 46px 1fr;
  align-items: center;
  gap: 18px;
  padding: 18px 28px;
  color: #2e2823;
  font-size: 13px;
  line-height: 1.35;
}

.payment-v3__features>div:not(:last-child) {
  border-right: 1px solid rgba(166, 121, 77, .16);
}

.payment-v3__features img {
  width: 42px;
  height: 42px;
  filter: invert(48%) sepia(18%) saturate(1163%) hue-rotate(349deg) brightness(90%) contrast(85%);
}

.receipt-lightbox {
  position: fixed;
  inset: 0;
  z-index: 1500;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 28px;
}

.receipt-lightbox.is-open {
  display: flex;
}

.receipt-lightbox__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(15, 12, 10, .82);
  backdrop-filter: blur(5px);
}

.receipt-lightbox__dialog {
  position: relative;
  z-index: 1;
  max-width: min(92vw, 620px);
  max-height: 92vh;
  padding: 18px;
  border-radius: 14px;
  background: #fffaf4;
  box-shadow: 0 30px 80px rgba(0, 0, 0, .42);
}

.receipt-lightbox__dialog img {
  max-width: 100%;
  max-height: calc(92vh - 36px);
  object-fit: contain;
  border-radius: 8px;
}

.receipt-lightbox__close {
  position: absolute;
  top: -16px;
  right: -16px;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #fffaf4;
  color: #6a4324;
  font-size: 34px;
  line-height: 1;
  box-shadow: 0 12px 24px rgba(0, 0, 0, .25);
}

body.receipt-open {
  overflow: hidden;
}

@media (max-width: 1180px) {
  .payment-v3__intro {
    grid-template-columns: 1fr 390px;
    gap: 34px;
  }

  .payment-v3__grid {
    grid-template-columns: 1fr;
  }

  .payment-v3__pay-inner {
    grid-template-columns: 1fr 240px;
  }

  .payment-v3__legal-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 900px) {
  .payment-v3 {
    padding-top: 10px;
  }

  .payment-v3__intro {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .payment-v3__certificate {
    justify-self: start;
    max-width: 430px;
  }

  .payment-v3__pay-inner {
    grid-template-columns: 1fr;
  }

  .payment-v3__pay-list {
    padding-right: 0;
    padding-bottom: 22px;
    border-right: 0;
    border-bottom: 1px solid rgba(166, 121, 77, .28);
  }

  .payment-v3__bank-cards {
    order: 0;
  }

  .payment-v3__return {
    grid-template-columns: 1fr;
  }

  .payment-v3__return>img {
    height: 260px;
  }

  .payment-v3__info-strip {
    grid-template-columns: 1fr;
  }

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

  .payment-v3__features>div:nth-child(2n) {
    border-right: 0;
  }
}

@media (max-width: 620px) {
  .payment-v3__intro-text h1 {
    font-size: 44px;
  }

  .payment-v3__intro-text>p {
    font-size: 14px;
    line-height: 1.62;
  }

  .payment-v3__notice {
    grid-template-columns: 46px 1fr;
    gap: 16px;
    padding: 18px;
  }

  .payment-v3__notice img {
    width: 42px;
    height: 42px;
  }

  .payment-v3__notice p {
    font-size: 18px;
  }

  .payment-v3__delivery,
  .payment-v3__pay {
    padding: 20px 18px;
  }

  .payment-v3__card-head {
    grid-template-columns: 38px 1fr;
    gap: 14px;
  }

  .payment-v3__card h2,
  .payment-v3__bank-cards h2,
  .payment-v3__return h2 {
    font-size: 24px;
  }

  .payment-v3__text-block {
    margin-left: 0;
  }

  .payment-v3__store {
    height: 180px;
  }

  .payment-v3__receipts {
    align-items: center;
    flex-wrap: wrap;
  }

  .payment-v3__receipts span {
    max-width: none;
    width: 100%;
    text-align: center;
  }

  .payment-v3__logos {
    gap: 18px;
  }

  .payment-v3__return {
    padding: 16px;
  }

  .payment-v3__return>img {
    height: 190px;
  }

  .payment-v3__mini-card {
    grid-template-columns: 44px 1fr;
    padding: 16px;
  }

  .payment-v3__mini-card img {
    width: 38px;
    height: 38px;
  }

  .payment-v3__features {
    grid-template-columns: 1fr;
  }

  .payment-v3__features>div {
    border-right: 0 !important;
    border-bottom: 1px solid rgba(166, 121, 77, .16);
  }

  .payment-v3__features>div:last-child {
    border-bottom: 0;
  }

  .receipt-lightbox {
    padding: 16px;
  }

  .receipt-lightbox__close {
    top: 8px;
    right: 8px;
  }
}

/* ==========================================================================
   WOOCOMMERCE NOTICES
   ========================================================================== */
.woocommerce-message,
.woocommerce-error,
.woocommerce-info {
  background: #fff;
  border: 1px solid rgba(84, 68, 56, .15);
  border-radius: 8px;
  padding: 16px 24px;
  margin: 0 0 24px;
  list-style: none;
  font-size: 16px;
  color: #2d251f;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
}

ul.woocommerce-error,
ul.woocommerce-message,
ul.woocommerce-info {
  padding: 16px 24px;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
}

.woocommerce-error li,
.woocommerce-message li,
.woocommerce-info li {
  margin: 0;
  display: flex;
  align-items: center;
  gap: 8px;
  list-style-type: none;
}

.woocommerce-error li::before,
.woocommerce-message li::before,
.woocommerce-info li::before {
  display: none !important;
}

.woocommerce-error {
  border-left: 4px solid #d9534f;
}

.woocommerce-message {
  border-left: 4px solid #63b365;
}

.woocommerce-info {
  border-left: 4px solid var(--gold);
}

.woocommerce-message .button,
.woocommerce-error .button,
.woocommerce-info .button {
  background: #3a2b23;
  color: #fff;
  padding: 8px 20px;
  border-radius: 4px;
  text-decoration: none;
  font-size: 14px;
  text-transform: uppercase;
  font-weight: 500;
  letter-spacing: 0.05em;
  transition: all 0.3s ease;
  margin-left: auto;
  border: none;
  cursor: pointer;
}

.woocommerce-message .button:hover,
.woocommerce-error .button:hover,
.woocommerce-info .button:hover {
  background: #b89b72;
}

@media (max-width: 768px) {

  .woocommerce-message,
  .woocommerce-error,
  .woocommerce-info {
    flex-direction: column;
    align-items: flex-start;
  }

  .woocommerce-message .button,
  .woocommerce-error .button,
  .woocommerce-info .button {
    margin-left: 0;
    width: 100%;
    text-align: center;
  }
}

/* Quantity number input styling */
.qty input[type="number"] {
  width: 42px !important;
  font-size: 20px !important;
  text-align: center;
  border: none;
  background: transparent;
  padding: 0;
  margin: 0;
  outline: none;
  color: #332b26;
  -moz-appearance: textfield;
  display: inline-flex !important;
  border-right: 1px solid rgba(84, 68, 56, .12);
}

.cart-row .qty input[type="number"] {
  width: 42px !important;
  font-size: 20px !important;
  border-right: 1px solid rgba(84, 68, 56, .12);
}

.qty input[type="number"]::-webkit-outer-spin-button,
.qty input[type="number"]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* ==========================================================================
   CHECKOUT PAGE
   ========================================================================== */

.checkout-page-content {
  padding: 40px 0 80px;
}

/* Layout: two-column */
.checkout-layout {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 48px;
  align-items: start;
  max-width: var(--container);
  margin: 0 auto;
}

/* ---- Section headings ---- */
.checkout-fields h2,
.checkout-summary h2 {
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 500;
  color: var(--text);
  margin: 0 0 24px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line);
  letter-spacing: 0.02em;
}

/* ---- Billing / Shipping form fields ---- */
.woocommerce-billing-fields h3,
.woocommerce-shipping-fields h3 {
  display: none;
}

.woocommerce-billing-fields .form-row,
.woocommerce-shipping-fields .form-row,
.woocommerce-additional-fields .form-row {
  margin: 0 0 16px;
  padding: 0;
}

.woocommerce-billing-fields .form-row label,
.woocommerce-shipping-fields .form-row label,
.woocommerce-additional-fields .form-row label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 6px;
}

.woocommerce-billing-fields .form-row .required,
.woocommerce-shipping-fields .form-row .required {
  color: var(--gold);
}

.woocommerce-billing-fields input[type="text"],
.woocommerce-billing-fields input[type="tel"],
.woocommerce-billing-fields input[type="email"],
.woocommerce-shipping-fields input[type="text"],
.woocommerce-shipping-fields input[type="tel"],
.woocommerce-shipping-fields input[type="email"],
.woocommerce-additional-fields textarea,
.woocommerce form .form-row select,
.woocommerce-page form .form-row select,
.select2-container .select2-selection--single {
  width: 100%;
  padding: 13px 16px;
  border: 1px solid rgba(84, 68, 56, 0.2);
  border-radius: 6px;
  background: #fff;
  font-family: var(--sans);
  font-size: 15px;
  color: var(--text);
  outline: none;
  transition: border-color 0.2s ease;
  box-sizing: border-box;
}

.woocommerce form .form-row select {
  height: 46px;
  /* matching input height */
  appearance: none;
  /* remove default arrow to replace with custom if needed, or leave it */
}

/* Select2 specific overrides */
.select2-container .select2-selection--single {
  height: auto;
  min-height: 46px;
  display: flex;
  align-items: center;
}

.select2-container .select2-selection--single .select2-selection__rendered {
  padding: 0;
  line-height: normal;
  color: var(--text);
}

.select2-container .select2-selection--single .select2-selection__arrow {
  height: 100%;
  right: 12px;
}

.woocommerce-billing-fields input:focus,
.woocommerce-shipping-fields input:focus,
.woocommerce-additional-fields textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(166, 121, 77, 0.08);
}

.woocommerce-additional-fields textarea {
  min-height: 100px;
  resize: vertical;
}

/* Two column fields */
.woocommerce-billing-fields__field-wrapper,
.woocommerce-shipping-fields__field-wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.woocommerce form .form-row {
  width: 100%;
}

.form-row-first,
.form-row-last {
  width: calc(50% - 12px) !important;
  margin-right: 0 !important;
  float: none !important;
}

/* Woo validation icons */
.woocommerce-input-wrapper {
  position: relative;
  display: block;
}

/* ---- Coupon toggle (above form) ---- */
.woocommerce-form-coupon-toggle {
  margin-bottom: 24px;
}

.woocommerce-form-coupon-toggle .woocommerce-info {
  border-left: 4px solid var(--gold);
  font-size: 14px;
  padding: 12px 20px;
  border-radius: 6px;
}

.woocommerce-form-coupon {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 20px 24px;
  margin-bottom: 24px;
  display: flex;
  gap: 12px;
  align-items: flex-end;
  flex-wrap: wrap;
}

.woocommerce-form-coupon .form-row {
  margin: 0;
  flex: 1 1 200px;
}

.woocommerce-form-coupon input#coupon_code {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid rgba(84, 68, 56, 0.2);
  border-radius: 6px;
  font-size: 15px;
  font-family: var(--sans);
  outline: none;
  transition: border-color 0.2s;
}

.woocommerce-form-coupon input#coupon_code:focus {
  border-color: var(--gold);
}

.woocommerce-form-coupon .button {
  min-height: 48px;
  padding: 0 24px;
  background: linear-gradient(135deg, #6d421e 0%, #4d2b16 100%);
  border-radius: 5px;
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 6px 16px rgba(91, 55, 28, 0.16);
  font-family: var(--sans);
}

.woocommerce-form-coupon .button:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 20px rgba(91, 55, 28, 0.22);
}

/* ---- Order review (right column) ---- */
.checkout-summary {
  position: sticky;
  top: 24px;
}

#order_review {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 28px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.04);
}

/* Order review table */
.woocommerce-checkout-review-order-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 24px;
  font-size: 15px;
}

.woocommerce-checkout-review-order-table thead th {
  text-align: left;
  padding: 0 0 12px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--muted);
  border-bottom: 1px solid var(--line);
}

.woocommerce-checkout-review-order-table thead th:last-child {
  text-align: right;
}

.woocommerce-checkout-review-order-table tbody td {
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
  vertical-align: middle;
  color: var(--text);
}

.woocommerce-checkout-review-order-table tbody td:last-child {
  text-align: right;
  font-weight: 500;
}

.product-name .product-quantity {
  color: var(--muted);
  font-size: 13px;
  margin-left: 4px;
}

/* Shipping & totals rows */
.woocommerce-checkout-review-order-table tfoot td,
.woocommerce-checkout-review-order-table tfoot th {
  padding: 12px 0;
  vertical-align: middle;
}

.woocommerce-checkout-review-order-table tfoot th {
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.04em;
  color: var(--text);
}

.woocommerce-checkout-review-order-table tfoot td {
  text-align: right;
}

.woocommerce-checkout-review-order-table tfoot .order-total th,
.woocommerce-checkout-review-order-table tfoot .order-total td {
  border-top: 1px solid var(--line);
  padding-top: 16px;
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 700;
  color: var(--text);
}

/* Shipping methods */
.woocommerce-shipping-methods {
  list-style: none;
  margin: 0;
  padding: 0;
}

.woocommerce-shipping-methods li {
  padding: 8px 0;
  font-size: 14px;
  color: var(--muted);
}

/* ---- Payment section ---- */
#payment {
  margin-top: 20px;
}

#payment .wc_payment_methods {
  list-style: none;
  margin: 0 0 20px;
  padding: 0;
}

#payment .wc_payment_methods li {
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  margin-bottom: 8px;
  cursor: pointer;
  transition: border-color 0.2s ease;
  font-size: 14px;
  color: var(--text);
}

#payment .wc_payment_methods li:has(input:checked) {
  border-color: var(--gold);
  background: rgba(166, 121, 77, 0.04);
}

#payment .wc_payment_methods li label {
  cursor: pointer;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 10px;
}

#payment .payment_box {
  padding: 12px 16px;
  background: #f9f6f2;
  border-radius: 6px;
  margin-top: 8px;
  font-size: 13px;
  line-height: 1.55;
  color: var(--muted);
}

/* Privacy policy notice */
.woocommerce-privacy-policy-text {
  font-size: 12px;
  color: var(--muted);
  margin: 16px 0;
  line-height: 1.6;
}

/* Place order button */
#place_order {
  width: 100%;
  min-height: 58px;
  background: linear-gradient(135deg, #3a2519 0%, #2a1b10 100%);
  color: #fff;
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.18);
  margin-top: 8px;
}

#place_order:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.22);
}

/* ---- Validation errors ---- */
.woocommerce-error {
  margin-bottom: 20px;
}

.form-row.woocommerce-invalid input {
  border-color: #d9534f;
}

.form-row.woocommerce-validated input {
  border-color: #63b365;
}

/* ---- Responsive ---- */
@media (max-width: 900px) {
  .checkout-layout {
    grid-template-columns: 1fr;
    padding: 0 24px;
    gap: 32px;
  }

  .checkout-summary {
    position: static;
  }

  .form-row-first,
  .form-row-last {
    display: block;
    width: 100%;
    margin-right: 0;
  }
}

.payment-v3__intro-text:has(.payment-v3__intro-custom)>h1,
.payment-v3__intro-text:has(.payment-v3__intro-custom)>p,
.payment-v3__intro-text:has(.payment-v3__intro-custom)>.payment-v3__notice {
  display: none;
}

.payment-v3__delivery:has(.payment-v3__admin-card)> :not(.payment-v3__admin-card),
.payment-v3__return:has(.payment-v3__admin-card)> :not(.payment-v3__admin-card),
.payment-v3__pay:has(.payment-v3__admin-card)> :not(.payment-v3__admin-card),
.payment-v3__security:has(.payment-v3__admin-card)> :not(.payment-v3__admin-card) {
  display: none;
}

.payment-v3__admin-card {
  width: 100%;
}

.payment-v3__admin-card h2 {
  margin: 0 0 20px;
}

/* Admin-managed exchange/return block: retain the two-column layout from payment.html. */
.payment-v3__admin-card--return {
  display: grid;
  grid-column: 1 / -1;
  grid-template-columns: 1fr;
  gap: 0;
}

.payment-v3__admin-card--return.payment-v3__admin-card--has-image {
  grid-template-columns: 285px minmax(0, 1fr);
  column-gap: 24px;
  align-items: start;
}

.payment-v3__admin-card--return.payment-v3__admin-card--has-image>img {
  grid-row: 1 / span 2;
  width: 100%;
  height: 210px;
  border-radius: 8px;
  object-fit: cover;
}

.payment-v3__admin-card--return>h2,
.payment-v3__admin-card--return>.entry-content {
  min-width: 0;
}

.payment-v3__admin-card--return>h2 {
  margin-bottom: 10px;
}

@media (max-width: 900px) {
  .payment-v3__admin-card--return.payment-v3__admin-card--has-image {
    grid-template-columns: 1fr;
    row-gap: 16px;
  }

  .payment-v3__admin-card--return.payment-v3__admin-card--has-image>img {
    grid-row: auto;
    height: 260px;
  }
}

@media (max-width: 620px) {
  .payment-v3__admin-card--return.payment-v3__admin-card--has-image>img {
    height: 190px;
  }
}

/* The benefits strip is nested in the payment container: keep it on the same grid. */
.payment-v3 .category-benefits {
  margin-top: 18px;
  padding: 12px 0 34px;
}

.payment-v3 .category-benefits__inner {
  width: 100%;
  max-width: none;
  margin: 0;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  padding: 12px 0;
  border-top: 1px solid rgba(166, 121, 77, .16);
  border-bottom: 1px solid rgba(166, 121, 77, .16);
}

.payment-v3 .category-benefit {
  min-height: 88px;
  grid-template-columns: 44px minmax(0, 1fr);
  gap: 16px;
  padding: 16px 26px;
}

.payment-v3 .category-benefit img {
  width: 40px;
  height: 40px;
}

@media (max-width: 620px) {
  .payment-v3 .category-benefits {
    padding-bottom: 24px;
  }

  .payment-v3 .category-benefits__inner {
    grid-template-columns: 1fr;
    padding: 0;
  }

  .payment-v3 .category-benefit {
    min-height: 74px;
    padding: 14px 0;
  }

  .payment-v3 .category-benefit:not(:last-child)::after {
    top: auto;
    right: 0;
    bottom: 0;
    left: 0;
    width: auto;
    height: 1px;
  }
}

/* Homepage desktop header: brand first, navigation next; burger is mobile only. */
@media (min-width: 1181px) {
  .header__inner {
    grid-template-columns: 220px minmax(0, 1fr) auto;
    gap: 40px;
  }

  .header .burger {
    display: none;
  }

  .header .logo--header {
    order: 1;
    justify-self: start;
    align-items: flex-start;
    text-align: left;
  }

  .header .nav {
    order: 2;
    justify-self: start;
  }

  .header .header-actions {
    order: 3;
  }
}

/* YITH renders the empty state inside a table row; make it a proper empty-state card. */
.page--wishlist .wishlist_table tr:has(.wishlist-empty) {
  display: block;
  min-height: 0;
  padding: 0;
  overflow: visible;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.page--wishlist .wishlist_table td.wishlist-empty {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 14px;
  min-height: 240px;
  padding: 36px;
  border: 1px solid rgba(166, 121, 77, .22) !important;
  border-radius: 12px;
  background: #fffdf9 !important;
  color: #66584d;
  font-family: var(--serif);
  font-size: 24px;
  line-height: 1.2;
  text-align: center;
  box-shadow: 0 12px 28px rgba(72, 51, 36, .05);
}

.page--wishlist .wishlist_table td.wishlist-empty::before {
  content: "♡";
  color: var(--gold);
  font-family: Arial, sans-serif;
  font-size: 50px;
  font-weight: 300;
  line-height: 1;
}

@media (max-width: 620px) {
  .page--wishlist .wishlist_table td.wishlist-empty {
    min-height: 190px;
    padding: 28px 20px;
    font-size: 22px;
  }
}

.payment-v3__admin-card .entry-content> :first-child {
  margin-top: 0;
}

.payment-v3__admin-card .entry-content> :last-child {
  margin-bottom: 0;
}

.payment-v3__content {
  max-width: 860px;
  margin: 0 0 36px;
  padding: 26px 30px;
  border: 1px solid rgba(166, 121, 77, .2);
  border-radius: 10px;
  background: #fffdf9;
  color: #4f453e;
  font-size: 16px;
  line-height: 1.65;
}

.payment-v3__content> :first-child {
  margin-top: 0;
}

.payment-v3__content> :last-child {
  margin-bottom: 0;
}

.payment-v3__content h2,
.payment-v3__content h3 {
  margin: 1.2em 0 .45em;
}

.payment-v3__content a {
  color: #7a4b28;
}

/* Catalogue result count and sorting bar. */
.catalog-topline {
  margin: 0 0 18px 304px;
}

.catalog-topline__count .woocommerce-result-count {
  margin: 0;
  padding: 9px 12px;
  border-radius: 99px;
  background: #f4eadf;
  color: #6d4b32;
  font-size: 12px;
  font-weight: 600;
}

.catalog-topline .woocommerce-ordering {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  float: none;
  margin: 0;
}

.catalog-topline .woocommerce-ordering::before {
  content: "Сортировка";
  color: var(--muted);
  font-size: 12px;
}

.catalog-topline .woocommerce-ordering select {
  min-height: 38px;
  padding: 0 34px 0 13px;
  border: 1px solid rgba(166, 121, 77, .32);
  border-radius: 7px;
  background-color: #fffdfa;
  color: var(--text);
  font: 600 12px var(--sans);
  outline: none;
  cursor: pointer;
}

.catalog-topline .woocommerce-ordering select:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(166, 121, 77, .12);
}

@media (max-width: 1180px) {
  .catalog-topline {
    margin-left: 280px;
  }
}

@media (max-width: 900px) {
  .catalog-topline {
    margin-left: 0;
  }
}

@media (max-width: 620px) {
  .catalog-topline .woocommerce-ordering {
    width: 100%;
    justify-content: space-between;
  }
}

/* Mobile layout guard: keep shared containers and footer columns inside the viewport. */
@media (max-width: 900px) {
  .page--wishlist .footer__inner {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 32px;
  }

  .footer__inner,
  .footer__legal,
  .footer__bottom,
  .footer-col {
    min-width: 0;
  }

  .footer-col a,
  .footer-col p {
    overflow-wrap: anywhere;
  }
}

@media (max-width: 620px) {

  .footer .container,
  .page--wishlist .footer .container,
  .page--wishlist .section {
    width: calc(100% - 32px);
    max-width: none;
  }

  .page--wishlist .footer__inner {
    grid-template-columns: minmax(0, 1fr);
    gap: 30px;
    padding: 38px 0;
  }

  .page--wishlist .wishlist_table td.wishlist-empty {
    width: 100%;
    box-sizing: border-box;
    min-height: 190px;
  }
}