:root {
  --blue: #c4d8e2;
  --blue-soft: #edf5f8;
  --burgundy: #76051c;
  --burgundy-dark: #76051c;
  --ink: #241317;
  --white: #fffdfb;
  --line: rgba(118, 5, 28, 0.16);
  --shadow: 0 24px 70px rgba(118, 5, 28, 0.08);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: var(--white);
  color: var(--ink);
  font-family: "Inter", "Helvetica Neue", Arial, sans-serif;
  line-height: 1.5;
}

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

.top-strip {
  align-items: center;
  background: #f4f4f4;
  color: var(--ink);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  justify-content: center;
  min-height: 34px;
  padding: 8px clamp(18px, 4vw, 56px);
}

.top-strip p {
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  margin: 0;
  text-transform: uppercase;
  white-space: nowrap;
}

.social-links {
  align-items: center;
  display: flex;
  gap: 14px;
  justify-self: start;
}

.social-links a {
  color: var(--ink);
  font-size: 1.2rem;
  font-weight: 800;
  line-height: 1;
}

.site-header {
  align-items: center;
  background: rgba(255, 253, 251, 0.92);
  border-bottom: 1px solid var(--line);
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  min-height: 58px;
  padding: 8px clamp(20px, 5vw, 72px) 7px;
  position: sticky;
  top: 0;
  z-index: 10;
}

.brand {
  align-items: center;
  display: inline-flex;
  justify-self: center;
}

.brand span {
  color: var(--burgundy);
  font-family: Impact, "Arial Black", "Helvetica Neue", Arial, sans-serif;
  font-size: clamp(1.18rem, 2.25vw, 2.1rem);
  font-weight: 900;
  letter-spacing: 0;
  line-height: 0.85;
  text-transform: uppercase;
  white-space: nowrap;
}

.header-sticker-logo {
  border-radius: 50%;
  display: none;
  height: 42px;
  object-fit: cover;
  width: 42px;
}

@media (min-width: 641px) {
  .product-logo-home .header-sticker-logo {
    display: block;
  }

  .product-logo-home span {
    display: none;
  }
}

.nav {
  align-items: center;
  display: flex;
  gap: clamp(18px, 3vw, 34px);
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0;
  justify-self: start;
  text-transform: uppercase;
}

html[lang="ka"] .site-header > .nav {
  font-size: 0.7rem;
  gap: clamp(10px, 1.5vw, 18px);
}

html[lang="ka"] .header-tools {
  font-size: 0.74rem;
}

.mobile-shop-menu {
  display: none;
}

.nav a,
.header-tools a,
.mobile-nav a {
  color: var(--burgundy-dark);
  position: relative;
  padding: 8px 0;
}

.nav a::after,
.header-tools a::after,
.mobile-nav a::after {
  background: var(--burgundy);
  bottom: 0;
  content: "";
  height: 1px;
  left: 0;
  position: absolute;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.22s ease;
  width: 100%;
}

.nav a:hover::after,
.nav a.active::after,
.header-tools a:hover::after,
.header-tools a.active::after,
.mobile-nav a:hover::after,
.mobile-nav a.active::after {
  transform: scaleX(1);
}

.header-tools {
  align-items: center;
  display: flex;
  gap: clamp(16px, 2.6vw, 28px);
  color: var(--burgundy-dark);
  font-size: 0.88rem;
  font-weight: 800;
  justify-self: end;
  text-transform: uppercase;
}

.header-tools span {
  line-height: 1;
}

.language-switcher {
  align-items: center;
  display: inline-flex;
  gap: 7px;
}

.language-switcher a,
.language-switcher span {
  color: var(--burgundy-dark);
  font-size: 0.78rem;
  font-weight: 900;
  padding: 0;
}

.language-switcher a.active {
  color: var(--burgundy);
}

.hero-slider {
  background: var(--blue);
  height: min(760px, calc(100vh - 134px));
  min-height: 430px;
  overflow: hidden;
  position: relative;
}

.hero-track {
  animation: hero-slide 9s ease-in-out infinite;
  display: flex;
  height: 100%;
  width: 300%;
  will-change: transform;
}

.hero-track picture {
  flex: 0 0 33.3333%;
  height: 100%;
  width: 33.3333%;
}

.hero-track img {
  display: block;
  height: 100%;
  object-fit: cover;
  width: 100%;
}

@keyframes hero-slide {
  0%,
  24% {
    transform: translateX(0);
  }

  36%,
  57% {
    transform: translateX(-33.3333%);
  }

  69%,
  90% {
    transform: translateX(-66.6666%);
  }

  100% {
    transform: translateX(0);
  }
}

.hero-overlay {
  align-items: center;
  bottom: clamp(34px, 6vw, 76px);
  display: flex;
  flex-direction: column;
  gap: 16px;
  left: 50%;
  position: absolute;
  text-align: center;
  transform: translateX(-50%);
}

.hero-overlay p {
  color: var(--white);
  font-size: clamp(2rem, 5vw, 5rem);
  font-family: Georgia, "Times New Roman", serif;
  line-height: 0.95;
  margin: 0;
  text-shadow: 0 2px 26px rgba(93, 0, 20, 0.28);
  white-space: nowrap;
}

.hero-overlay .button {
  background: var(--white);
  border-color: var(--white);
  color: var(--burgundy);
}

.page-hero,
.contact-copy {
  max-width: 760px;
}

.eyebrow,
.section-kicker,
.product-type {
  color: var(--burgundy);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0;
  margin: 0 0 14px;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  color: var(--burgundy-dark);
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  line-height: 0.95;
}

h1 {
  font-size: clamp(3.6rem, 9vw, 7rem);
  margin-bottom: 24px;
}

.page-hero h1,
.contact-copy h1 {
  font-size: clamp(3.1rem, 7vw, 5.8rem);
  max-width: 900px;
}

.lead,
.intro-grid p,
.product-card p,
.feature-card p,
.site-footer p {
  color: rgba(36, 19, 23, 0.72);
}

.lead {
  font-size: clamp(1.1rem, 2vw, 1.45rem);
  max-width: 640px;
}

.contact-details {
  border-top: 1px solid var(--line);
  display: grid;
  gap: 16px;
  margin: 30px 0 0;
  max-width: 640px;
  padding-top: 22px;
}

.contact-details div {
  display: grid;
  gap: 4px;
}

.contact-details dt {
  color: var(--burgundy);
  font-size: 0.74rem;
  font-weight: 900;
  text-transform: uppercase;
}

.contact-details dd {
  color: var(--burgundy-dark);
  font-size: clamp(1.05rem, 1.8vw, 1.35rem);
  margin: 0;
}

.contact-details a {
  color: inherit;
}

.button {
  align-items: center;
  border: 1px solid var(--burgundy);
  display: inline-flex;
  font-size: 0.8rem;
  font-weight: 800;
  justify-content: center;
  letter-spacing: 0;
  min-height: 48px;
  min-width: 148px;
  padding: 13px 20px;
  text-transform: uppercase;
}

.button.primary {
  background: var(--burgundy);
  color: var(--white);
}

.button.secondary {
  background: transparent;
  color: var(--burgundy);
}

.hero-mark {
  align-items: center;
  aspect-ratio: 0.72;
  background: var(--blue-soft);
  border: 1px solid var(--line);
  display: flex;
  justify-content: center;
  overflow: hidden;
  padding: clamp(18px, 3vw, 38px);
  width: min(100%, 520px);
  max-height: 480px;
}

.hero-mark img {
  height: 100%;
  object-fit: contain;
  width: 100%;
}

.intro-band {
  background: var(--blue);
  border-block: 1px solid var(--line);
  padding: clamp(34px, 5vw, 58px) clamp(20px, 5vw, 72px);
}

.intro-grid {
  align-items: end;
  display: grid;
  gap: 28px;
  grid-template-columns: minmax(0, 0.9fr) minmax(260px, 0.65fr);
  margin: 0 auto;
  max-width: 1180px;
}

.intro-grid h2 {
  font-size: clamp(2rem, 4.8vw, 4.6rem);
  margin-bottom: 0;
}

.intro-grid p {
  font-size: 1.05rem;
  margin-bottom: 0;
}

.featured-products,
.product-grid {
  display: grid;
  gap: 18px;
  padding: clamp(22px, 4vw, 44px) clamp(20px, 5vw, 72px) clamp(40px, 6vw, 78px);
}

.section-heading {
  padding: clamp(42px, 6vw, 76px) clamp(20px, 5vw, 72px) 0;
  text-align: center;
}

.section-heading h2 {
  color: var(--burgundy);
  font-family: "Inter", "Helvetica Neue", Arial, sans-serif;
  font-size: clamp(1.8rem, 4.4vw, 3.8rem);
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1;
  margin: 0 auto;
  max-width: 860px;
  text-transform: uppercase;
}

.section-heading p {
  color: var(--burgundy);
  font-size: 0.86rem;
  font-weight: 700;
  letter-spacing: 0;
  margin: 14px auto 0;
  max-width: 520px;
}

.reveal-ready .scroll-reveal {
  filter: blur(7px);
  opacity: 0;
  transform: translateY(38px);
  transition:
    opacity 0.9s ease,
    transform 0.9s cubic-bezier(0.22, 1, 0.36, 1),
    filter 0.9s ease;
}

.reveal-ready .scroll-reveal.is-visible {
  filter: blur(0);
  opacity: 1;
  transform: translateY(0);
}

.reveal-ready .feature-card.scroll-reveal:nth-child(2) {
  transition-delay: 0.08s;
}

.reveal-ready .feature-card.scroll-reveal:nth-child(3) {
  transition-delay: 0.16s;
}

.section-heading.compact {
  padding-top: clamp(18px, 3vw, 38px);
}

.best-sellers-heading {
  padding: clamp(42px, 5vw, 72px) clamp(34px, 4vw, 68px) 10px;
  text-align: left;
}

.best-sellers-heading h2 {
  font-size: clamp(1.9rem, 2.2vw, 2.7rem);
  font-weight: 500;
  line-height: 1;
  margin: 0;
  max-width: none;
}

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

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

.catalog-hero {
  max-width: none;
  padding: clamp(28px, 4vw, 48px) clamp(20px, 5vw, 72px) 0;
}

.catalog-hero h1 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.55rem, 2.5vw, 2.65rem);
  font-weight: 500;
  line-height: 1.1;
  margin-bottom: 0;
  max-width: none;
  white-space: nowrap;
}

.boxes-hero h1 {
  white-space: normal;
}

.square-product-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  padding: clamp(8px, 1.5vw, 18px) clamp(20px, 5vw, 72px) clamp(46px, 7vw, 88px);
}

.box-product-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  max-width: 940px;
}

.sets-product-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-inline: auto;
  max-width: 100%;
  width: calc(75% + 32px);
}

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

.other-product-grid .square-product-card img {
  object-fit: cover;
}

.clip-size-product-grid .square-product-card img {
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.clip-size-product-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  max-width: 1180px;
}

.square-product-card {
  background: var(--white);
  border: 1px solid rgba(36, 19, 23, 0.08);
  padding: 16px;
}

.square-product-card img {
  aspect-ratio: 1 / 1;
  background: var(--white);
  display: block;
  height: auto;
  object-fit: contain;
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
  width: 100%;
}

.square-product-card:hover img,
.square-product-card:active img,
.square-product-card:focus-within img {
  transform: scale(1.055);
}

.square-product-card p {
  color: var(--burgundy);
  font-size: 0.72rem;
  font-weight: 900;
  margin: 18px 0 8px;
  text-transform: uppercase;
}

.square-product-card h2 {
  font-size: clamp(1.45rem, 2.2vw, 2.15rem);
  margin: 0;
}

.square-product-card .product-description {
  color: rgba(36, 19, 23, 0.68);
  font-family: "Inter", "Helvetica Neue", Arial, sans-serif;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0;
  line-height: 1.35;
  margin: 8px 0 0;
  max-width: 30em;
  text-transform: none;
}

html[lang="ka"] .square-product-card h2 {
  font-size: 1.3rem;
  line-height: 1.22;
}

.product-purchase {
  border-top: 1px solid var(--line);
  display: grid;
  gap: 7px;
  margin-top: 18px;
  padding-top: 16px;
}

.product-purchase strong {
  color: var(--burgundy-dark);
  font-size: 0.96rem;
  font-weight: 900;
}

.product-purchase span {
  color: rgba(36, 19, 23, 0.68);
  font-size: 0.78rem;
  font-weight: 700;
}

.buy-button {
  background: var(--burgundy);
  border: 1px solid var(--burgundy);
  color: var(--white);
  cursor: pointer;
  font: inherit;
  font-size: 0.74rem;
  font-weight: 900;
  justify-self: start;
  letter-spacing: 0.08em;
  margin-top: 7px;
  min-height: 38px;
  padding: 10px 18px;
  text-transform: uppercase;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.buy-button:hover {
  background: var(--white);
  color: var(--burgundy);
  transform: translateY(-1px);
}

.buy-button:disabled {
  cursor: wait;
  opacity: 0.72;
  transform: none;
}

.cart-toggle {
  align-items: center;
  background: transparent;
  border: 0;
  bottom: 18px;
  box-shadow: none;
  color: var(--white);
  cursor: pointer;
  display: inline-flex;
  flex-direction: column;
  font: inherit;
  font-size: 0.74rem;
  font-weight: 900;
  gap: 3px;
  isolation: isolate;
  justify-content: center;
  letter-spacing: 0.06em;
  min-height: 94px;
  min-width: 160px;
  padding: 32px 34px 25px;
  position: fixed;
  right: 18px;
  text-transform: uppercase;
  --cart-claw-mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 1000 600' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M320 104C315 35 392 8 500 8C608 8 685 35 680 104C677 146 633 165 633 205C633 230 664 221 707 229C843 254 963 318 996 426C1012 479 979 520 936 519C921 559 900 590 865 590C825 590 826 536 810 513C792 552 776 590 739 590C701 590 708 535 690 513C672 552 657 590 620 590C581 590 588 531 570 508C551 552 535 590 500 590C465 590 449 552 430 508C412 531 419 590 380 590C343 590 328 552 310 513C292 535 299 590 261 590C224 590 208 552 190 513C174 536 175 590 135 590C100 590 79 559 64 519C21 520 -12 479 4 426C37 318 157 254 293 229C336 221 367 230 367 205C367 165 323 146 320 104Z'/%3E%3C/svg%3E") center / 100% 100% no-repeat;
  z-index: 30;
}

.cart-toggle::before,
.cart-toggle::after {
  content: "";
  inset: 0;
  mask: var(--cart-claw-mask);
  pointer-events: none;
  position: absolute;
  -webkit-mask: var(--cart-claw-mask);
}

.cart-toggle::before {
  background: var(--burgundy);
  filter: drop-shadow(0 12px 22px rgba(118, 5, 28, 0.24));
  z-index: -1;
}

.cart-toggle::after {
  background: var(--white);
  inset: -3px;
  z-index: -2;
}

.cart-count {
  align-items: center;
  background: var(--white);
  border-radius: 999px;
  color: var(--burgundy);
  display: inline-flex;
  font-size: 0.72rem;
  justify-content: center;
  min-height: 29px;
  min-width: 29px;
  padding: 0 6px;
  position: relative;
  z-index: 1;
}

.cart-count[hidden] {
  display: none;
}

.cart-backdrop {
  background: rgba(36, 19, 23, 0.34);
  inset: 0;
  opacity: 0;
  pointer-events: none;
  position: fixed;
  transition: opacity 0.2s ease;
  z-index: 38;
}

.cart-drawer {
  background: var(--white);
  box-shadow: -18px 0 70px rgba(36, 19, 23, 0.18);
  display: grid;
  gap: 12px;
  grid-template-rows: auto minmax(220px, 1fr) auto auto auto auto;
  height: 100vh;
  max-width: min(520px, 100vw);
  overflow-y: auto;
  padding: 20px;
  position: fixed;
  right: 0;
  top: 0;
  transform: translateX(102%);
  transition: transform 0.24s ease;
  width: 520px;
  z-index: 40;
}

.cart-open {
  overflow: hidden;
}

.cart-open .cart-backdrop {
  opacity: 1;
  pointer-events: auto;
}

.cart-open .cart-drawer {
  transform: translateX(0);
}

.cart-header {
  align-items: center;
  border-bottom: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  padding-bottom: 12px;
}

.cart-header h2 {
  font-family: "Inter", "Helvetica Neue", Arial, sans-serif;
  font-size: 1.06rem;
  font-weight: 900;
  margin: 0;
  text-transform: uppercase;
}

.cart-close {
  background: transparent;
  border: 0;
  color: var(--burgundy);
  cursor: pointer;
  font-size: 1.8rem;
  line-height: 1;
}

.cart-items {
  align-content: start;
  display: grid;
  gap: 10px;
  min-height: 0;
  overflow-y: auto;
  padding-right: 4px;
}

.cart-empty {
  color: rgba(36, 19, 23, 0.68);
  font-weight: 700;
  margin: 0;
}

.cart-item {
  align-items: start;
  border: 1px solid var(--line);
  display: grid;
  gap: 8px 12px;
  grid-template-columns: minmax(0, 1fr) auto;
  padding: 11px;
}

.cart-product {
  align-items: start;
  display: grid;
  gap: 9px;
  grid-template-columns: 44px minmax(0, 1fr);
  min-width: 0;
}

.cart-product-image {
  aspect-ratio: 1;
  background: var(--cream);
  border: 1px solid var(--line);
  display: block;
  height: 44px;
  object-fit: cover;
  width: 44px;
}

.cart-item-copy {
  min-width: 0;
}

.cart-item p {
  color: var(--burgundy);
  font-size: 0.62rem;
  font-weight: 900;
  margin: 0 0 3px;
  text-transform: uppercase;
}

.cart-item h3 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.12rem;
  line-height: 1.05;
  margin: 0 0 6px;
}

.cart-item strong {
  color: var(--burgundy-dark);
  font-size: 0.8rem;
}

.quantity-control {
  align-items: center;
  display: inline-flex;
  gap: 0;
  width: fit-content;
}

.quantity-control button,
.quantity-control span {
  align-items: center;
  border: 1px solid var(--line);
  display: inline-flex;
  font-weight: 900;
  justify-content: center;
  min-height: 30px;
  min-width: 34px;
}

.quantity-control button {
  background: var(--white);
  color: var(--burgundy);
  cursor: pointer;
  font: inherit;
}

.cart-remove,
.cart-continue {
  background: transparent;
  border: 0;
  color: rgba(36, 19, 23, 0.68);
  cursor: pointer;
  font: inherit;
  font-size: 0.7rem;
  font-weight: 900;
  justify-self: start;
  padding: 0;
  text-transform: uppercase;
}

.cart-remove {
  grid-column: 1 / -1;
}

.delivery-options {
  border: 0;
  display: grid;
  gap: 7px;
  margin: 0;
  min-width: 0;
  padding: 0;
}

.delivery-options legend {
  color: var(--burgundy-dark);
  font-weight: 900;
  font-size: 0.78rem;
  margin-bottom: 2px;
  text-transform: uppercase;
}

.delivery-option {
  align-items: center;
  border: 1px solid var(--line);
  cursor: pointer;
  display: grid;
  gap: 8px;
  grid-template-columns: auto minmax(0, 1fr) auto;
  padding: 9px 10px;
}

.delivery-option:has(input:checked) {
  border-color: var(--burgundy);
  box-shadow: inset 0 0 0 1px var(--burgundy);
}

.delivery-option input {
  accent-color: var(--burgundy);
}

.delivery-option span {
  display: grid;
  gap: 3px;
}

.delivery-option strong,
.delivery-option b {
  color: var(--burgundy-dark);
  font-size: 0.82rem;
  white-space: nowrap;
}

.delivery-option small {
  color: rgba(36, 19, 23, 0.64);
  font-size: 0.72rem;
  font-weight: 700;
  line-height: 1.25;
}

.delivery-option em {
  color: var(--burgundy);
  font-size: 0.6rem;
  font-style: normal;
  font-weight: 900;
  text-transform: uppercase;
}

.cart-summary {
  border-top: 1px solid var(--line);
  display: grid;
  gap: 6px;
  padding-top: 10px;
}

.cart-summary div {
  align-items: center;
  display: flex;
  justify-content: space-between;
}

.cart-summary span {
  color: rgba(36, 19, 23, 0.68);
  font-size: 0.82rem;
  font-weight: 800;
}

.cart-summary strong {
  color: var(--burgundy-dark);
  font-size: 0.88rem;
  font-weight: 900;
}

.cart-message {
  background: rgba(118, 5, 28, 0.08);
  color: var(--burgundy);
  font-size: 0.76rem;
  font-weight: 800;
  line-height: 1.45;
  margin: 0;
  padding: 10px;
}

.cart-checkout {
  background: var(--burgundy);
  border: 1px solid var(--burgundy);
  color: var(--white);
  cursor: pointer;
  font: inherit;
  font-weight: 900;
  min-height: 44px;
  text-transform: uppercase;
}

.cart-checkout:disabled {
  cursor: not-allowed;
  opacity: 0.58;
}

.checkout-page {
  background: var(--white);
  min-height: calc(100vh - 88px);
  padding: clamp(40px, 5vw, 78px) clamp(22px, 6vw, 92px);
}

.checkout-intro {
  color: rgba(36, 19, 23, 0.64);
  margin: 0 auto clamp(28px, 4vw, 48px);
  max-width: 860px;
  text-align: center;
}

.checkout-intro p {
  color: var(--burgundy);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.checkout-intro h1 {
  color: var(--burgundy-dark);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.6rem, 5vw, 5.4rem);
  font-weight: 500;
  line-height: 0.95;
  margin-bottom: 14px;
}

.checkout-intro span {
  display: inline-block;
  font-size: clamp(0.98rem, 1.4vw, 1.22rem);
  font-weight: 700;
  line-height: 1.55;
  max-width: 820px;
}

.checkout-form {
  align-items: start;
  display: grid;
  gap: clamp(24px, 4vw, 54px);
  grid-template-columns: minmax(0, 1.35fr) minmax(320px, 0.75fr);
}

.checkout-details {
  display: grid;
  gap: 22px;
}

.checkout-block,
.checkout-summary {
  border: 1px solid var(--line);
  background: var(--white);
}

.checkout-block {
  padding: clamp(22px, 3vw, 34px);
}

.checkout-block h2,
.checkout-summary h2 {
  color: var(--burgundy-dark);
  font-family: "Inter", "Helvetica Neue", Arial, sans-serif;
  font-size: clamp(1rem, 1.25vw, 1.28rem);
  font-weight: 900;
  margin: 0 0 20px;
  text-transform: uppercase;
}

.checkout-fields {
  display: grid;
  gap: 18px 22px;
}

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

.checkout-fields label {
  color: var(--burgundy-dark);
  display: grid;
  font-size: 0.9rem;
  font-weight: 900;
  gap: 8px;
}

.checkout-fields .full-width {
  grid-column: 1 / -1;
}

.checkout-fields input,
.checkout-fields select,
.checkout-fields textarea {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 0;
  color: var(--ink);
  font: inherit;
  font-size: 0.98rem;
  font-weight: 650;
  min-height: 48px;
  padding: 12px 14px;
  width: 100%;
}

.checkout-fields textarea {
  min-height: 96px;
  resize: vertical;
}

.checkout-delivery-options {
  display: grid;
  gap: 12px;
}

.checkout-delivery-options label {
  align-items: center;
  border: 1px solid var(--line);
  cursor: pointer;
  display: grid;
  gap: 12px;
  grid-template-columns: auto minmax(0, 1fr) auto;
  padding: 16px;
}

.checkout-delivery-options label:has(input:checked) {
  border-color: var(--burgundy);
  box-shadow: inset 0 0 0 1px var(--burgundy);
}

.checkout-delivery-options input {
  accent-color: var(--burgundy);
}

.checkout-delivery-options span {
  display: grid;
  gap: 4px;
}

.checkout-delivery-options strong,
.checkout-delivery-options b {
  color: var(--burgundy-dark);
  font-size: 0.96rem;
  font-weight: 900;
}

.checkout-delivery-options small {
  color: rgba(36, 19, 23, 0.64);
  font-weight: 750;
  line-height: 1.35;
}

.checkout-delivery-options em {
  color: var(--burgundy);
  font-size: 0.68rem;
  font-style: normal;
  font-weight: 900;
  text-transform: uppercase;
}

.payment-preview div {
  background: rgba(118, 5, 28, 0.06);
  display: grid;
  gap: 8px;
  padding: 18px;
}

.payment-preview strong {
  color: var(--burgundy-dark);
  font-size: 1rem;
  font-weight: 900;
}

.payment-preview span {
  color: rgba(36, 19, 23, 0.68);
  font-weight: 750;
  line-height: 1.5;
}

.checkout-summary {
  display: grid;
  gap: 20px;
  padding: clamp(22px, 3vw, 34px);
  position: sticky;
  top: 24px;
}

.checkout-summary-items {
  display: grid;
  gap: 14px;
}

.checkout-summary-item {
  align-items: center;
  display: grid;
  gap: 14px;
  grid-template-columns: 72px minmax(0, 1fr) auto;
}

.checkout-summary-item img {
  aspect-ratio: 1;
  background: var(--blue-soft);
  object-fit: cover;
  width: 72px;
}

.checkout-summary-item div {
  display: grid;
  gap: 3px;
}

.checkout-summary-item strong {
  color: var(--burgundy-dark);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.2rem;
  font-weight: 500;
}

.checkout-summary-item span,
.checkout-summary-item small {
  color: rgba(36, 19, 23, 0.62);
  font-size: 0.78rem;
  font-weight: 850;
  text-transform: uppercase;
}

.checkout-summary-item b {
  color: var(--burgundy);
  font-size: 0.92rem;
  white-space: nowrap;
}

.checkout-summary-totals {
  border-top: 1px solid var(--line);
  display: grid;
  gap: 12px;
  padding-top: 18px;
}

.checkout-summary-totals div {
  align-items: center;
  display: flex;
  justify-content: space-between;
}

.checkout-summary-totals span {
  color: rgba(36, 19, 23, 0.64);
  font-weight: 850;
}

.checkout-summary-totals strong {
  color: var(--burgundy-dark);
  font-weight: 900;
}

.checkout-summary-totals div:last-child {
  border-top: 1px solid var(--line);
  padding-top: 14px;
}

.checkout-summary-totals div:last-child span,
.checkout-summary-totals div:last-child strong {
  color: var(--burgundy);
  font-size: 1.15rem;
}

.checkout-message {
  background: rgba(118, 5, 28, 0.08);
  color: var(--burgundy);
  font-weight: 850;
  line-height: 1.45;
  margin: 0;
  padding: 14px;
}

.checkout-message[hidden] {
  display: none;
}

.checkout-pay {
  background: var(--burgundy);
  border: 1px solid var(--burgundy);
  color: var(--white);
  cursor: pointer;
  font: inherit;
  font-size: 0.92rem;
  font-weight: 900;
  min-height: 54px;
  text-transform: uppercase;
}

.checkout-consent {
  align-items: flex-start;
  cursor: pointer;
  display: flex;
  gap: 0.95rem;
  margin: 1rem 0;
  min-height: 52px;
  padding: 10px 0;
  font-size: 0.82rem;
  line-height: 1.45;
}

.checkout-consent input {
  accent-color: var(--burgundy);
  flex: 0 0 auto;
  height: 28px;
  margin-top: 0.05rem;
  width: 28px;
}

.checkout-consent a {
  color: inherit;
  text-decoration: underline;
}

.payment-order-reference {
  font-weight: 700;
  letter-spacing: 0.04em;
}

.checkout-pay:disabled {
  cursor: not-allowed;
  opacity: 0.55;
}

.checkout-edit-cart,
.checkout-empty {
  color: rgba(36, 19, 23, 0.64);
  font-weight: 850;
}

.checkout-edit-cart {
  justify-self: start;
  text-transform: uppercase;
}

.payment-result {
  align-content: center;
  background: var(--blue-soft);
  display: grid;
  min-height: 100vh;
  padding: clamp(28px, 8vw, 96px);
}

.payment-result h1 {
  color: var(--burgundy);
  font-size: clamp(2.6rem, 7vw, 6rem);
  max-width: 780px;
}

.payment-result p:not(.eyebrow) {
  font-size: clamp(1rem, 2vw, 1.25rem);
  max-width: 520px;
}

.feature-card,
.product-card {
  border: 1px solid var(--line);
  min-height: 380px;
  padding: 22px;
}

.feature-card {
  background: var(--white);
}

.product-card {
  background: var(--white);
}

.feature-card h3,
.product-card h2 {
  font-size: clamp(1.55rem, 2.3vw, 2.4rem);
  margin-bottom: 8px;
}

.feature-card a {
  border-bottom: 1px solid var(--burgundy);
  color: var(--burgundy);
  display: inline-flex;
  font-size: 0.74rem;
  font-weight: 800;
  margin-top: 16px;
  padding-bottom: 4px;
  text-transform: uppercase;
}

.product-card p:not(.product-type) {
  margin-bottom: 0;
}

.product-visual {
  align-items: center;
  background: var(--white);
  border: 1px solid rgba(36, 19, 23, 0.08);
  display: flex;
  height: 190px;
  justify-content: center;
  margin-bottom: 24px;
  overflow: hidden;
  position: relative;
}

.best-sellers {
  gap: 2px;
  margin: 0;
  max-width: none;
  padding: 0 clamp(34px, 4vw, 68px) clamp(42px, 5vw, 72px);
  width: 100%;
}

.best-sellers .feature-card {
  border: 0;
  min-height: 0;
  padding: 0;
  text-align: center;
}

.best-sellers .feature-card-link {
  border: 0;
  color: inherit;
  display: block;
  margin: 0;
  padding: 0;
  text-transform: none;
}

.best-sellers .product-photo {
  aspect-ratio: 1 / 1;
  background: #f7f7f7;
  display: grid;
  margin-bottom: 24px;
  overflow: hidden;
  padding: 0;
  place-items: center;
}

.best-sellers .product-photo img {
  height: 100%;
  object-fit: cover;
  width: 100%;
  transition: opacity 0.28s ease, transform 0.35s ease;
}

.best-sellers .feature-card:nth-child(3) .product-photo img {
  object-position: center bottom;
}

.best-sellers .feature-card:focus {
  outline: none;
}

.best-sellers .feature-card:focus-visible {
  outline: 1px solid rgba(110, 0, 26, 0.45);
  outline-offset: 6px;
}

.best-sellers .feature-card:hover .product-photo img,
.best-sellers .feature-card:active .product-photo img,
.best-sellers .feature-card:focus .product-photo img {
  opacity: 0.88;
  transform: scale(1.04);
}

.best-sellers .feature-card p {
  color: var(--burgundy);
  font-size: clamp(0.8rem, 0.95vw, 1rem);
  font-weight: 500;
  letter-spacing: 0.06em;
  margin: 0 0 10px;
  text-transform: uppercase;
}

.best-sellers .feature-card h3 {
  color: var(--burgundy);
  font-family: "Inter", "Helvetica Neue", Arial, sans-serif;
  font-size: clamp(0.95rem, 1.1vw, 1.15rem);
  font-weight: 500;
  letter-spacing: 0.04em;
  line-height: 1.25;
  margin: 0;
  text-transform: uppercase;
}

.lifestyle-slider {
  overflow: hidden;
  padding: 0 0 clamp(42px, 5vw, 72px);
  width: 100%;
}

.lifestyle-track {
  --lifestyle-gap: 12px;
  --lifestyle-half-gap: 6px;
  animation: lifestyle-scroll 34s linear infinite;
  backface-visibility: hidden;
  display: flex;
  gap: var(--lifestyle-gap);
  transform: translate3d(0, 0, 0);
  transform-style: preserve-3d;
  will-change: transform;
  width: max-content;
}

.lifestyle-slide {
  aspect-ratio: 1;
  display: block;
  flex: 0 0 clamp(280px, 31vw, 520px);
  overflow: hidden;
}

.lifestyle-slide img {
  display: block;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
  width: 100%;
}

.lifestyle-slide:nth-child(3n) img {
  object-position: center bottom;
}

.lifestyle-slide:hover img,
.lifestyle-slide:active img,
.lifestyle-slide:focus img {
  transform: scale(1.035);
}

@keyframes lifestyle-scroll {
  to {
    transform: translate3d(calc(-50% - var(--lifestyle-half-gap)), 0, 0);
  }
}

.product-photo {
  aspect-ratio: 1 / 1;
  background: var(--white);
  border: 0;
  margin-bottom: 18px;
  overflow: hidden;
}

.product-photo img {
  display: block;
  height: 100%;
  object-fit: contain;
  width: 100%;
}

.favourite-strip {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  padding: clamp(22px, 4vw, 44px) clamp(20px, 5vw, 72px) clamp(42px, 6vw, 76px);
}

.favourite-strip article {
  align-items: center;
  background: var(--white);
  border: 1px solid rgba(36, 19, 23, 0.08);
  display: grid;
  gap: 22px;
  grid-template-columns: minmax(180px, 0.48fr) minmax(0, 1fr);
  padding: 22px;
}

.favourite-strip .product-visual {
  margin-bottom: 0;
}

.favourite-strip h3 {
  font-size: clamp(1.8rem, 3.5vw, 3.4rem);
  margin-bottom: 8px;
}

.favourite-strip p {
  color: rgba(36, 19, 23, 0.72);
  margin-bottom: 0;
}

.shop-by {
  background: var(--white);
  border-block: 1px solid var(--line);
  color: var(--burgundy);
  padding: clamp(42px, 6vw, 72px) clamp(20px, 5vw, 72px);
  text-align: center;
}

.shop-by h2 {
  color: var(--burgundy);
  font-family: "Inter", "Helvetica Neue", Arial, sans-serif;
  font-size: clamp(1.8rem, 4.4vw, 3.8rem);
  font-weight: 900;
  line-height: 1;
  margin-bottom: 28px;
  text-transform: uppercase;
}

.shop-links {
  display: grid;
  gap: 12px;
  grid-auto-columns: calc((100% - 24px) / 3);
  grid-auto-flow: column;
  margin: 0 auto;
  max-width: 1500px;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
  width: 100%;
}

.shop-links::-webkit-scrollbar {
  display: none;
}

.shop-links a {
  aspect-ratio: 0.82;
  color: var(--white);
  display: block;
  overflow: hidden;
  position: relative;
  scroll-snap-align: start;
}

.shop-links a::after {
  background: linear-gradient(to top, rgba(36, 19, 23, 0.48), transparent 46%);
  content: "";
  inset: 0;
  position: absolute;
}

.shop-links img {
  display: block;
  height: 100%;
  object-fit: cover;
  transition: transform 0.09s ease;
  width: 100%;
}

.shop-links a:hover img {
  transform: scale(1.035);
}

.shop-links span {
  border-bottom: 1px solid currentColor;
  bottom: 7%;
  font-size: clamp(0.86rem, 1.5vw, 1.2rem);
  font-weight: 800;
  left: 7%;
  line-height: 1.2;
  position: absolute;
  text-transform: uppercase;
  z-index: 1;
}

.community {
  overflow: hidden;
  padding-bottom: clamp(40px, 6vw, 80px);
}

.community-marquee {
  margin-top: clamp(26px, 4vw, 46px);
  overflow: hidden;
  width: 100%;
}

.community-track {
  animation: community-scroll 34s linear infinite;
  display: flex;
  gap: 16px;
  width: max-content;
}

.community-track img {
  aspect-ratio: 4 / 5;
  display: block;
  height: clamp(250px, 28vw, 430px);
  object-fit: cover;
  width: auto;
}

.about-preview {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1fr);
  min-height: clamp(520px, 48vw, 720px);
}

.about-image {
  overflow: hidden;
}

.about-image picture {
  display: block;
  height: 100%;
  width: 100%;
}

.about-image img {
  display: block;
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.about-copy {
  align-items: flex-start;
  background: #efe4df;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(46px, 8vw, 110px);
}

.about-copy h2 {
  color: var(--burgundy);
  font-family: "Inter", "Helvetica Neue", Arial, sans-serif;
  font-size: clamp(1.8rem, 3vw, 3rem);
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1;
  margin-bottom: 34px;
  text-transform: uppercase;
}

.about-copy p {
  color: var(--burgundy);
  font-size: clamp(1.05rem, 1.5vw, 1.35rem);
  font-weight: 600;
  line-height: 1.55;
  margin-bottom: 36px;
  max-width: 620px;
}

.about-copy .button.secondary {
  background: var(--white);
  border-color: var(--white);
  color: rgba(36, 19, 23, 0.68);
  min-width: 190px;
}

@keyframes community-scroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(calc(-50% - 8px));
  }
}

.product-visual::before,
.product-visual::after {
  content: "";
  position: absolute;
}

.claw::before,
.claw::after {
  border: 12px solid currentColor;
  border-bottom-color: transparent;
  border-radius: 50% 50% 24% 24%;
  height: 92px;
  width: 86px;
}

.claw::before {
  transform: rotate(-28deg) translateX(-24px);
}

.claw::after {
  transform: rotate(28deg) translateX(24px);
}

.claw span {
  background: currentColor;
  border-radius: 999px;
  height: 18px;
  width: 72px;
  z-index: 1;
}

.powder {
  color: var(--blue);
}

.berry,
.classic {
  color: var(--burgundy);
}

.classic {
  background: var(--blue-soft);
}

.box::before {
  background: currentColor;
  height: 88px;
  width: 128px;
}

.box::after {
  border: 1px solid var(--burgundy);
  height: 64px;
  width: 104px;
}

.box span {
  background: var(--white);
  height: 1px;
  width: 128px;
  z-index: 1;
}

.scrunch {
  gap: 8px;
}

.scrunch span {
  border: 16px solid var(--burgundy);
  border-radius: 999px;
  height: 82px;
  width: 82px;
}

.scrunch span:nth-child(2) {
  border-color: var(--blue);
}

.scrunch span:nth-child(3) {
  border-color: var(--burgundy-dark);
}

.brush::before {
  background: var(--burgundy);
  border-radius: 999px 999px 44px 44px;
  height: 116px;
  width: 66px;
}

.brush::after {
  background: var(--burgundy);
  border-radius: 999px;
  bottom: 26px;
  height: 70px;
  transform: translateY(56px);
  width: 18px;
}

.brush span {
  background-image: radial-gradient(var(--blue) 2px, transparent 2px);
  background-size: 12px 12px;
  height: 72px;
  width: 42px;
  z-index: 1;
}

.page-hero,
.contact-section {
  padding: clamp(54px, 8vw, 108px) clamp(20px, 5vw, 72px) 22px;
}

.legal-content {
  color: var(--burgundy);
  min-height: 560px;
  padding: clamp(54px, 6vw, 72px) clamp(28px, 5vw, 76px) clamp(72px, 7vw, 92px);
}

.legal-content h1 {
  color: var(--burgundy);
  font-family: "Inter", "Helvetica Neue", Arial, sans-serif;
  font-size: clamp(1.55rem, 2.2vw, 2.05rem);
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1.15;
  margin-bottom: 28px;
  text-transform: uppercase;
}

.legal-content p {
  font-size: clamp(1rem, 1.28vw, 1.22rem);
  font-weight: 500;
  line-height: 1.65;
  margin-bottom: 28px;
  max-width: 1720px;
}

.legal-content a {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 0.18em;
}

.contact-section {
  align-items: start;
  display: grid;
  gap: clamp(30px, 6vw, 80px);
  grid-template-columns: minmax(0, 1fr) minmax(280px, 460px);
  min-height: calc(100vh - 174px);
}

.contact-section-simple {
  display: block;
  min-height: min(520px, calc(100vh - 174px));
}

.contact-panel {
  display: none;
  background: var(--blue-soft);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.contact-panel a {
  border-bottom: 1px solid var(--line);
  display: grid;
  gap: 6px;
  padding: 28px;
}

.contact-panel a:last-child {
  border-bottom: 0;
}

.contact-panel span {
  color: var(--burgundy);
  font-size: 0.76rem;
  font-weight: 800;
  text-transform: uppercase;
}

.contact-panel strong {
  color: var(--burgundy-dark);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2.1rem;
  font-weight: 500;
}

.site-footer {
  align-items: start;
  background: var(--burgundy);
  border-top: 0;
  color: var(--white);
  display: grid;
  gap: 18px;
  grid-template-columns: 1fr;
  min-height: 0;
  padding: 28px clamp(28px, 4vw, 64px);
}

.site-footer p {
  margin-bottom: 0;
}

.footer-link-grid {
  display: grid;
  align-items: center;
  gap: 14px 20px;
  grid-template-columns: repeat(7, minmax(0, auto));
  justify-content: space-between;
  max-width: none;
}

.footer-link-grid a,
.footer-link-grid span {
  color: rgba(255, 253, 251, 0.9);
  font-size: clamp(0.68rem, 0.75vw, 0.82rem);
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1.4;
  text-transform: uppercase;
}

@media (max-width: 980px) {
  .intro-grid,
  .contact-section,
  .checkout-form {
    grid-template-columns: 1fr;
  }

  .checkout-summary {
    position: static;
  }

  .hero-slider {
    height: min(640px, calc(100vh - 134px));
    min-height: 390px;
  }

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

  .sets-product-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    width: 100%;
  }

  .shop-links {
    grid-auto-columns: calc((100% - 12px) / 2);
  }

  .community-track img {
    height: clamp(230px, 42vw, 360px);
  }

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

  .about-image {
    min-height: 420px;
  }
}

@media (max-width: 640px) {
  .top-strip {
    display: none;
  }

  .site-header {
    align-items: center;
    background: var(--white);
    display: grid;
    gap: 12px;
    grid-template-columns: minmax(54px, auto) minmax(0, 1fr) minmax(52px, auto);
    min-height: 72px;
    padding-inline: 16px;
  }

  .site-footer {
    gap: 18px;
    grid-template-columns: 1fr;
    min-height: auto;
    padding: 24px 18px 32px;
  }

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

  .checkout-page {
    padding: 28px 16px 42px;
  }

  .checkout-intro {
    text-align: left;
  }

  .checkout-fields.two-columns,
  .checkout-delivery-options label,
  .checkout-summary-item {
    grid-template-columns: 1fr;
  }

  .checkout-delivery-options b,
  .checkout-summary-item b {
    justify-self: start;
  }

  .checkout-summary-item img {
    width: 100%;
  }

  .brand {
    justify-self: center;
    min-width: 0;
  }

  .brand span {
    font-size: clamp(1.25rem, 7vw, 2.1rem);
  }

  .site-header > .nav {
    display: none;
  }

  .mobile-shop-menu {
    display: block;
    justify-self: start;
    position: static;
  }

  .mobile-shop-menu > summary {
    align-items: center;
    aspect-ratio: 1;
    color: var(--burgundy-dark);
    cursor: pointer;
    display: inline-flex;
    font-size: 0;
    justify-content: center;
    min-height: 44px;
    width: 44px;
  }

  .mobile-shop-menu > summary::marker,
  .mobile-shop-menu > summary::-webkit-details-marker {
    display: none;
  }

  .mobile-shop-menu > summary::after {
    background: currentColor;
    box-shadow: 0 -9px 0 currentColor, 0 9px 0 currentColor;
    content: "";
    height: 3px;
    width: 28px;
  }

  .mobile-nav {
    background: var(--white);
    border-bottom: 1px solid var(--line);
    border-top: 1px solid var(--line);
    display: grid;
    gap: 0;
    left: 0;
    max-height: min(72vh, 440px);
    overflow-y: auto;
    padding: 10px 16px 14px;
    position: absolute;
    top: 100%;
    width: 100%;
    z-index: 11;
  }

  .mobile-nav a {
    border-bottom: 1px solid var(--line);
    font-size: 0.9rem;
    font-weight: 800;
    padding: 14px 4px;
    text-transform: uppercase;
  }

  .header-tools {
    justify-content: flex-end;
    justify-self: end;
    min-width: 0;
  }

  .header-tools > a {
    display: none;
  }

  .language-switcher {
    gap: 5px;
  }

  .language-switcher a,
  .language-switcher span {
    font-size: 0.72rem;
  }

  .best-sellers-heading {
    align-items: center;
    display: flex;
    justify-content: space-between;
    padding: 24px 16px 10px;
  }

  .section-heading h2,
  .shop-by h2,
  .best-sellers-heading h2 {
    font-size: clamp(1.2rem, 6vw, 1.55rem);
    font-weight: 700;
    line-height: 1.08;
    white-space: nowrap;
  }

  html[lang="ka"] .mobile-nav a {
    font-size: 0.76rem;
  }

  .section-heading {
    padding: 30px 16px 0;
  }

  .section-heading.compact {
    padding-top: 28px;
  }

  .shop-by h2 {
    margin-bottom: 20px;
  }

  .best-sellers {
    display: grid;
    gap: 14px;
    grid-auto-columns: minmax(190px, 43vw);
    grid-auto-flow: column;
    grid-template-columns: none;
    overflow-x: auto;
    padding: 0 16px 34px;
    scroll-padding-inline: 16px;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }

  .best-sellers::-webkit-scrollbar {
    display: none;
  }

  .best-sellers .feature-card {
    scroll-snap-align: start;
  }

  .best-sellers .product-photo {
    aspect-ratio: 0.98 / 1;
    margin-bottom: 16px;
    padding: 0;
  }

  .best-sellers .feature-card p {
    font-size: 0.78rem;
    line-height: 1.35;
    margin-bottom: 8px;
  }

  .best-sellers .feature-card h3 {
    font-size: 0.9rem;
    line-height: 1.35;
  }

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

  h1 {
    font-size: clamp(3.2rem, 17vw, 4.8rem);
  }

  .hero-slider {
    height: 460px;
  }

  .hero-overlay p {
    font-size: clamp(1.8rem, 9vw, 3rem);
    white-space: normal;
  }

  .featured-products,
  .product-grid {
    grid-template-columns: 1fr;
  }

  .square-product-grid {
    gap: 8px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    padding-inline: 12px;
  }

  .square-product-card {
    padding: 8px;
  }

  .square-product-card p {
    font-size: 0.58rem;
    margin: 10px 0 5px;
  }

  .square-product-card h2 {
    font-size: clamp(0.82rem, 3.8vw, 1.08rem);
    line-height: 1.05;
  }

  .featured-products.best-sellers {
    grid-template-columns: none;
  }

  .shop-links a {
    aspect-ratio: 0.9;
  }

  .shop-links {
    grid-auto-columns: 82%;
  }

  .community-track {
    gap: 10px;
  }

  .community-track img {
    height: 270px;
  }

  .catalog-hero h1 {
    white-space: normal;
  }

  .about-image {
    min-height: 320px;
  }

  .about-copy {
    padding: 40px 24px;
  }

  .feature-card,
  .product-card {
    min-height: auto;
  }

  .contact-panel strong {
    font-size: 1.65rem;
  }
}


.instagram-icon {
  align-items: center;
  display: inline-flex;
  height: 18px;
  justify-content: center;
  padding: 0;
  width: 18px;
}

.instagram-icon svg {
  display: block;
  fill: var(--burgundy);
  height: 18px;
  width: 18px;
}

.instagram-icon::after {
  display: none;
}

@media (max-width: 760px) {
  .header-tools > a.instagram-icon {
    display: inline-flex;
  }

  .instagram-icon,
  .instagram-icon svg {
    height: 16px;
    width: 16px;
  }
}

@media (max-width: 640px) {
  body {
    padding-bottom: 0;
  }

  .site-header {
    gap: 8px;
    grid-template-columns: 46px minmax(0, 1fr) auto;
    min-height: 62px;
    padding: 8px 12px;
  }

  .brand span {
    font-size: clamp(1.18rem, 8vw, 1.75rem);
    line-height: 0.9;
  }

  .mobile-shop-menu > summary {
    min-height: 42px;
    width: 42px;
  }

  .mobile-shop-menu > summary::after {
    height: 2px;
    width: 25px;
  }

  .mobile-nav {
    align-content: start;
    backdrop-filter: blur(14px);
    background: rgba(255, 253, 251, 0.94);
    border-bottom: 0;
    border-right: 1px solid var(--line);
    border-top: 0;
    bottom: 0;
    box-shadow: 18px 0 42px rgba(36, 19, 23, 0.14);
    gap: 0;
    grid-template-columns: 1fr;
    height: calc(100dvh - 62px);
    max-height: none;
    padding: 18px 16px 28px;
    position: fixed;
    top: 62px;
    width: min(78vw, 320px);
    z-index: 12;
  }

  .mobile-nav a {
    align-items: center;
    border: 0;
    border-bottom: 1px solid var(--line);
    display: flex;
    justify-content: flex-start;
    min-height: 52px;
    padding: 12px 8px;
    text-align: left;
    white-space: nowrap;
  }

  .mobile-nav a.active {
    background: transparent;
    color: var(--burgundy);
  }

  .mobile-nav a::after {
    display: none;
  }

  .mobile-shop-menu[open]::before {
    backdrop-filter: blur(2px);
    background: rgba(36, 19, 23, 0.24);
    bottom: 0;
    content: "";
    left: 0;
    position: fixed;
    right: 0;
    top: 62px;
    z-index: 11;
  }

  .header-tools {
    gap: 8px;
  }

  .language-switcher {
    border: 1px solid var(--line);
    gap: 4px;
    padding: 8px 9px;
  }

  .language-switcher a,
  .language-switcher span {
    font-size: 0.68rem;
  }

  .instagram-icon,
  .instagram-icon svg {
    height: 20px;
    width: 20px;
  }

  .hero-slider {
    height: clamp(270px, 74vw, 350px);
    min-height: 0;
  }

  .hero-track img {
    object-fit: cover;
  }

  .hero-overlay {
    bottom: 18px;
    width: min(88vw, 360px);
  }

  .hero-overlay p {
    font-size: clamp(2rem, 10vw, 3rem);
  }

  .best-sellers-heading,
  .section-heading {
    padding-inline: 14px;
  }

  .best-sellers {
    grid-auto-columns: minmax(210px, 68vw);
    padding-inline: 14px;
  }

  .lifestyle-track {
    --lifestyle-gap: 10px;
    --lifestyle-half-gap: 5px;
    animation: none;
    overflow-x: auto;
    scroll-snap-type: x proximity;
    scrollbar-width: none;
    width: 100%;
    -webkit-overflow-scrolling: touch;
  }

  .lifestyle-track::-webkit-scrollbar {
    display: none;
  }

  .lifestyle-slide {
    flex: 0 0 78vw;
    scroll-snap-align: start;
  }

  .best-sellers .feature-card p {
    font-size: 0.74rem;
  }

  .best-sellers .feature-card h3 {
    font-size: 1rem;
  }

  .shop-by {
    padding: 36px 14px 44px;
    text-align: left;
  }

  .shop-by h2 {
    font-size: clamp(1.2rem, 6vw, 1.55rem);
    margin-bottom: 18px;
  }

  .shop-links {
    gap: 12px;
    grid-auto-columns: minmax(250px, 78vw);
    grid-auto-flow: column;
    grid-template-columns: none;
    overflow-x: auto;
    padding-inline: 2px 22px;
    scroll-padding-inline: 2px;
    scroll-snap-type: x mandatory;
  }

  .shop-links a {
    aspect-ratio: 0.86;
  }

  .shop-links span {
    font-size: 0.66rem;
    left: 7%;
    right: 7%;
  }

  .catalog-hero,
  .page-hero,
  .contact-section {
    padding: 30px 14px 16px;
  }

  .catalog-hero h1,
  .page-hero h1 {
    font-size: clamp(1.55rem, 8vw, 2.35rem);
    line-height: 1.08;
  }

  .square-product-grid,
  .box-product-grid,
  .other-product-grid,
  .clip-size-product-grid,
  .sets-product-grid {
    gap: 10px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    max-width: none;
    padding: 10px 10px 44px;
  }

  .square-product-card {
    display: flex;
    flex-direction: column;
    min-height: 100%;
    padding: 10px;
  }

  .square-product-card img,
  .clip-size-product-grid .square-product-card img {
    aspect-ratio: 1 / 1;
    object-fit: cover;
  }

  .square-product-card p {
    font-size: 0.64rem;
    line-height: 1.2;
    margin: 12px 0 6px;
  }

  .square-product-card h2 {
    font-size: clamp(1.05rem, 5vw, 1.35rem);
    line-height: 1.08;
  }

  .square-product-card .product-description {
    font-size: 0.58rem;
    line-height: 1.28;
    margin-top: 6px;
  }

  .product-purchase {
    gap: 6px;
    margin-top: auto;
    padding-top: 12px;
  }

  .product-purchase strong {
    font-size: 0.82rem;
  }

  .product-purchase span {
    font-size: 0.66rem;
    line-height: 1.25;
  }

  .buy-button {
    font-size: 0.66rem;
    justify-self: stretch;
    min-height: 38px;
    padding: 8px 10px;
    width: 100%;
  }

  .cart-toggle {
    bottom: 12px;
    font-size: 0.68rem;
    min-height: 80px;
    min-width: 136px;
    padding: 28px 28px 21px;
    right: 10px;
  }

  .cart-count {
    font-size: 0.68rem;
    min-height: 26px;
    min-width: 26px;
  }

  .cart-drawer {
    border-radius: 18px 0 0 18px;
    gap: 10px;
    grid-template-rows: auto minmax(180px, 1fr) auto auto auto auto;
    height: 100dvh;
    max-width: calc(100vw - 10px);
    padding: 16px;
    width: calc(100vw - 10px);
  }

  .cart-header {
    padding-bottom: 10px;
  }

  .cart-header h2 {
    font-size: 1rem;
  }

  .cart-close {
    font-size: 2rem;
    min-height: 40px;
    min-width: 40px;
  }

  .cart-items {
    gap: 8px;
  }

  .cart-item {
    gap: 8px;
    grid-template-columns: minmax(0, 1fr) auto;
    padding: 10px;
  }

  .cart-item h3 {
    font-size: 1rem;
  }

  .delivery-option {
    gap: 7px;
    padding: 9px;
  }

  .delivery-option strong,
  .delivery-option b {
    font-size: 0.78rem;
  }

  .delivery-option small {
    font-size: 0.68rem;
  }

  .cart-summary {
    gap: 5px;
  }

  .cart-checkout {
    min-height: 48px;
  }

  .checkout-page {
    padding: 28px 12px 44px;
  }

  .checkout-intro {
    margin-bottom: 22px;
    text-align: left;
  }

  .checkout-intro h1 {
    font-size: clamp(2rem, 11vw, 3rem);
  }

  .checkout-form {
    gap: 16px;
    grid-template-columns: 1fr;
  }

  .checkout-details {
    gap: 14px;
  }

  .checkout-block,
  .checkout-summary {
    padding: 16px;
  }

  .checkout-fields,
  .checkout-fields.two-columns {
    gap: 14px;
    grid-template-columns: 1fr;
  }

  .checkout-fields input,
  .checkout-fields select,
  .checkout-fields textarea {
    font-size: 0.92rem;
    min-height: 46px;
  }

  .checkout-delivery-options label {
    gap: 9px;
    grid-template-columns: auto minmax(0, 1fr) auto;
    padding: 12px;
  }

  .checkout-delivery-options b {
    justify-self: end;
  }

  .checkout-summary {
    position: static;
  }

  .checkout-summary-item {
    gap: 10px;
    grid-template-columns: 60px minmax(0, 1fr) auto;
  }

  .checkout-summary-item img {
    width: 60px;
  }

  .checkout-summary-item strong {
    font-size: 1rem;
  }

  .checkout-summary-item b {
    font-size: 0.86rem;
    justify-self: end;
  }

  .checkout-pay {
    min-height: 50px;
  }

  .site-footer {
    padding: 20px 14px 14px;
  }

  .footer-link-grid {
    gap: 10px 14px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    justify-content: stretch;
  }

  .footer-link-grid a,
  .footer-link-grid span {
    border-bottom: 1px solid rgba(255, 253, 251, 0.18);
    font-size: 0.68rem;
    padding-bottom: 8px;
  }
}

@media (max-width: 380px) {
  .square-product-grid,
  .box-product-grid,
  .other-product-grid,
  .clip-size-product-grid {
    gap: 8px;
    padding-inline: 8px;
  }

  .square-product-card {
    padding: 8px;
  }

  .square-product-card h2 {
    font-size: 1rem;
  }

  .buy-button {
    letter-spacing: 0.04em;
  }
}

@media (max-width: 640px) {
  html[lang="ka"] .square-product-card h2 {
    font-size: 0.88rem;
    line-height: 1.18;
  }
}

/* Brand cursor for mouse and trackpad devices; touch screens keep native behavior. */
@media (hover: hover) and (pointer: fine) {
  html,
  body,
  a,
  button:not(:disabled),
  summary,
  label {
    cursor: url("assets/cursors/crystal-clip-cursor-upside-down.png") 12 12, pointer;
  }
}

/* Keep every inner-page title compact and consistent on mobile. */
@media (max-width: 640px) {
  .catalog-hero h1,
  .page-hero h1,
  .contact-copy h1,
  .legal-content h1,
  .checkout-intro h1,
  .payment-result h1 {
    font-size: clamp(0.82rem, 3.8vw, 1rem);
    letter-spacing: -0.02em;
    line-height: 1.15;
    max-width: none;
    overflow: visible;
    white-space: nowrap;
  }
}
