:root {
  --background: #101010;
  --foreground: #f6f1e7;
  --surface: #181818;
  --surface-soft: #202020;
  --muted: #b0a999;
  --border: rgba(255, 255, 255, 0.12);
  --gold: #c9a452;
  --gold-soft: #efd487;
  --black: #080808;
  --gradient-gold: linear-gradient(100deg, #a97826, #f2d98d, #bd8d32);
  --shadow-lift: 0 24px 60px -20px rgba(0, 0, 0, 0.8);
  --max: 1400px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--background);
  color: var(--foreground);
  font-family: Jost, Avenir, "Helvetica Neue", Arial, sans-serif;
  font-weight: 300;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
  position: fixed;
  right: 0;
  left: 0;
  width: 100%;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input {
  font: inherit;
}

button {
  cursor: pointer;
}

ph-magnifying-glass,
ph-handbag,
ph-list,
ph-x,
ph-arrow-right,
ph-caret-left,
ph-caret-right,
ph-flask,
ph-leaf,
ph-truck,
ph-drop,
ph-sliders-horizontal,
ph-user,
ph-user-circle,
ph-shield-check,
ph-arrow-counter-clockwise,
ph-eye,
ph-device-mobile,
ph-envelope-simple,
ph-package,
ph-map-pin,
ph-sparkle {
  display: block;
  flex-shrink: 0;
}

h1,
h2,
h3,
p {
  margin: 0;
}

h1,
h2,
h3,
.brand,
.stats strong {
  font-family: Georgia, "Times New Roman", serif;
}

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  right: 0;
  left: 0;
  max-width: 100%;
  overflow-x: clip;
  border-bottom: 1px solid transparent;
  transition: background 0.35s ease, border-color 0.35s ease, backdrop-filter 0.35s ease;
}

.site-header.is-scrolled,
.site-header.is-open {
  border-color: var(--border);
  background: rgba(16, 16, 16, 0.88);
  backdrop-filter: blur(18px);
}

.header-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 1rem;
  width: min(100%, var(--max));
  margin: 0 auto;
  padding: 1rem 1.25rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  min-height: 2.75rem;
  min-width: 0;
  font-size: clamp(1.35rem, 1.8vw, 1.7rem);
  letter-spacing: 0.28em;
  text-transform: uppercase;
}

.brand img {
  display: block;
  width: clamp(9.5rem, 14vw, 13.5rem);
  height: auto;
}

.brand span,
.hero-title-accent {
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.desktop-nav {
  display: none;
  justify-content: center;
  gap: 2.25rem;
}

.desktop-nav li,
.mobile-nav li {
  list-style: none;
}

.desktop-nav a,
.mobile-nav a {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 2.5rem;
  color: var(--muted);
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  transition: color 0.25s ease;
}

.desktop-nav a::after,
.mobile-nav a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -0.45rem;
  left: 0;
  height: 1px;
  background: var(--gradient-gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.desktop-nav a:hover,
.mobile-nav a:hover {
  color: var(--foreground);
}

.desktop-nav a:hover::after,
.mobile-nav a:hover::after {
  transform: scaleX(1);
}

.header-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 1.1rem;
}

.icon-button,
.bag-button,
.menu-toggle {
  border: 0;
  background: transparent;
  color: var(--foreground);
}

.icon-button {
  display: grid;
  place-items: center;
}

.header-actions .icon-button,
.header-actions .bag-button {
  min-width: 2.5rem;
  min-height: 2.5rem;
}

.search-button,
.search-overlay-trigger {
  display: none;
  color: var(--muted);
}

.search-button:hover,
.search-overlay-trigger:hover,
.bag-button:hover,
.account-button:hover {
  color: var(--gold);
}

.bag-button {
  position: relative;
  display: grid;
  place-items: center;
  padding: 0;
  transition: color 0.25s ease;
}

.bag-button span {
  position: absolute;
  top: -0.55rem;
  right: -0.65rem;
  display: grid;
  width: 1.1rem;
  height: 1.1rem;
  place-items: center;
  border-radius: 999px;
  background: var(--gold);
  color: var(--black);
  font-size: 0.62rem;
  font-weight: 600;
}

.menu-toggle {
  display: grid;
  width: 1.55rem;
  height: 1.55rem;
  place-items: center;
  padding: 0;
}

.menu-toggle .menu-close-icon {
  display: none;
}

.menu-toggle[aria-expanded="true"] .menu-open-icon {
  display: none;
}

.menu-toggle[aria-expanded="true"] .menu-close-icon {
  display: block;
}

.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
  border-top: 1px solid var(--border);
  background: var(--background);
  padding: 1.6rem 1.5rem 1.8rem;
}

.mobile-nav[hidden] {
  display: none !important;
}

.hero {
  position: relative;
  display: flex;
  min-height: 92vh;
  align-items: flex-end;
  overflow: hidden;
}

.hero-swiper {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  perspective: 1400px;
}

.hero-swiper {
  z-index: 0;
}

.hero-swiper .swiper-wrapper,
.hero-swiper .swiper-slide {
  height: 100%;
}

.hero-swiper .swiper-wrapper {
  transition-timing-function: cubic-bezier(0.22, 1, 0.36, 1);
}

.hero-slide {
  position: relative;
  overflow: hidden;
  backface-visibility: hidden;
  transform-origin: center;
}

.hero-slide::after {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 72% 42%, rgba(227, 194, 123, 0.08), rgba(16, 16, 16, 0) 30%, rgba(16, 16, 16, 0.34) 100%);
  content: "";
  opacity: 0;
  pointer-events: none;
  transition: opacity 900ms cubic-bezier(0.22, 1, 0.36, 1);
}

.hero-slide.swiper-slide-active::after {
  opacity: 1;
}

.hero-slide picture {
  position: absolute;
  inset: 0;
  display: block;
}

.hero-slide img,
.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.92) brightness(0.86);
  transform: scale(1.08);
  transition:
    filter 1250ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 1250ms cubic-bezier(0.22, 1, 0.36, 1);
}

.hero-slide.swiper-slide-active img,
.hero-slide.swiper-slide-active .hero-video {
  filter: saturate(1.02) brightness(1);
  transform: scale(1);
  will-change: transform, opacity;
}

.hero-video {
  background: var(--surface);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to top, rgba(16, 16, 16, 1), rgba(16, 16, 16, 0.46), rgba(16, 16, 16, 0.72)),
    radial-gradient(circle at 75% 35%, transparent, rgba(16, 16, 16, 0.38));
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(100%, var(--max));
  margin: 0 auto;
  padding: 8rem 1.25rem 5rem;
}

.hero-slider-controls {
  position: absolute;
  z-index: 3;
  left: 50%;
  width: min(100%, var(--max));
  padding: 0 1.25rem;
  box-sizing: border-box;
  justify-content: flex-end;
  bottom: 1.4rem;
  display: flex;
  transform: translateX(-50%);
  align-items: center;
  gap: 0.85rem;
}

.eyebrow {
  color: var(--gold);
  font-size: 0.69rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 38rem;
  margin-top: 1.1rem;
  font-size: clamp(2.05rem, 4.8vw, 3.45rem);
  font-weight: 600;
  line-height: 1.06;
  letter-spacing: 0;
}

.hero-title-main,
.hero-title-accent {
  display: block;
}

.hero-title-accent {
  display: block;
  font-style: italic;
}

.hero-title-accent:empty {
  display: none;
}

.hero h1.is-forza {
  max-width: 44rem;
  font-family: Jost, Avenir, "Helvetica Neue", Arial, sans-serif;
  font-size: clamp(2.9rem, 7vw, 5.4rem);
  font-weight: 800;
  letter-spacing: 0.14em;
  line-height: 0.96;
  text-transform: uppercase;
}

.hero h1.is-forza .hero-title-main {
  background: none;
  -webkit-background-clip: initial;
  background-clip: initial;
  color: var(--foreground);
  text-shadow: 0 0 38px rgba(201, 164, 82, 0.18);
}

.hero h1.is-forza + .hero-copy {
  max-width: 39rem;
  color: var(--gold-soft);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  line-height: 1.7;
  text-transform: uppercase;
}

.hero h1.is-monarch {
  max-width: 48rem;
  font-size: clamp(2.8rem, 6.5vw, 5.1rem);
  font-weight: 600;
  letter-spacing: 0.11em;
  line-height: 1;
  text-transform: uppercase;
}

.hero h1.is-monarch .hero-title-main {
  position: relative;
  display: inline-block;
  padding-top: 0.35rem;
  background: none;
  -webkit-background-clip: initial;
  background-clip: initial;
  color: var(--foreground);
}

.hero h1.is-monarch .hero-title-main::before {
  content: "";
  position: absolute;
  top: -0.08rem;
  left: 50%;
  width: 2.8rem;
  height: 0.42rem;
  border-top: 1px solid var(--gold);
  border-right: 1px solid var(--gold);
  border-left: 1px solid var(--gold);
  transform: translateX(-50%);
  opacity: 0.84;
}

.hero h1.is-monarch + .hero-copy {
  max-width: 34rem;
  color: var(--gold-soft);
  font-size: 0.84rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  line-height: 1.7;
  text-transform: uppercase;
}

.hero h1.is-hero {
  max-width: 36rem;
  font-size: clamp(3rem, 7vw, 5.4rem);
  font-weight: 700;
  letter-spacing: 0.07em;
  line-height: 1;
  text-transform: uppercase;
}

.hero h1.is-hero .hero-title-main {
  color: var(--foreground);
  text-shadow: 0 0 28px rgba(239, 212, 135, 0.18);
}

.hero h1.is-hero .hero-title-main::after {
  content: "";
  display: block;
  width: min(11rem, 64%);
  height: 2px;
  margin-top: 0.9rem;
  background: var(--gradient-gold);
}

.hero h1.is-hero + .hero-copy {
  max-width: 34rem;
  color: var(--gold-soft);
  font-size: 0.84rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  line-height: 1.7;
  text-transform: uppercase;
}

.hero-copy {
  max-width: 28rem;
  margin-top: 1.55rem;
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.8;
}

.hero-short-desc {
  max-width: 29rem;
  margin-top: 0.9rem;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.75;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2.4rem;
}

.button {
  display: inline-flex;
  min-height: 3.2rem;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  border: 1px solid transparent;
  padding: 0.95rem 1.6rem;
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  transition: transform 0.35s ease, filter 0.35s ease, color 0.35s ease, border-color 0.35s ease,
    background 0.35s ease;
}

.button-gold {
  background: var(--gradient-gold);
  color: var(--black);
}

.button-gold:hover {
  filter: brightness(1.12);
  transform: translateY(-2px);
}

.button-gold:disabled,
.button-gold.is-disabled,
.pdp-sticky-cart-button:disabled,
.pdp-sticky-cart-button.is-disabled {
  cursor: not-allowed;
  opacity: 0.72;
  transform: none;
}

.button-outline {
  border-color: var(--border);
  color: var(--foreground);
}

.button-outline:hover {
  border-color: var(--gold);
  background: rgba(255, 255, 255, 0.04);
  color: var(--gold);
}

.woocommerce-price-suffix {
  font-size: 14px;
}

.erkexin-total-tax-note {
  color: var(--color-muted);
  display: block;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.4;
  margin-top: 0.2rem;
  text-transform: none;
}

.marquee {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.9rem 2.2rem;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: rgba(32, 32, 32, 0.55);
  padding: 1.2rem 1.25rem;
}

.marquee span {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  color: var(--muted);
  font-size: 0.68rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
}

.marquee span ph-flask,
.marquee span ph-leaf,
.marquee span ph-truck,
.marquee span ph-drop {
  color: var(--gold);
}

.section {
  width: min(100%, var(--max));
  margin: 0 auto;
  padding: 4.5rem 1.25rem;
}

#parfumler + #kampanyalar {
  padding-top: 1.5rem;
}

.section-heading {
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
  margin-bottom: 3.5rem;
}

.section-heading .section-link {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  width: fit-content;
  color: var(--gold);
  font-size: 0.76rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.section-heading h2,
.center-heading h2,
.story-copy h2 {
  margin-top: 1rem;
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 600;
  line-height: 1.1;
}

.section-heading > p {
  max-width: 25rem;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.75;
}

.product-swiper,
.collection-grid {
  width: 100%;
  overflow: hidden;
}

.product-swiper {
  padding-bottom: 4.5rem;
}

.swiper-slide {
  height: auto;
}

.product-card {
  cursor: pointer;
}

.product-card:focus-visible {
  outline: 1px solid var(--gold);
  outline-offset: 0.35rem;
}

.product-media {
  position: relative;
  overflow: hidden;
  background: var(--surface);
}

.signature-product .product-media,
.has-hover-image .product-media {
  border: 1px solid rgba(201, 164, 82, 0.24);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.035), var(--shadow-lift);
}

.signature-product .product-media::after,
.has-hover-image .product-media::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(135deg, rgba(201, 164, 82, 0.16), transparent 34%, transparent 70%, rgba(201, 164, 82, 0.1));
  opacity: 0;
  transition: opacity 0.45s ease;
}

.signature-product:hover .product-media::after,
.has-hover-image:hover .product-media::after {
  opacity: 1;
}

.product-media img,
.product-image {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  transition: transform 0.75s ease;
}

.signature-product .product-media,
.has-hover-image .product-media {
  aspect-ratio: 4 / 5;
}

.signature-product .product-image,
.has-hover-image .product-image {
  position: absolute;
  inset: 0;
  height: 100%;
  transition: opacity 0.55s ease, transform 0.75s ease;
}

.signature-product .hover-image,
.has-hover-image .hover-image {
  opacity: 0;
}

.signature-product:hover .primary-image,
.signature-product:focus-within .primary-image,
.has-hover-image:hover .primary-image,
.has-hover-image:focus-within .primary-image {
  opacity: 0;
}

.signature-product:hover .hover-image,
.signature-product:focus-within .hover-image,
.has-hover-image:hover .hover-image,
.has-hover-image:focus-within .hover-image {
  opacity: 1;
}

.product-card:hover img {
  transform: scale(1.07);
}

.product-tag {
  position: absolute;
  z-index: 2;
  top: 1rem;
  left: 1rem;
  border: 1px solid rgba(201, 164, 82, 0.55);
  padding: 0.35rem 0.75rem;
  color: var(--gold);
  font-size: 0.62rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  white-space: nowrap;
}

.product-hover {
  position: absolute;
  z-index: 2;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 3rem 1.25rem 1.25rem;
  background: linear-gradient(to top, var(--background), rgba(16, 16, 16, 0.9), transparent);
  transform: translateY(100%);
  transition: transform 0.45s ease;
}

.product-card:hover .product-hover,
.product-card:focus-within .product-hover {
  transform: translateY(0);
}

@media (hover: none), (pointer: coarse) {
  .signature-product:hover .primary-image,
  .signature-product:focus-within .primary-image,
  .has-hover-image:hover .primary-image,
  .has-hover-image:focus-within .primary-image {
    opacity: 1;
  }

  .signature-product:hover .hover-image,
  .signature-product:focus-within .hover-image,
  .has-hover-image:hover .hover-image,
  .has-hover-image:focus-within .hover-image {
    opacity: 0;
  }

  .product-card:hover .product-hover,
  .product-card:focus-within .product-hover {
    transform: translateY(100%);
  }
}

.product-hover p {
  margin-bottom: 1rem;
  color: var(--muted);
  font-size: 0.78rem;
  line-height: 1.65;
}

.product-card-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.25rem;
  border: 1px solid transparent;
  background: var(--gradient-gold);
  color: var(--black);
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  line-height: 1.2;
  text-align: center;
  text-transform: uppercase;
  width: 100%;
  transition: none;
}

.product-card-cta:hover,
.product-card-cta:focus-visible {
  background: var(--gradient-gold);
  color: var(--black);
}

.product-card.is-coming-soon .product-tag,
.product-card.is-coming-soon .product-card-cta {
  background: #f1f1f1;
  color: var(--black);
}

.product-info {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 1.25rem;
  min-width: 0;
}

.product-info > div {
  min-width: 0;
}

.product-info h3 {
  overflow: hidden;
  font-size: 1.35rem;
  font-weight: 600;
  text-overflow: ellipsis;
  white-space: nowrap;
  transition: color 0.25s ease;
}

.product-card:hover .product-info h3 {
  color: var(--gold);
}

.product-card.is-coming-soon .product-info strong {
  color: var(--gold);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.product-info p {
  margin-top: 0.35rem;
  color: var(--muted);
  font-size: 0.69rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.product-info strong {
  flex-shrink: 0;
  color: var(--gold);
  font-size: 0.92rem;
  font-weight: 400;
  max-width: 100%;
  overflow-wrap: anywhere;
  text-align: right;
}

.product-card .product-info .woocommerce-price-suffix {
  display: none;
}

.product-info strong del,
.product-price del,
[data-sticky-price] del {
  display: inline-flex;
  align-items: center;
  margin-right: 0.45rem;
  color: rgba(255, 255, 255, 0.48);
  font-size: 0.78em;
  font-weight: 400;
  text-decoration-color: rgba(201, 164, 82, 0.85);
  text-decoration-thickness: 1px;
  text-decoration-line: line-through;
}

.product-info strong del .woocommerce-Price-amount,
.product-price del .woocommerce-Price-amount,
[data-sticky-price] del .woocommerce-Price-amount,
.product-info strong del .woocommerce-Price-currencySymbol,
.product-price del .woocommerce-Price-currencySymbol,
[data-sticky-price] del .woocommerce-Price-currencySymbol {
  color: inherit;
  font-size: inherit;
}

.product-info strong ins,
.product-price ins,
[data-sticky-price] ins {
  display: inline-flex;
  align-items: center;
  color: var(--gold);
  text-decoration: none;
}

.product-info strong ins .woocommerce-Price-amount,
.product-price ins .woocommerce-Price-amount,
[data-sticky-price] ins .woocommerce-Price-amount,
.product-info strong ins .woocommerce-Price-currencySymbol,
.product-price ins .woocommerce-Price-currencySymbol,
[data-sticky-price] ins .woocommerce-Price-currencySymbol {
  color: inherit;
  font-size: inherit;
}

.category-main {
  min-height: 100vh;
}

.category-hero {
  border-bottom: 1px solid var(--border);
  background:
    linear-gradient(135deg, rgba(201, 164, 82, 0.08), transparent 32%),
    var(--black);
}

.category-hero-content {
  width: min(100%, var(--max));
  margin: 0 auto;
  padding: 4.8rem 1.25rem 0.85rem;
}

.category-hero h1 {
  max-width: 38rem;
  margin-top: 0.45rem;
  font-size: clamp(1.55rem, 2.8vw, 2.15rem);
  font-weight: 600;
  line-height: 1.06;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.55rem;
  color: var(--muted);
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.breadcrumb a {
  display: inline-flex;
  align-items: center;
  min-height: 2.5rem;
  transition: color 0.25s ease;
}

.breadcrumb a:hover {
  color: var(--gold);
}

.guide-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: clamp(1.35rem, 3vw, 2.75rem);
}

.guide-layout-index {
  gap: clamp(1.25rem, 2.4vw, 2.25rem);
}

.guide-intro {
  position: static;
  align-self: start;
}

.guide-layout-index .guide-intro,
.guide-layout-index .guide-content {
  max-width: 58rem;
}

.guide-layout-detail .guide-intro {
  width: min(100%, 52rem);
  margin: 0 auto;
}

.guide-intro h1 {
  margin-top: 0.85rem;
  font-size: clamp(2rem, 4vw, 3.45rem);
  font-weight: 600;
  line-height: 1.06;
}

.guide-layout-detail .guide-intro h1 {
  max-width: 16ch;
  font-size: clamp(2.05rem, 4.5vw, 3.85rem);
}

.guide-detail-media,
.guide-intro-media {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  margin: 1.4rem 0 0;
  border: 1px solid rgba(201, 164, 82, 0.2);
  background: var(--surface);
}

.guide-detail-media {
  width: min(100%, 70rem);
  aspect-ratio: 16 / 9;
  margin: 0 auto;
  box-shadow: var(--shadow-lift);
}

.guide-detail-media::after {
  position: absolute;
  inset: 0;
  content: "";
  pointer-events: none;
  background: linear-gradient(180deg, rgba(7, 6, 5, 0.06), rgba(7, 6, 5, 0.26));
}

.guide-detail-media + .guide-intro {
  margin-top: clamp(0.25rem, 1vw, 0.75rem);
}

.guide-detail-media img,
.guide-intro-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.guide-content {
  display: grid;
  gap: 1rem;
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.82;
}

.guide-layout-detail .guide-content {
  width: min(100%, 52rem);
  max-width: 52rem;
  margin: 0 auto;
}

.guide-content h2,
.guide-content h3 {
  color: var(--foreground);
  font-weight: 500;
  line-height: 1.18;
}

.guide-content h2 {
  margin-top: 1.65rem;
  font-size: clamp(1.45rem, 2.4vw, 2.15rem);
}

.guide-content h3 {
  margin-top: 1rem;
  font-size: clamp(1.05rem, 1.55vw, 1.35rem);
}

.guide-content p,
.guide-content ul,
.guide-content ol {
  margin: 0;
}

.guide-content ul,
.guide-content ol {
  display: grid;
  gap: 0.45rem;
  padding-left: 1.1rem;
}

.guide-content a {
  color: var(--gold);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.25em;
}

.guide-content .guide-cta {
  display: grid;
  gap: 0.75rem;
  margin-top: 1.45rem;
  padding: clamp(1.15rem, 2.5vw, 1.75rem);
  border: 1px solid rgba(201, 164, 82, 0.28);
  background: rgba(201, 164, 82, 0.065);
}

.guide-content .guide-cta strong {
  color: var(--foreground);
  font-size: 1.05rem;
  font-weight: 500;
}

.guide-content .guide-cta a {
  width: fit-content;
  text-decoration: none;
}

.guide-content .guide-cta .button-gold {
  color: #12100d;
  text-decoration: none;
}

.guide-content .guide-cta .button-gold:hover,
.guide-content .guide-cta .button-gold:focus-visible {
  color: #12100d;
}

.guide-feature-media {
  grid-column: 1 / -1;
  position: relative;
  min-height: clamp(18rem, 38vw, 34rem);
  overflow: hidden;
  border: 1px solid rgba(201, 164, 82, 0.22);
  margin: clamp(1.5rem, 3vw, 2.5rem) 0 0;
  background: var(--surface);
  box-shadow: var(--shadow-lift);
}

.guide-feature-media picture,
.guide-feature-media img {
  display: block;
  width: 100%;
  height: 100%;
}

.guide-feature-media img {
  position: absolute;
  inset: 0;
  object-fit: cover;
}

.guide-feature-media::after {
  position: absolute;
  inset: 0;
  content: "";
  pointer-events: none;
  background: linear-gradient(90deg, rgba(7, 6, 5, 0.28), transparent 44%, rgba(7, 6, 5, 0.08));
}

.guide-cluster,
.guide-related,
.home-guides {
  grid-column: 1 / -1;
  margin-top: clamp(2rem, 4vw, 4rem);
}

.guide-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.guide-card {
  position: relative;
  display: grid;
  align-content: start;
  gap: 0.75rem;
  min-height: 15rem;
  padding: clamp(1.05rem, 2vw, 1.35rem);
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.018);
  transition: border-color 0.25s ease, transform 0.25s ease;
}

.guide-card:hover {
  transform: translateY(-0.18rem);
  border-color: rgba(201, 164, 82, 0.34);
}

.guide-card h3 {
  font-size: clamp(1.05rem, 1.7vw, 1.4rem);
  font-weight: 500;
  line-height: 1.16;
}

.guide-card-media {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 10;
  margin: 0 0 0.25rem;
  border: 1px solid rgba(201, 164, 82, 0.18);
  background: var(--surface);
}

.guide-card-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.guide-card:hover .guide-card-media img {
  transform: scale(1.035);
}

.guide-card h3 a::after {
  position: absolute;
  inset: 0;
  content: "";
  z-index: 1;
}

.guide-card p:not(.eyebrow) {
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.65;
}

.guide-card span {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  align-self: end;
  color: var(--gold);
  font-size: 0.74rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.guide-card h3,
.guide-card p,
.guide-card span,
.guide-card-media {
  position: relative;
}

.category-tools {
  display: grid;
  gap: 1rem;
  margin-bottom: 3rem;
  padding: 1rem;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.025);
}

.filter-pills,
.sort-tools {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}

.filter-pills button,
.sort-tools button {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  min-height: 2.65rem;
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 0 1rem;
  background: transparent;
  color: var(--muted);
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  transition: border-color 0.25s ease, color 0.25s ease, background 0.25s ease;
}

.filter-pills button.is-active,
.filter-pills button:hover,
.sort-tools button:hover {
  border-color: rgba(201, 164, 82, 0.62);
  background: rgba(201, 164, 82, 0.08);
  color: var(--gold);
}

.sort-select {
  position: relative;
  display: inline-grid;
  grid-template-columns: auto minmax(12.25rem, 1fr);
  align-items: stretch;
  width: min(100%, 19.25rem);
  max-width: 100%;
  min-height: 3rem;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.14);
  color: var(--muted);
  cursor: pointer;
  transition: border-color 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
}

.sort-select::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 1.15rem;
  width: 0.42rem;
  height: 0.42rem;
  border-right: 1px solid currentColor;
  border-bottom: 1px solid currentColor;
  color: var(--muted);
  pointer-events: none;
  transform: translateY(-65%) rotate(45deg);
  transition: color 0.25s ease;
}

.sort-label {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  min-height: 100%;
  border-right: 1px solid rgba(255, 255, 255, 0.12);
  padding: 0 0.95rem;
  color: var(--muted);
  font-size: 0.68rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  white-space: nowrap;
}

.sort-label ph-sliders-horizontal {
  color: currentColor;
}

.sort-select select {
  display: block;
  min-width: 0;
  width: 100%;
  min-height: 100%;
  height: 100%;
  box-sizing: border-box;
  border: 0;
  background: transparent;
  color: var(--foreground);
  font: inherit;
  font-size: 0.68rem;
  line-height: 1;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  white-space: nowrap;
  outline: 0;
  padding: 0 2.65rem 0 1rem;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
}

.category-tools .sort-select select {
  display: block;
  min-height: 100%;
  height: 100%;
  box-sizing: border-box;
  border: 0;
  border-radius: 0;
  background: transparent;
  padding: 0 2.65rem 0 1rem;
  width: 100%;
}

.sort-select select::-ms-expand {
  display: none;
}

.sort-caret {
  display: none;
}

.sort-select:hover,
.sort-select:focus-within {
  border-color: rgba(201, 164, 82, 0.65);
  background: rgba(201, 164, 82, 0.06);
  box-shadow: 0 0 0 3px rgba(201, 164, 82, 0.08);
}

.sort-select:hover .sort-label,
.sort-select:focus-within .sort-label {
  color: var(--gold);
}

.sort-select:hover .sort-caret,
.sort-select:focus-within .sort-caret {
  color: var(--gold);
}

.sort-select:hover::after,
.sort-select:focus-within::after {
  color: var(--gold);
}

.sort-select option {
  background: var(--surface);
  color: var(--foreground);
}

.category-count {
  margin: -1.6rem 0 2rem;
  color: var(--muted);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.category-grid {
  display: grid;
  gap: 2rem;
}

.category-product.is-hidden {
  display: none;
}

.empty-products {
  margin-top: 2rem;
  border: 1px solid var(--border);
  padding: 2rem;
  color: var(--muted);
  text-align: center;
}

.category-product {
  min-width: 0;
}

.category-product .product-media {
  background: #0b0b0b;
}

.product-meta {
  display: grid;
  gap: 0.7rem;
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
}

.product-meta span {
  color: var(--muted);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.fragrance-notes {
  display: grid;
  gap: 1rem;
  margin-top: 4.5rem;
  padding: 1.35rem;
  border: 1px solid rgba(201, 164, 82, 0.22);
  background: linear-gradient(135deg, rgba(201, 164, 82, 0.08), rgba(255, 255, 255, 0.02));
}

.fragrance-notes article {
  padding: 1rem 0;
  border-bottom: 1px solid var(--border);
}

.fragrance-notes article:last-child {
  border-bottom: 0;
}

.fragrance-notes h2 {
  font-size: clamp(1.45rem, 2vw, 1.9rem);
  font-weight: 600;
}

.fragrance-notes h3 {
  font-size: 1.1rem;
  font-weight: 600;
}

.fragrance-notes p {
  margin-top: 0.55rem;
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.7;
}

.legal-layout {
  display: grid;
  gap: 2rem;
}

.legal-nav {
  display: grid;
  gap: 0.65rem;
  align-self: start;
  border: 1px solid var(--border);
  padding: 1rem;
  background: rgba(255, 255, 255, 0.025);
}

.legal-nav a {
  color: var(--muted);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  line-height: 1.5;
  text-transform: uppercase;
  transition: color 0.25s ease;
}

.legal-nav a:hover {
  color: var(--gold);
}

.legal-content {
  display: grid;
  gap: 1.5rem;
}

.legal-intro {
  border-bottom: 1px solid var(--border);
  padding-bottom: 1.35rem;
}

.legal-intro h1 {
  margin-top: 0.55rem;
  font-size: clamp(1.75rem, 3vw, 2.45rem);
  font-weight: 600;
}

.legal-intro p:not(.eyebrow),
.legal-block p {
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.8;
}

.legal-intro p:not(.eyebrow) {
  max-width: 48rem;
  margin-top: 1rem;
}

.legal-block {
  scroll-margin-top: 6rem;
  border: 1px solid var(--border);
  padding: 1.35rem;
  background: rgba(255, 255, 255, 0.018);
}

.legal-block h2 {
  margin-bottom: 1rem;
  font-size: clamp(1.35rem, 2vw, 1.85rem);
  font-weight: 600;
}

.legal-block p + p {
  margin-top: 0.9rem;
}

.legal-contract-content {
  display: grid;
  gap: 1rem;
}

.legal-contract-content h2 {
  margin: 0;
}

.legal-contract-content h2:not(:first-child) {
  margin-top: 1rem;
}

.legal-contract-content h3 {
  color: var(--foreground);
  font-family: inherit;
  font-size: 1rem;
  margin-top: 0.4rem;
}

.legal-contract-content ul,
.legal-contract-content ol {
  color: var(--muted);
  display: grid;
  gap: 0.55rem;
  line-height: 1.75;
  margin: 0;
  padding-left: 1.2rem;
}

.legal-contract-content blockquote {
  border-left: 1px solid rgba(201, 164, 82, 0.55);
  color: var(--muted);
  margin: 0;
  padding: 0.85rem 1rem;
  background: rgba(201, 164, 82, 0.06);
}

.legal-contract-content code {
  color: var(--gold-soft);
  font-family: Consolas, Monaco, monospace;
  font-size: 0.86em;
}

.legal-table-wrap {
  overflow-x: auto;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.legal-contract-content table {
  border-collapse: collapse;
  min-width: 720px;
  width: 100%;
}

.legal-contract-content th,
.legal-contract-content td {
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--muted);
  padding: 0.75rem;
  text-align: left;
  vertical-align: top;
}

.legal-contract-content th {
  color: var(--foreground);
  font-weight: 500;
}

.legal-contract-content hr {
  border: 0;
  border-top: 1px solid var(--border);
  width: 100%;
}

.content-page {
  display: grid;
  gap: 3rem;
}

.story-content-page {
  gap: 0;
  max-width: none;
  padding: 0;
}

.story-content-page > * {
  width: min(100%, var(--max));
  margin-inline: auto;
  padding-inline: 1.25rem;
}

.content-hero {
  display: grid;
  gap: 2rem;
  align-items: center;
}

.content-hero-copy h1,
.info-block h2 {
  margin-top: 0.9rem;
  font-size: clamp(2rem, 4vw, 3.25rem);
  font-weight: 600;
  line-height: 1.1;
}

.content-hero-copy p,
.info-block p,
.trust-card p,
.faq-item p {
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.8;
}

.content-hero-copy p {
  max-width: 42rem;
  margin-top: 1rem;
}

.content-image {
  overflow: hidden;
  border: 1px solid rgba(201, 164, 82, 0.2);
  background: var(--surface);
}

.content-image img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.trust-grid,
.info-grid,
.contact-grid,
.faq-grid {
  display: grid;
  gap: 1rem;
}

.trust-card,
.info-block,
.contact-card,
.faq-item {
  border: 1px solid var(--border);
  padding: 1.35rem;
  background: rgba(255, 255, 255, 0.02);
}

.trust-card h2,
.trust-card h3,
.contact-card h2,
.faq-item h2 {
  font-size: 1.15rem;
  font-weight: 600;
}

.trust-card p,
.contact-card p,
.faq-item p {
  margin-top: 0.7rem;
}

.contact-card a {
  color: var(--gold);
}

.info-block ul,
.contact-card ul {
  display: grid;
  gap: 0.65rem;
  margin: 1rem 0 0;
  padding: 0;
  list-style: none;
}

.info-block li,
.contact-card li {
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.65;
}

.commerce-contact {
  display: grid;
  gap: 1rem;
}

.commerce-contact-hero {
  display: grid;
  gap: 0.9rem;
  max-width: 48rem;
}

.commerce-contact-hero h2 {
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 600;
  line-height: 1.08;
  margin: 0;
}

.commerce-contact-hero p:not(.eyebrow) {
  color: var(--muted);
  line-height: 1.8;
  max-width: 44rem;
}

.commerce-contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 0.35rem;
}

.commerce-contact-actions .button {
  min-height: 2.9rem;
}

.commerce-contact-grid {
  grid-template-columns: 1fr;
  margin-top: 0.25rem;
}

.commerce-contact-card {
  position: relative;
  overflow: hidden;
}

.contact-content-page {
  gap: 0;
}

.erkexin-contact-shell {
  display: grid;
  gap: 1.25rem;
  align-items: start;
}

.erkexin-contact-copy {
  min-width: 0;
}

.contact-content-page .legal-intro,
.contact-content-page .legal-content {
  display: none;
}

.commerce-contact-card h2 {
  margin-top: 0.55rem;
}

.commerce-contact-card a:not(.button),
.commerce-contact-company a {
  display: inline-flex;
  align-items: center;
  min-height: 2.5rem;
}

.commerce-contact-icon {
  align-items: center;
  border: 1px solid rgba(201, 164, 82, 0.28);
  color: var(--gold);
  display: inline-flex;
  height: 2.55rem;
  justify-content: center;
  width: 2.55rem;
  background: rgba(201, 164, 82, 0.08);
}

.commerce-contact-icon::before {
  background: currentColor;
  content: "";
  display: block;
  height: 1.35rem;
  -webkit-mask: var(--commerce-contact-icon) center / contain no-repeat;
  mask: var(--commerce-contact-icon) center / contain no-repeat;
  width: 1.35rem;
}

.commerce-contact-card:nth-child(1) .commerce-contact-icon {
  --commerce-contact-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M3.75 5.75h16.5v12.5H3.75z' fill='none' stroke='black' stroke-width='1.7' stroke-linejoin='round'/%3E%3Cpath d='m4.5 6.5 7.5 6 7.5-6' fill='none' stroke='black' stroke-width='1.7' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

.commerce-contact-card:nth-child(2) .commerce-contact-icon {
  --commerce-contact-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M8.2 4.25 6.05 5.3c-.72.36-1.1 1.17-.9 1.95 1.2 4.76 4.85 8.41 9.6 9.6.78.2 1.6-.18 1.95-.9l1.05-2.15-3.55-2.25-1.3 1.3a11.2 11.2 0 0 1-4.75-4.75l1.3-1.3z' fill='none' stroke='black' stroke-width='1.7' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

.commerce-contact-card:nth-child(3) .commerce-contact-icon {
  --commerce-contact-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='m12 3 7.5 4.25v9.5L12 21l-7.5-4.25v-9.5z' fill='none' stroke='black' stroke-width='1.7' stroke-linejoin='round'/%3E%3Cpath d='M4.8 7.45 12 11.6l7.2-4.15M12 11.6V21' fill='none' stroke='black' stroke-width='1.7' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

.commerce-contact-split {
  display: grid;
  gap: 1rem;
}

.commerce-contact-company dl {
  display: grid;
  gap: 0.85rem;
  margin: 1rem 0 0;
}

.commerce-contact-company dl div {
  display: grid;
  gap: 0.2rem;
  padding-bottom: 0.85rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.commerce-contact-company dl div:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.commerce-contact-company dt {
  color: var(--gold-soft);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.commerce-contact-company dd {
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.65;
  margin: 0;
}

.commerce-contact-steps {
  margin-top: 1rem;
}

.erkexin-contact-form-panel {
  display: grid;
  gap: 1.25rem;
  margin-top: 0;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.012)),
    rgba(10, 10, 10, 0.72);
  box-shadow: var(--shadow-lift);
}

.erkexin-contact-form-heading {
  display: grid;
  gap: 0.65rem;
  max-width: 48rem;
}

.erkexin-contact-form-heading h2 {
  font-size: clamp(1.55rem, 3vw, 2.35rem);
  font-weight: 600;
  line-height: 1.12;
  margin: 0;
}

.erkexin-contact-form-heading p:not(.eyebrow) {
  color: var(--muted);
  line-height: 1.75;
  margin: 0;
}

.erkexin-contact-form {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.erkexin-form-field {
  display: grid;
  gap: 0.5rem;
  min-width: 0;
}

.erkexin-contact-form [hidden] {
  display: none !important;
}

.erkexin-form-field.is-wide,
.erkexin-contact-submit {
  grid-column: 1 / -1;
}

.erkexin-form-field span {
  color: var(--gold-soft);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.erkexin-form-field input,
.erkexin-form-field select,
.erkexin-form-field textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 0;
  background: rgba(8, 8, 8, 0.62);
  color: var(--foreground);
  font: inherit;
  min-height: 3.15rem;
  outline: 0;
  padding: 0.85rem 0.95rem;
  transition: border-color 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.erkexin-form-field textarea {
  min-height: 9.5rem;
  resize: vertical;
}

.erkexin-form-field input[type="file"] {
  align-items: center;
  display: flex;
  padding: 0.72rem 0.95rem;
}

.erkexin-form-field input:focus,
.erkexin-form-field select:focus,
.erkexin-form-field textarea:focus {
  border-color: rgba(201, 164, 82, 0.62);
  background: rgba(8, 8, 8, 0.82);
  box-shadow: 0 0 0 3px rgba(201, 164, 82, 0.1);
}

.erkexin-form-field em {
  color: var(--muted);
  font-size: 0.78rem;
  font-style: normal;
  line-height: 1.55;
}

.erkexin-contact-submit {
  justify-self: start;
  margin-top: 0.35rem;
  min-width: min(100%, 13rem);
}

.erkexin-form-notice {
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: var(--foreground);
  line-height: 1.65;
  padding: 0.9rem 1rem;
}

.erkexin-form-notice.is-success {
  background: rgba(76, 175, 80, 0.1);
  border-color: rgba(76, 175, 80, 0.36);
}

.erkexin-form-notice.is-error {
  background: rgba(255, 90, 80, 0.1);
  border-color: rgba(255, 90, 80, 0.42);
}

@media (min-width: 1024px) {
  .erkexin-contact-shell {
    grid-template-columns: minmax(0, 1fr) minmax(380px, 0.72fr);
  }

  .erkexin-contact-form-panel {
    position: sticky;
    top: 6.4rem;
  }
}

@media (min-width: 1180px) {
  .erkexin-contact-shell {
    grid-template-columns: minmax(0, 1.08fr) minmax(420px, 0.78fr);
    gap: 1.6rem;
  }
}

.product-detail {
  display: grid;
  gap: 3rem;
  align-items: start;
}

.product-gallery {
  display: grid;
  gap: 1rem;
}

.product-gallery-main {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(201, 164, 82, 0.22);
  background: #080808;
}

.product-gallery-main img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  transition: transform 0.24s ease;
  will-change: transform, opacity;
}

.product-thumbs {
  display: flex;
  gap: 0.75rem;
  overflow-x: auto;
  padding-bottom: 0.2rem;
  scrollbar-width: thin;
}

.product-thumbs button {
  flex: 0 0 5.4rem;
  overflow: hidden;
  border: 1px solid var(--border);
  padding: 0;
  background: var(--surface);
  color: var(--foreground);
}

.product-thumbs button.is-active {
  border-color: var(--gold);
}

.product-thumbs img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
}

.gallery-media-slot {
  display: grid;
  min-height: 5.4rem;
  place-items: center;
  color: var(--muted);
  font-size: 0.68rem;
  letter-spacing: 0.12em;
}

.gallery-media-slot:disabled {
  cursor: default;
  opacity: 0.72;
}

.product-purchase {
  display: grid;
  gap: 1.5rem;
}

.product-title-block {
  display: grid;
  gap: 0.7rem;
}

.product-purchase h1 {
  max-width: 34rem;
  font-size: clamp(1.85rem, 3.6vw, 3.05rem);
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: 0;
}

.product-kicker,
.product-subtitle {
  color: var(--muted);
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.rating-summary {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  gap: 0.55rem;
  min-height: 2.5rem;
  color: var(--muted);
  font-size: 0.78rem;
}

.rating-summary span {
  color: var(--gold);
  letter-spacing: 0.08em;
}

.rating-summary strong {
  color: var(--foreground);
  font-weight: 500;
}

.rating-summary em {
  font-style: normal;
}

.product-description {
  max-width: 38rem;
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.85;
}

.product-price {
  color: var(--gold);
  font-size: clamp(2rem, 3vw, 2.7rem);
  font-weight: 400;
  line-height: 1;
}

.product-price .woocommerce-Price-amount,
.product-price .woocommerce-Price-currencySymbol {
  font-size: inherit;
  line-height: inherit;
}

.price-stack {
  display: grid;
  gap: 0.45rem;
}

.price-stack > span,
.social-proof {
  color: var(--muted);
  font-size: 0.78rem;
  line-height: 1.55;
}

.stock-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  align-items: center;
}

.stock-pill {
  border: 1px solid var(--border);
  padding: 0.5rem 0.68rem;
  color: var(--foreground);
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.stock-pill.is-low {
  border-color: rgba(201, 164, 82, 0.5);
  color: var(--gold);
}

.product-options {
  display: grid;
  gap: 0.85rem;
}

.option-label {
  color: var(--foreground);
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.size-options {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.65rem;
}

.size-options button {
  min-height: 3.15rem;
  border: 1px solid var(--border);
  background: transparent;
  color: var(--muted);
  font-size: 0.76rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.size-options button.is-active,
.size-options button:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.size-options-single {
  grid-template-columns: minmax(0, 1fr);
}

.size-options button:disabled {
  cursor: default;
  opacity: 1;
}

.note-accordion {
  display: grid;
  border-top: 1px solid var(--border);
}

.note-trigger {
  display: flex;
  min-height: 3.2rem;
  align-items: center;
  justify-content: space-between;
  border: 0;
  border-bottom: 1px solid var(--border);
  background: transparent;
  color: var(--foreground);
  font-size: 0.76rem;
  letter-spacing: 0.12em;
  text-align: left;
  text-transform: uppercase;
}

.note-trigger span {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
}

.note-trigger ph-caret-down {
  transition: transform 0.22s ease;
}

.note-trigger.is-open ph-caret-down {
  transform: rotate(180deg);
}

.note-panel {
  border-bottom: 1px solid var(--border);
  padding: 1rem 0 1.15rem;
}

.note-panel p {
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.75;
}

.purchase-row {
  display: grid;
  grid-template-columns: 8.5rem minmax(0, 1fr) 3.5rem;
  gap: 0.85rem;
  align-items: stretch;
}

.quantity-control {
  display: grid;
  grid-template-columns: 2.65rem 1fr 2.65rem;
  align-items: center;
  min-height: 3.5rem;
  border: 1px solid rgba(201, 164, 82, 0.3);
  background: rgba(255, 255, 255, 0.025);
  color: var(--foreground);
  position: relative;
}

.quantity-control button {
  height: 100%;
  border: 0;
  background: transparent;
  color: var(--foreground);
  cursor: pointer;
  font-size: 1.15rem;
  line-height: 1;
  transition: color 180ms ease, background 180ms ease;
}

.quantity-control [data-qty-minus] {
  grid-column: 1;
}

.quantity-control [data-qty-value] {
  grid-column: 2;
}

.quantity-control [data-qty-plus] {
  grid-column: 3;
}

.quantity-control button:first-of-type {
  border-right: 1px solid rgba(255, 255, 255, 0.08);
}

.quantity-control button:last-of-type {
  border-left: 1px solid rgba(255, 255, 255, 0.08);
}

.quantity-control button:hover {
  background: rgba(201, 164, 82, 0.08);
  color: var(--gold);
}

.quantity-control span {
  color: var(--foreground);
  font-family: var(--font-heading);
  font-size: 1.05rem;
  text-align: center;
}

.quantity-control .quantity {
  block-size: 1px;
  inline-size: 1px;
  margin: 0;
  overflow: hidden;
  position: absolute;
}

.erkexin-variation-panel .variations_form {
  display: grid;
  gap: 1rem;
}

.erkexin-variation-panel .variations {
  border: 0;
  margin: 0;
  width: 100%;
}

.erkexin-variation-panel .variations tbody,
.erkexin-variation-panel .variations tr,
.erkexin-variation-panel .variations th,
.erkexin-variation-panel .variations td {
  display: block;
  padding: 0;
}

.erkexin-variation-panel .variations th {
  margin-bottom: 0.55rem;
  text-align: left;
}

.erkexin-variation-panel .variations label {
  color: var(--foreground);
  display: block;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.erkexin-variation-panel .variations select {
  appearance: none;
  background:
    linear-gradient(45deg, transparent 50%, var(--gold) 50%),
    linear-gradient(135deg, var(--gold) 50%, transparent 50%),
    rgba(255, 255, 255, 0.025);
  background-position:
    calc(100% - 1.1rem) 50%,
    calc(100% - 0.75rem) 50%,
    0 0;
  background-repeat: no-repeat;
  background-size: 0.38rem 0.38rem, 0.38rem 0.38rem, 100% 100%;
  border: 1px solid rgba(201, 164, 82, 0.3);
  color: var(--foreground);
  min-height: 3.5rem;
  padding: 0.85rem 2.4rem 0.85rem 0.95rem;
  width: 100%;
}

.erkexin-variation-panel .reset_variations {
  color: var(--muted);
  display: inline-block;
  font-size: 0.72rem;
  margin-top: 0.5rem;
}

.erkexin-variation-panel .single_variation_wrap {
  display: grid;
  gap: 0.85rem;
}

.erkexin-variation-panel .woocommerce-variation-price {
  color: var(--gold);
  font-family: var(--font-heading);
  font-size: 1.35rem;
}

.erkexin-variation-panel .woocommerce-variation-availability {
  color: var(--muted);
  font-size: 0.82rem;
}

.erkexin-variation-panel .woocommerce-variation-add-to-cart {
  display: grid;
  gap: 0.85rem;
  grid-template-columns: 8.5rem minmax(0, 1fr);
}

.erkexin-variation-panel .quantity {
  display: block;
}

.erkexin-variation-panel .quantity .qty {
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid rgba(201, 164, 82, 0.3);
  color: var(--foreground);
  min-height: 3.5rem;
  text-align: center;
  width: 100%;
}

.erkexin-variation-panel .single_add_to_cart_button {
  align-items: center;
  background: var(--gradient-gold) !important;
  border: 1px solid transparent !important;
  color: var(--black) !important;
  display: inline-flex;
  justify-content: center;
  letter-spacing: 0.22em;
  min-height: 3.5rem;
  padding: 0.95rem 1.6rem !important;
  text-transform: uppercase;
  transition: transform 0.35s ease, filter 0.35s ease;
  width: 100%;
}

.erkexin-variation-panel .single_add_to_cart_button:hover {
  filter: brightness(1.12);
  transform: translateY(-2px);
}

.purchase-row .add-to-cart {
  align-items: center;
  background: var(--gradient-gold) !important;
  border: 1px solid transparent !important;
  color: var(--black) !important;
  display: inline-flex;
  gap: 0.65rem;
  justify-content: center;
  letter-spacing: 0.22em;
  min-height: 3.5rem;
  padding: 0.95rem 1.6rem !important;
  text-transform: uppercase;
  transition: transform 0.35s ease, filter 0.35s ease;
  width: 100%;
}

.purchase-row .add-to-cart:hover {
  filter: brightness(1.12);
  transform: translateY(-2px);
}

.purchase-row .add-to-cart span {
  color: inherit;
  font-size: 0.72rem;
  letter-spacing: inherit;
}

.add-to-cart ph-check {
  display: none;
}

.add-to-cart.is-success ph-check {
  display: inline-block;
}

.favorite-button {
  display: grid;
  min-height: 3.15rem;
  place-items: center;
  border: 1px solid var(--border);
  background: transparent;
  color: var(--foreground);
}

.favorite-button.is-active {
  border-color: var(--gold);
  color: var(--gold);
}

.erkexin-wishlist-button {
  min-width: 0;
}

@media (max-width: 560px) {
  .purchase-row {
    grid-template-columns: minmax(0, 1fr) 3.5rem;
  }

  .purchase-row .add-to-cart {
    grid-column: 1 / -1;
    grid-row: 2;
  }
}

.product-services {
  display: grid;
  gap: 0.7rem;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 1.1rem 0;
}

.product-services span {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  color: var(--muted);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.erkexin-paytr-installments {
  border: 1px solid rgba(201, 164, 82, 0.22);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.038), rgba(255, 255, 255, 0.014));
}

.erkexin-paytr-installments-details {
  display: block;
}

.erkexin-paytr-installments-details summary {
  align-items: center;
  cursor: pointer;
  display: grid;
  gap: 0.65rem;
  grid-template-columns: auto minmax(0, 1fr) auto auto;
  list-style: none;
  padding: 0.85rem;
}

.erkexin-paytr-installments-details summary::-webkit-details-marker {
  display: none;
}

.erkexin-paytr-installments-details summary > span {
  align-items: center;
  border: 1px solid rgba(201, 164, 82, 0.34);
  color: var(--gold);
  display: inline-flex;
  height: 2.15rem;
  justify-content: center;
  width: 2.15rem;
}

.erkexin-paytr-installments-details summary strong {
  color: var(--foreground);
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.erkexin-paytr-installments-details summary em {
  color: var(--muted);
  font-style: normal;
  font-size: 0.78rem;
  white-space: nowrap;
}

.erkexin-paytr-installments-details summary ph-caret-down {
  color: var(--gold);
  transition: transform 0.18s ease;
}

.erkexin-paytr-installments-details[open] summary ph-caret-down {
  transform: rotate(180deg);
}

.erkexin-paytr-installments-body {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 0.85rem;
}

#paytr_taksit_tablosu,
#paytr_taksit_tablosu_checkout {
  clear: both;
  color: var(--foreground);
  font-family: var(--font-body), Arial, sans-serif;
  display: grid;
  font-size: 0.78rem;
  gap: 0.75rem;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  max-width: 100%;
  text-align: left;
}

#paytr_taksit_tablosu::before,
#paytr_taksit_tablosu::after,
#paytr_taksit_tablosu_checkout::before,
#paytr_taksit_tablosu_checkout::after {
  content: none;
}

:is(#paytr_taksit_tablosu, #paytr_taksit_tablosu_checkout) .taksit-tablosu-wrapper {
  background: rgba(10, 10, 10, 0.34);
  border: 1px solid rgba(201, 164, 82, 0.18);
  cursor: default;
  display: grid;
  gap: 0.45rem;
  margin: 0;
  min-width: 0;
  overflow: hidden;
  padding: 0.7rem;
  width: 100%;
}

:is(#paytr_taksit_tablosu, #paytr_taksit_tablosu_checkout) .taksit-logo {
  align-items: center;
  display: flex;
  min-height: 2rem;
}

:is(#paytr_taksit_tablosu, #paytr_taksit_tablosu_checkout) .taksit-logo img {
  display: block;
  height: auto;
  max-height: 1.7rem;
  max-width: 8.5rem;
  object-fit: contain;
  padding: 0;
}

:is(#paytr_taksit_tablosu, #paytr_taksit_tablosu_checkout) .taksit-baslik,
:is(#paytr_taksit_tablosu, #paytr_taksit_tablosu_checkout) .taksit-tutar-wrapper {
  align-items: stretch;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
}

:is(#paytr_taksit_tablosu, #paytr_taksit_tablosu_checkout) .taksit-baslik {
  border-bottom: 1px solid rgba(255, 255, 255, 0.09);
  margin-top: 0.15rem;
}

:is(#paytr_taksit_tablosu, #paytr_taksit_tablosu_checkout) .taksit-tutari-text {
  color: var(--muted);
  float: none;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 1.2;
  margin: 0;
  padding: 0 0.45rem 0.4rem;
  width: auto;
}

:is(#paytr_taksit_tablosu, #paytr_taksit_tablosu_checkout) .taksit-tutar-wrapper {
  background-color: rgba(255, 255, 255, 0.045);
  border-bottom: 1px solid rgba(255, 255, 255, 0.055);
  display: grid;
}

:is(#paytr_taksit_tablosu, #paytr_taksit_tablosu_checkout) .taksit-tutar-wrapper:last-child {
  border-bottom: 0;
}

:is(#paytr_taksit_tablosu, #paytr_taksit_tablosu_checkout) .taksit-tutar-wrapper:hover {
  background-color: rgba(201, 164, 82, 0.12);
}

:is(#paytr_taksit_tablosu, #paytr_taksit_tablosu_checkout) .taksit-tutari {
  border: 0;
  color: var(--foreground);
  float: none;
  font-size: 0.75rem;
  line-height: 1.22;
  padding: 0.45rem;
  width: auto;
  word-break: normal;
}

:is(#paytr_taksit_tablosu, #paytr_taksit_tablosu_checkout) .taksit-tutari + .taksit-tutari,
:is(#paytr_taksit_tablosu, #paytr_taksit_tablosu_checkout) .taksit-tutari-text + .taksit-tutari-text {
  border-left: 1px solid rgba(255, 255, 255, 0.07);
}

:is(#paytr_taksit_tablosu, #paytr_taksit_tablosu_checkout) .taksit-tutari-bold {
  color: var(--gold);
  font-weight: bold;
}

@media all and (max-width: 600px) {
  #paytr_taksit_tablosu,
  #paytr_taksit_tablosu_checkout {
    grid-template-columns: 1fr;
  }

  .erkexin-paytr-installments-details summary {
    grid-template-columns: auto minmax(0, 1fr) auto;
  }

  .erkexin-paytr-installments-details summary em {
    grid-column: 2 / -1;
    white-space: normal;
  }
}

.pdp-sticky-buy {
  position: fixed;
  z-index: 40;
  right: 0;
  bottom: 0;
  left: 0;
  border-top: 1px solid rgba(201, 164, 82, 0.28);
  padding: 0.75rem 1rem;
  background: rgba(16, 16, 16, 0.94);
  backdrop-filter: blur(18px);
  box-shadow: 0 -18px 42px rgba(0, 0, 0, 0.28);
  opacity: 0;
  pointer-events: none;
  transform: translateY(100%);
  transition: opacity 220ms ease, transform 220ms ease;
}

.pdp-sticky-buy.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.pdp-sticky-buy-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 1rem;
  align-items: center;
  width: min(100%, var(--max));
  margin: 0 auto;
}

.pdp-sticky-product {
  display: flex;
  align-items: center;
  min-width: 0;
  gap: 0.85rem;
}

.pdp-sticky-product > div {
  display: grid;
  gap: 0.2rem;
  min-width: 0;
}

.pdp-sticky-thumb {
  flex: 0 0 3.25rem;
  width: 3.25rem;
  height: 3.25rem;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(201, 164, 82, 0.25);
  background: rgba(255, 255, 255, 0.03);
}

.pdp-sticky-thumb img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pdp-sticky-buy span {
  color: var(--muted);
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.pdp-sticky-buy strong {
  color: var(--gold);
  font-weight: 500;
}

.pdp-sticky-buy [data-sticky-price] {
  align-items: baseline;
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
}

.pdp-sticky-buy [data-sticky-price] .woocommerce-Price-amount,
.pdp-sticky-buy [data-sticky-price] .woocommerce-Price-currencySymbol {
  color: var(--gold);
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0;
  text-transform: none;
}

.pdp-sticky-buy [data-sticky-price] .woocommerce-price-suffix {
  color: var(--muted);
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0;
  text-transform: none;
}

.pdp-sticky-buy .pdp-sticky-cart-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.1rem;
  border: 1px solid rgba(201, 164, 82, 0.42);
  background: transparent !important;
  background-color: transparent !important;
  background-image: none !important;
  color: var(--gold) !important;
  cursor: pointer;
  font-size: 0.72rem;
  font-weight: 400 !important;
  letter-spacing: 0.22em;
  padding: 0.95rem 1.6rem;
  text-transform: uppercase;
  transition: background 0.25s ease, border-color 0.25s ease, color 0.25s ease;
  white-space: nowrap;
}

.pdp-sticky-buy .pdp-sticky-cart-button:hover {
  border-color: rgba(201, 164, 82, 0.72);
  background: rgba(201, 164, 82, 0.08) !important;
  background-color: rgba(201, 164, 82, 0.08) !important;
  background-image: none !important;
  filter: none;
  transform: none;
}

@media (max-width: 560px) {
  .pdp-sticky-buy {
    padding: 0.65rem 0.85rem;
  }

  .pdp-sticky-buy-inner {
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 0.75rem;
  }

  .pdp-sticky-thumb {
    flex-basis: 2.8rem;
    height: 2.8rem;
    width: 2.8rem;
  }

  .pdp-sticky-buy .pdp-sticky-cart-button {
    min-height: 2.8rem;
    padding: 0.75rem 1rem;
  }
}

.detail-panels,
.notes-grid {
  display: grid;
  gap: 1rem;
}

.detail-panel,
.note-card {
  border: 1px solid var(--border);
  padding: 1.35rem;
  background: rgba(255, 255, 255, 0.018);
}

.detail-panel h2,
.note-card h3 {
  font-size: 1.15rem;
  font-weight: 600;
}

.detail-panel p,
.note-card p {
  margin-top: 0.65rem;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.75;
}

.pdp-band {
  display: grid;
  gap: 1rem;
  border-top: 1px solid var(--border);
  padding-top: 3rem;
}

.product-story {
  display: grid;
  gap: 1rem;
  border: 1px solid var(--border);
  padding: clamp(1.35rem, 3vw, 2.4rem);
  background: rgba(255, 255, 255, 0.018);
}

.product-story-copy {
  display: grid;
  align-content: center;
  gap: 1rem;
}

.product-story-copy h2 {
  max-width: 42rem;
  font-size: clamp(1.65rem, 3vw, 2.65rem);
  font-weight: 500;
  line-height: 1.08;
}

.product-story-copy p:not(.eyebrow) {
  max-width: 50rem;
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.85;
}

.product-story-media {
  position: relative;
  min-height: clamp(18rem, 30vw, 29rem);
  overflow: hidden;
  border: 1px solid var(--border);
  margin: 0;
  background: var(--surface);
}

.product-story-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-story-media::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(0deg, rgba(7, 6, 5, 0.28), transparent 56%);
  pointer-events: none;
}

.product-rich-band {
  padding-top: 0;
}

.product-rich-content {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(1.1rem, 2.4vw, 2.4rem);
  align-items: start;
  border-top: 1px solid var(--border);
  padding-top: clamp(1.55rem, 3vw, 2.6rem);
}

.product-rich-content > h2:first-child {
  position: sticky;
  top: 6.5rem;
  max-width: 22rem;
  color: var(--foreground);
  font-size: clamp(1.55rem, 3vw, 2.35rem);
  font-weight: 500;
  line-height: 1.12;
}

.product-rich-content > *:not(h2:first-child) {
  grid-column: 2;
}

.product-rich-content h3 {
  margin-top: 0.75rem;
  color: var(--foreground);
  font-size: clamp(1.05rem, 1.45vw, 1.32rem);
  font-weight: 500;
  line-height: 1.28;
}

.product-rich-content p,
.product-rich-content li {
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.72;
}

.product-rich-content p {
  margin: 0;
}

.product-rich-content p + p,
.product-rich-content p + h3,
.product-rich-content ul + h3 {
  margin-top: 0.7rem;
}

.product-rich-content ul {
  display: grid;
  gap: 0.38rem;
  margin: 0.6rem 0 0;
  padding: 0;
  list-style: none;
}

.product-rich-content li {
  position: relative;
  padding-left: 1.2rem;
}

.product-rich-content li::before {
  position: absolute;
  top: 0.85em;
  left: 0;
  width: 0.42rem;
  height: 0.42rem;
  border-radius: 999px;
  background: var(--gold);
  content: "";
}

.product-rich-content strong {
  color: var(--foreground);
  font-weight: 500;
}

.product-experience {
  display: grid;
  gap: 1rem;
}

.profile-visual {
  position: relative;
  min-height: clamp(22rem, 42vw, 34rem);
  overflow: hidden;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.018);
}

.profile-visual img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.profile-visual::after {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(90deg, rgba(7, 6, 5, 0.92), rgba(7, 6, 5, 0.44) 48%, rgba(7, 6, 5, 0.08)),
    linear-gradient(0deg, rgba(7, 6, 5, 0.78), transparent 58%);
}

.profile-visual-content {
  position: relative;
  z-index: 1;
  display: flex;
  min-height: inherit;
  max-width: 42rem;
  flex-direction: column;
  justify-content: flex-end;
  gap: 1.2rem;
  padding: clamp(1.35rem, 4vw, 3rem);
}

.profile-visual-content h2 {
  font-size: clamp(1.9rem, 4vw, 3.4rem);
  font-weight: 500;
  line-height: 1.02;
}

.profile-visual-content > p:not(.eyebrow) {
  max-width: 36rem;
  color: rgba(246, 238, 223, 0.78);
  line-height: 1.8;
}

.profile-visual-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}

.profile-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border: 1px solid rgba(205, 166, 82, 0.34);
  padding: 0.72rem 0.85rem;
  background: rgba(7, 6, 5, 0.62);
  color: var(--text);
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.profile-chip ph-sparkle,
.profile-chip ph-clock,
.profile-chip ph-wind,
.profile-chip ph-drop,
.profile-chip ph-shield-check,
.profile-chip ph-package {
  color: var(--gold);
}

.profile-insight-grid {
  display: grid;
  gap: 1rem;
}

.profile-insight-card {
  border: 1px solid var(--border);
  padding: 1.35rem;
  background: rgba(255, 255, 255, 0.018);
}

.profile-insight-card header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.8rem;
}

.profile-insight-card header span {
  display: grid;
  width: 2.35rem;
  height: 2.35rem;
  place-items: center;
  border: 1px solid rgba(205, 166, 82, 0.35);
  color: var(--gold);
}

.profile-insight-card h3 {
  font-size: 1.02rem;
  font-weight: 600;
}

.profile-insight-card p {
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.75;
}

.profile-meter {
  display: grid;
  gap: 0.5rem;
  margin-top: 1rem;
}

.profile-meter div {
  height: 0.28rem;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.08);
}

.profile-meter span {
  display: block;
  width: var(--level, 78%);
  height: 100%;
  background: linear-gradient(90deg, var(--gold), rgba(205, 166, 82, 0.18));
}

.review-summary,
.review-carousel {
  display: grid;
  gap: 1rem;
}

.review-score,
.review-card {
  border: 1px solid var(--border);
  padding: 1.35rem;
  background: rgba(255, 255, 255, 0.018);
}

.review-carousel {
  overflow: hidden;
}

.review-swiper {
  width: 100%;
  min-width: 0;
}

.review-card {
  display: flex;
  min-height: 15.5rem;
  flex-direction: column;
  justify-content: space-between;
}

.review-score strong {
  display: block;
  color: var(--gold);
  font-size: 2.2rem;
  font-weight: 500;
}

.review-score span {
  display: block;
  margin-top: 0.35rem;
  color: var(--gold);
  letter-spacing: 0.12em;
}

.review-score p,
.review-card p {
  margin-top: 0.6rem;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.75;
}

.review-stars {
  color: var(--gold);
  font-size: 0.78rem;
  letter-spacing: 0.18em;
}

.review-card footer {
  display: grid;
  gap: 0.25rem;
  margin-top: 1.2rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
}

.review-card footer strong {
  color: var(--foreground);
  font-size: 0.88rem;
  font-weight: 600;
}

.review-card footer span {
  color: var(--muted);
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.review-controls {
  justify-content: flex-start;
}

.review-bars {
  display: grid;
  gap: 0.7rem;
  border: 1px solid var(--border);
  padding: 1.35rem;
}

.review-bars span {
  display: grid;
  grid-template-columns: 1.5rem minmax(0, 1fr);
  gap: 0.75rem;
  align-items: center;
}

.review-bars em {
  color: var(--muted);
  font-style: normal;
  font-size: 0.78rem;
}

.review-bars i {
  overflow: hidden;
  height: 0.35rem;
  background: rgba(255, 255, 255, 0.08);
}

.review-bars b {
  display: block;
  height: 100%;
  background: var(--gold);
}

.review-card h3 {
  font-size: 1rem;
  font-weight: 500;
}

.related-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.5rem;
  width: 100%;
}

body.has-pdp-sticky {
  padding-bottom: 5rem;
}

.slider-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-top: 2.25rem;
}

.slider-button {
  display: grid;
  width: 2.75rem;
  height: 2.75rem;
  min-width: 44px;
  min-height: 44px;
  place-items: center;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: transparent;
  color: var(--foreground);
  transition: border-color 0.25s ease, color 0.25s ease, background 0.25s ease;
}

.slider-button:hover {
  border-color: var(--gold);
  background: rgba(255, 255, 255, 0.04);
  color: var(--gold);
}

.slider-button.swiper-button-disabled {
  cursor: default;
  opacity: 0.35;
}

.swiper-pagination {
  position: static;
  display: flex;
  width: auto !important;
  align-items: center;
  justify-content: center;
  gap: 0.1rem;
}

.swiper-pagination-bullet {
  align-items: center;
  display: inline-flex;
  height: 2.5rem;
  justify-content: center;
  margin: 0 !important;
  width: 2.5rem;
  border: 0;
  background: transparent;
  opacity: 1;
}

.swiper-pagination-bullet::before {
  width: 0.42rem;
  height: 0.42rem;
  border: 1px solid var(--gold);
  background: transparent;
  border-radius: 999px;
  content: "";
  display: block;
  opacity: 0.62;
}

.swiper-pagination-bullet-active::before {
  background: var(--gold);
  opacity: 1;
}

.collections {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: rgba(32, 32, 32, 0.42);
}

.center-heading {
  margin-bottom: 3.5rem;
  text-align: center;
}

.rule {
  display: block;
  width: 3rem;
  height: 1px;
  margin-top: 1.6rem;
  background: var(--gradient-gold);
}

.center-heading .rule {
  margin-right: auto;
  margin-left: auto;
}

.collection-grid {
  display: grid;
  gap: 1rem;
  perspective: 1200px;
}

.collection-card {
  --glow-x: 50%;
  --glow-y: 0%;
  position: relative;
  display: block;
  min-height: 26rem;
  overflow: hidden;
  background: var(--surface);
  transform-style: preserve-3d;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
  will-change: transform;
}

.collection-card picture {
  display: block;
  height: 100%;
}

.collection-card img {
  width: 100%;
  height: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  filter: brightness(0.72);
  transition: transform 0.75s ease, filter 0.75s ease;
  transform: translateZ(0);
}

.collection-card::before,
.collection-card::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.collection-card::before {
  z-index: 2;
  background:
    radial-gradient(circle at var(--glow-x) var(--glow-y), rgba(255, 255, 255, 0.28), rgba(201, 164, 82, 0.1) 24%, rgba(0, 0, 0, 0.04) 58%);
  mix-blend-mode: screen;
  opacity: 0;
  transition: opacity 0.24s ease;
}

.collection-card::after {
  z-index: 1;
  background: linear-gradient(to top, var(--background), rgba(16, 16, 16, 0.25), transparent);
  transition: background 0.45s ease;
}

.collection-card:hover,
.collection-card:focus-visible {
  transform: translateY(-0.35rem);
  box-shadow: 0 1.35rem 2.6rem rgba(0, 0, 0, 0.28);
}

.collection-card.is-tilting::before,
.collection-card:hover::before,
.collection-card:focus-visible::before {
  opacity: 1;
}

.collection-card:hover::after,
.collection-card:focus-visible::after {
  background: linear-gradient(to top, var(--background), rgba(16, 16, 16, 0.38), rgba(16, 16, 16, 0.04));
}

.collection-card:hover img,
.collection-card:focus-visible img {
  filter: brightness(1);
  transform: scale(1.07);
}

.collection-card > div {
  position: absolute;
  z-index: 3;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 1.75rem;
  transition: transform 0.35s ease;
  transform: translateZ(42px);
}

.collection-card:hover > div,
.collection-card:focus-visible > div {
  transform: translateY(-0.35rem) translateZ(42px);
}

.collection-card h3 {
  font-size: 2rem;
  font-weight: 600;
}

.collection-card p {
  max-width: 15rem;
  margin-top: 0.5rem;
  color: var(--muted);
  font-size: 0.8rem;
  line-height: 1.65;
}

.collection-card span {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin-top: 1.25rem;
  color: var(--gold);
  font-size: 0.69rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.collection-card span ph-arrow-right {
  transition: transform 0.35s ease;
}

.collection-card:hover span ph-arrow-right,
.collection-card:focus-visible span ph-arrow-right {
  transform: translateX(0.25rem);
}

.story {
  display: grid;
  gap: 3rem;
  align-items: center;
}

.story-image {
  overflow: hidden;
}

.story-image img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transition: transform 0.9s ease;
}

.story-image:hover img {
  transform: scale(1.05);
}

.story-copy p:not(.eyebrow) {
  margin-top: 1.25rem;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.9;
}

.about-hero {
  align-items: center;
  display: grid;
  gap: clamp(2rem, 5vw, 4.5rem);
  min-height: 0;
  padding-top: clamp(2.4rem, 4vw, 3.6rem);
  padding-bottom: clamp(2.4rem, 5vw, 4.5rem);
}

.about-hero-copy {
  display: grid;
  gap: 1.2rem;
}

.about-hero h1 {
  font-size: clamp(1.85rem, 3.6vw, 3.55rem);
  line-height: 1.04;
  max-width: 46rem;
}

.about-hero p:not(.eyebrow),
.about-manifest p,
.about-split p,
.about-values .section-heading > p,
.about-value-grid p,
.about-timeline p,
.about-cta p {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.85;
}

.about-hero-copy > p:not(.eyebrow) {
  max-width: 46rem;
}

.about-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 0.6rem;
}

.about-hero-media,
.about-split figure,
.about-cta figure {
  border: 1px solid var(--border);
  overflow: hidden;
  position: relative;
}

.about-hero-media::after,
.about-split figure::after {
  background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.32));
  content: "";
  inset: 0;
  position: absolute;
}

.about-hero-media img,
.about-split img {
  aspect-ratio: 5 / 4;
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.about-manifest,
.about-split,
.about-values,
.about-timeline,
.about-cta {
  padding-top: clamp(2.35rem, 5vw, 4.6rem);
  padding-bottom: clamp(2.35rem, 5vw, 4.6rem);
}

.about-manifest {
  align-items: start;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  display: grid;
  gap: 1.5rem;
}

.about-manifest h2,
.about-split h2,
.about-values h2,
.about-timeline h2,
.about-cta h2 {
  font-size: clamp(1.35rem, 2.35vw, 2.25rem);
  line-height: 1.12;
  margin-top: 0.45rem;
}

.about-split {
  align-items: center;
  display: grid;
  gap: clamp(2rem, 5vw, 4rem);
}

.about-split > div {
  display: grid;
  gap: 1rem;
}

.about-checklist {
  display: grid;
  gap: 0.75rem;
  margin: 0.8rem 0 0;
  padding: 0;
}

.about-checklist li {
  border-left: 1px solid rgba(201, 164, 82, 0.55);
  color: var(--foreground);
  list-style: none;
  padding-left: 0.9rem;
}

.about-stats {
  display: grid;
  gap: 1rem;
  padding-top: clamp(2rem, 5vw, 3.5rem);
  padding-bottom: clamp(2rem, 5vw, 3.5rem);
}

.about-stats article,
.about-value-grid article,
.about-timeline li,
.about-cta {
  border: 1px solid var(--border);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.018));
  box-shadow: var(--shadow-lift);
}

.about-stats article {
  display: grid;
  gap: 0.35rem;
  padding: 1.2rem;
}

.about-stats strong {
  color: var(--foreground);
  font-size: clamp(1.75rem, 3.4vw, 3.2rem);
  line-height: 0.95;
}

.about-stats span {
  color: var(--muted);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.about-values .section-heading h2 {
  max-width: 48rem;
}

.about-value-grid {
  display: grid;
  gap: 1rem;
  margin-top: 2rem;
}

.about-value-grid article {
  display: grid;
  gap: 0.9rem;
  padding: 1.2rem;
}

.about-value-grid ph-flask,
.about-value-grid ph-leaf,
.about-value-grid ph-shield-check {
  color: var(--gold);
}

.about-value-grid h3,
.about-timeline h3 {
  color: var(--foreground);
  font-family: inherit;
  font-size: 1rem;
}

.about-timeline {
  display: grid;
  gap: 2rem;
}

.about-timeline ol {
  display: grid;
  gap: 1rem;
  margin: 0;
  padding: 0;
}

.about-timeline li {
  align-items: start;
  display: grid;
  gap: 1rem;
  grid-template-columns: auto minmax(0, 1fr);
  list-style: none;
  padding: 1.15rem;
}

.about-timeline li > span {
  color: var(--gold);
  font-size: 0.8rem;
  letter-spacing: 0.16em;
}

.about-cta {
  align-items: center;
  display: grid;
  gap: 2rem;
  margin-bottom: clamp(3rem, 7vw, 6rem);
  padding: clamp(1.25rem, 4vw, 2.5rem);
}

.about-cta figure {
  background: rgba(0, 0, 0, 0.22);
}

.about-cta figure img {
  aspect-ratio: 4 / 3;
  object-fit: contain;
  padding: clamp(1.5rem, 5vw, 3rem);
  width: 100%;
}

.about-cta > div {
  display: grid;
  gap: 1rem;
}

.about-cta .button {
  justify-self: start;
}

.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.3rem;
  margin-top: 2.3rem;
  border-top: 1px solid var(--border);
  padding-top: 1.8rem;
}

.stats strong {
  display: block;
  color: var(--gold);
  font-size: clamp(2rem, 5vw, 2.45rem);
  font-weight: 600;
}

.stats span {
  display: block;
  margin-top: 0.35rem;
  color: var(--muted);
  font-size: 0.62rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.site-footer {
  border-top: 1px solid var(--border);
}

.footer-inner {
  display: grid;
  gap: 3.5rem;
  width: min(100%, var(--max));
  margin: 0 auto;
  padding: 5rem 1.25rem;
}

.footer-brand .footer-slogan {
  margin-top: 0.45rem;
  color: var(--gold-soft);
  font-size: 0.82rem;
  letter-spacing: 0.16em;
  line-height: 1.4;
  text-transform: uppercase;
}

.footer-brand .footer-description {
  max-width: 25rem;
  margin-top: 0.85rem;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.75;
}

.footer-social {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.6rem;
}

.footer-social a {
  display: inline-flex;
  width: 2.75rem;
  height: 2.75rem;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border);
  color: var(--muted);
  transition: border-color 0.25s ease, color 0.25s ease, background 0.25s ease;
}

.footer-social a:hover {
  border-color: rgba(201, 164, 82, 0.62);
  background: rgba(201, 164, 82, 0.08);
  color: var(--gold);
}

.footer-social:empty {
  display: none;
}

.footer-brand .brand img {
  width: clamp(10rem, 15vw, 14rem);
}

.cookie-consent {
  align-items: center;
  background: rgba(15, 15, 15, 0.94);
  border: 1px solid rgba(201, 164, 82, 0.24);
  bottom: max(1rem, env(safe-area-inset-bottom));
  box-shadow: 0 22px 60px -28px rgba(0, 0, 0, 0.9);
  color: var(--foreground);
  display: flex;
  gap: 1rem;
  left: max(1rem, env(safe-area-inset-left));
  max-width: min(36rem, calc(100vw - 2rem));
  padding: 1rem;
  position: fixed;
  z-index: 30;
}

.cookie-consent[hidden] {
  display: none !important;
}

.cookie-consent-copy {
  display: grid;
  gap: 0.35rem;
}

.cookie-consent-copy strong {
  color: var(--gold-soft);
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.cookie-consent-copy p {
  color: var(--muted);
  font-size: 0.84rem;
  line-height: 1.55;
}

.cookie-consent-copy a {
  color: var(--gold);
  white-space: nowrap;
}

.cookie-consent .button {
  flex: 0 0 auto;
  min-height: 2.55rem;
  padding: 0.72rem 1rem;
}

.form-note {
  min-height: 1.3rem;
  color: var(--gold);
  font-size: 0.8rem;
}

.footer-links {
  display: grid;
  gap: 2.5rem;
}

.footer-links h3 {
  color: var(--gold);
  font-family: inherit;
  font-size: 0.69rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
}

.footer-links a {
  align-items: center;
  display: flex;
  margin-top: 0.25rem;
  min-height: 2.5rem;
  color: var(--muted);
  font-size: 0.92rem;
  transition: color 0.25s ease;
}

.footer-links a:hover {
  color: var(--foreground);
}

.footer-bottom {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  width: min(100%, var(--max));
  margin: 0 auto;
  border-top: 1px solid var(--border);
  padding: 1.6rem 1.25rem;
  color: var(--muted);
  font-size: 0.68rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.whatsapp-widget {
  bottom: max(1.25rem, env(safe-area-inset-bottom));
  display: grid;
  gap: 0.85rem;
  justify-items: end;
  position: fixed;
  right: max(1.25rem, env(safe-area-inset-right));
  z-index: 80;
}

.whatsapp-chat {
  background: rgba(17, 16, 15, 0.98);
  border: 1px solid rgba(201, 164, 82, 0.28);
  border-radius: 0.45rem;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.46);
  color: var(--foreground);
  overflow: hidden;
  transform-origin: bottom right;
  width: min(21.5rem, calc(100vw - 2rem));
}

.whatsapp-chat[hidden] {
  display: none;
}

.whatsapp-chat-head {
  align-items: center;
  background: linear-gradient(135deg, #151412 0%, #252018 100%);
  border-bottom: 1px solid rgba(201, 164, 82, 0.22);
  color: #fff;
  display: grid;
  gap: 0.75rem;
  grid-template-columns: auto minmax(0, 1fr) auto;
  padding: 0.9rem;
}

.whatsapp-chat-head strong,
.whatsapp-chat-head small {
  color: #fff;
  display: block;
  letter-spacing: 0;
  line-height: 1.2;
}

.whatsapp-chat-head strong {
  font-size: 0.92rem;
}

.whatsapp-chat-head small {
  color: rgba(201, 164, 82, 0.9);
  font-size: 0.72rem;
  margin-top: 0.12rem;
}

.whatsapp-chat-avatar,
.whatsapp-support-icon {
  align-items: center;
  background: #1f8d56;
  border-radius: 0.42rem;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.16);
  color: #fff;
  display: inline-flex;
  flex: 0 0 auto;
  height: 2.5rem;
  justify-content: center;
  overflow: hidden;
  width: 2.5rem;
}

.whatsapp-chat-avatar svg,
.whatsapp-support-icon svg {
  display: block;
  fill: currentColor;
  flex: 0 0 auto;
  height: 1.45rem;
  margin: 0;
  overflow: visible;
  width: 1.45rem;
}

.whatsapp-chat-close {
  align-items: center;
  background: rgba(255, 255, 255, 0.08);
  border: 0;
  border-radius: 999px;
  color: #fff;
  cursor: pointer;
  display: inline-flex;
  font-size: 1.25rem;
  height: 2rem;
  justify-content: center;
  line-height: 1;
  padding: 0;
  width: 2rem;
}

.whatsapp-chat-body {
  background:
    linear-gradient(rgba(19, 19, 19, 0.9), rgba(19, 19, 19, 0.96)),
    radial-gradient(circle at 10% 10%, rgba(201, 164, 82, 0.1), transparent 34%);
  padding: 1rem;
}

.whatsapp-message {
  border-radius: 0.45rem;
  font-size: 0.9rem;
  line-height: 1.45;
  margin: 0 0 0.95rem;
  padding: 0.78rem 0.85rem;
}

.whatsapp-message-agent {
  background: rgba(255, 255, 255, 0.075);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--foreground);
  max-width: 88%;
}

.whatsapp-chat-form {
  display: grid;
  gap: 0.65rem;
}

.whatsapp-chat-form textarea {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 0.42rem;
  color: var(--foreground);
  font: inherit;
  min-height: 5.4rem;
  padding: 0.85rem;
  resize: vertical;
  width: 100%;
}

.whatsapp-chat-form textarea::placeholder {
  color: rgba(247, 239, 226, 0.5);
}

.whatsapp-chat-form button {
  background: #c9a452;
  border: 0;
  border-radius: 0.38rem;
  color: #151412;
  cursor: pointer;
  font: inherit;
  font-weight: 700;
  min-height: 2.85rem;
  padding: 0.75rem 1rem;
}

.whatsapp-support {
  align-items: center;
  background: rgba(19, 18, 16, 0.96);
  border: 1px solid rgba(201, 164, 82, 0.34);
  border-radius: 0.55rem;
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.32);
  color: var(--foreground);
  cursor: pointer;
  display: inline-flex;
  gap: 0.7rem;
  min-height: 3.35rem;
  padding: 0.55rem 1rem 0.55rem 0.6rem;
  text-decoration: none;
  transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.whatsapp-support:hover {
  background: rgba(28, 25, 21, 0.98);
  border-color: rgba(201, 164, 82, 0.58);
  box-shadow: 0 22px 48px rgba(0, 0, 0, 0.34);
  color: var(--foreground);
  transform: translateY(-2px);
}

.whatsapp-support-copy {
  display: grid;
  gap: 0.05rem;
  line-height: 1;
}

.whatsapp-support-copy strong {
  color: var(--foreground);
  font-size: 0.9rem;
  letter-spacing: 0;
}

.whatsapp-support-copy small {
  color: var(--gold);
  font-size: 0.72rem;
}

.cart-layout,
.auth-layout,
.checkout-layout {
  display: grid;
  gap: 2rem;
  padding-top: 3rem;
}

.cart-main,
.cart-summary,
.auth-panel,
.auth-aside,
.checkout-main,
.checkout-panel {
  border: 1px solid var(--border);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.018));
  box-shadow: var(--shadow-lift);
}

.cart-main,
.auth-panel,
.checkout-main {
  padding: clamp(1.25rem, 3vw, 2rem);
}

.cart-heading,
.form-row-between,
.summary-lines div,
.summary-login,
.cart-service-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.cart-heading {
  margin-bottom: 1.5rem;
}

.cart-heading h1,
.auth-panel h1 {
  margin-top: 0.35rem;
  font-size: clamp(2rem, 5vw, 3.6rem);
  line-height: 1;
}

.text-link,
.form-row-between a,
.summary-login a,
.cart-remove {
  color: var(--gold);
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.cart-items {
  display: grid;
  gap: 1rem;
}

.cart-item {
  display: grid;
  grid-template-columns: 5.5rem minmax(0, 1fr);
  gap: 1rem;
  border: 1px solid var(--border);
  background: rgba(0, 0, 0, 0.16);
  padding: 0.9rem;
}

.cart-item-media {
  display: grid;
  min-height: 7rem;
  place-items: center;
  background: radial-gradient(circle at center, rgba(201, 164, 82, 0.12), transparent 62%), var(--black);
}

.cart-item-media img {
  width: 100%;
  max-height: 7.5rem;
  object-fit: contain;
}

.cart-item-info {
  display: grid;
  gap: 1rem;
}

.cart-item-info h2 {
  margin: 0.25rem 0;
  font-size: clamp(1.25rem, 3vw, 1.6rem);
}

.cart-item-info p,
.summary-note,
.auth-intro,
.auth-benefits p,
.cart-empty p {
  color: var(--muted);
  line-height: 1.7;
}

.cart-remove {
  width: fit-content;
  border: 0;
  background: transparent;
  padding: 0;
}

.cart-line-price {
  align-self: center;
  color: var(--gold-soft);
  font-size: 1rem;
}

.cart-item .quantity-control {
  width: fit-content;
  align-self: center;
  grid-column: 2;
}

.cart-empty {
  display: grid;
  justify-items: center;
  gap: 1.1rem;
  border: 1px dashed var(--border);
  padding: clamp(3rem, 7vw, 5rem) 1rem;
  text-align: center;
}

.cart-empty h1 {
  margin-bottom: 0;
}

.cart-empty-shop-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.2rem;
  border: 1px solid rgba(255, 255, 255, 0.12) !important;
  background: var(--gradient-gold) !important;
  background-color: var(--gold) !important;
  background-image: var(--gradient-gold) !important;
  color: var(--black) !important;
  cursor: pointer;
  font-size: 0.72rem;
  font-weight: 400 !important;
  letter-spacing: 0.22em;
  padding: 0.95rem 1.6rem;
  text-transform: uppercase;
  transition: filter 0.25s ease, transform 0.25s ease;
}

.cart-empty-shop-button:hover {
  filter: brightness(1.12);
  transform: translateY(-2px);
}

.cart-empty-prompts {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.55rem;
  margin-top: 0.35rem;
}

.cart-empty-prompts span {
  border: 1px solid var(--border);
  border-radius: 999px;
  color: var(--muted);
  font-size: 0.66rem;
  letter-spacing: 0.14em;
  padding: 0.55rem 0.75rem;
  text-transform: uppercase;
}

.cart-empty[hidden] {
  display: none;
}

.cart-service-strip {
  flex-wrap: wrap;
  margin-top: 1.2rem;
  border-top: 1px solid var(--border);
  padding-top: 1.2rem;
}

.cart-service-strip span,
.summary-login span,
.auth-benefits article {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  color: var(--muted);
  font-size: 0.84rem;
}

.cart-summary {
  align-self: start;
  padding: clamp(1.25rem, 3vw, 1.8rem);
}

.summary-progress {
  display: grid;
  gap: 0.9rem;
  margin-top: 1.3rem;
  border-bottom: 1px solid var(--border);
  padding-bottom: 1.3rem;
}

.summary-progress > div:first-child {
  display: grid;
  gap: 0.35rem;
}

.summary-progress span,
.summary-progress strong {
  color: var(--muted);
  font-size: 0.86rem;
}

.shipping-meter,
.profile-meter > div {
  overflow: hidden;
  height: 0.35rem;
  background: rgba(255, 255, 255, 0.1);
}

.shipping-meter span {
  display: block;
  width: var(--level, 100%);
  height: 100%;
  background: var(--gradient-gold);
  transition: width 0.35s ease;
}

.promo-form {
  display: grid;
  gap: 0.7rem;
  margin: 1.35rem 0;
}

.promo-form label,
.auth-form label > span:first-child {
  color: var(--muted);
  font-size: 0.72rem;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.promo-form > div {
  display: grid;
  gap: 0.7rem;
}

.promo-form input,
.auth-form input {
  width: 100%;
  min-width: 0;
  border: 1px solid var(--border);
  background: rgba(0, 0, 0, 0.18);
  color: var(--foreground);
  outline: 0;
  padding: 0.95rem 1rem;
  transition: border-color 0.25s ease, background 0.25s ease;
}

.promo-form input:focus,
.auth-form input:focus {
  border-color: var(--gold);
  background: rgba(0, 0, 0, 0.28);
}

.promo-form .button-outline {
  border-color: rgba(201, 164, 82, 0.42);
  background: rgba(0, 0, 0, 0.28);
  color: var(--gold-soft);
}

.promo-form .button-outline:hover {
  border-color: var(--gold);
  background: rgba(201, 164, 82, 0.12);
  color: var(--gold);
}

.summary-lines {
  display: grid;
  gap: 0.85rem;
  margin: 0;
  border-top: 1px solid var(--border);
  padding-top: 1.25rem;
}

.summary-lines dt,
.summary-lines dd {
  margin: 0;
}

.summary-lines dt {
  color: var(--muted);
}

.summary-total {
  border-top: 1px solid var(--border);
  padding-top: 1rem;
}

.summary-total dd {
  color: var(--gold-soft);
  font-size: 1.45rem;
  font-weight: 600;
}

.checkout-button {
  width: 100%;
  margin-top: 1.4rem;
}

.summary-note,
.summary-login {
  margin-top: 1rem;
}

.summary-login {
  align-items: flex-start;
  border-top: 1px solid var(--border);
  padding-top: 1rem;
}

.cart-discovery {
  padding-top: 0;
}

.cart-set-upgrade {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  gap: clamp(1rem, 2vw, 1.4rem);
  align-items: stretch;
  padding-top: 0;
}

.cart-set-upgrade-copy,
.cart-set-card {
  border: 1px solid rgba(201, 164, 82, 0.24);
  background:
    linear-gradient(135deg, rgba(201, 164, 82, 0.15), rgba(255, 255, 255, 0.035) 42%, rgba(0, 0, 0, 0.2)),
    rgba(0, 0, 0, 0.2);
  box-shadow: var(--shadow-lift);
}

.cart-set-upgrade-copy {
  display: grid;
  align-content: center;
  gap: 0.85rem;
  padding: clamp(1.15rem, 2.5vw, 1.7rem);
}

.cart-set-upgrade-copy h2 {
  max-width: 13ch;
  margin: 0;
  font-size: clamp(1.7rem, 4vw, 2.65rem);
  line-height: 1;
}

.cart-set-upgrade-copy p:last-child {
  max-width: 34rem;
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.cart-set-upgrade-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.cart-set-card {
  display: grid;
  grid-template-columns: 96px minmax(0, 1fr);
  gap: 1rem;
  min-width: 0;
  padding: 0.9rem;
}

.cart-set-card-media {
  display: grid;
  min-height: 96px;
  place-items: center;
  background: radial-gradient(circle at center, rgba(201, 164, 82, 0.13), transparent 64%), var(--black);
}

.cart-set-card-media img {
  width: 96px;
  height: 96px;
  object-fit: contain;
}

.cart-set-card-body,
.cart-set-card-action {
  min-width: 0;
}

.cart-set-card-body span {
  color: var(--gold);
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.cart-set-card-body h3 {
  margin: 0.35rem 0 0.45rem;
  font-size: 1rem;
  line-height: 1.18;
}

.cart-set-card-body p {
  margin: 0;
  color: var(--muted);
  font-size: 0.82rem;
}

.cart-set-card-action {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 0.85rem;
}

.cart-set-card-action strong {
  color: var(--gold-soft);
  font-size: 0.84rem;
}

.cart-set-card-action a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.5rem;
  border: 1px solid rgba(201, 164, 82, 0.55);
  background: var(--gradient-gold);
  color: var(--black);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  padding: 0.72rem 0.95rem;
  text-transform: uppercase;
}

.checkout-main {
  display: grid;
  gap: 1rem;
}

.checkout-panel {
  display: grid;
  gap: 0;
  padding: clamp(1.1rem, 2.5vw, 1.5rem);
  box-shadow: none;
}

.checkout-accordion-trigger {
  display: flex;
  width: 100%;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  border: 0;
  background: transparent;
  color: inherit;
  padding: 0;
  text-align: left;
  cursor: pointer;
}

.checkout-accordion-trigger > ph-caret-down {
  flex: 0 0 auto;
  margin-top: 0.55rem;
  color: var(--gold);
  transition: transform 0.24s ease;
}

.checkout-panel.is-open .checkout-accordion-trigger > ph-caret-down {
  transform: rotate(180deg);
}

.checkout-accordion-content {
  display: grid;
  gap: 1.2rem;
  border-top: 1px solid var(--border);
  margin-top: 1.15rem;
  padding-top: 1.15rem;
}

.checkout-accordion-content[hidden] {
  display: none;
}

.checkout-panel-heading {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
}

.checkout-panel-heading > span {
  display: grid;
  width: 2.25rem;
  height: 2.25rem;
  flex: 0 0 auto;
  place-items: center;
  border: 1px solid rgba(201, 164, 82, 0.34);
  color: var(--gold);
}

.checkout-panel-heading h2 {
  font-size: clamp(1.25rem, 2vw, 1.65rem);
  font-weight: 600;
}

.checkout-panel-heading p,
.payment-note,
.choice-card em,
.checkout-order-items span {
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.7;
}

.checkout-grid {
  display: grid;
  gap: 0.9rem;
}

.checkout-grid label,
.checkout-grid .form-row,
.legal-check {
  display: grid;
  gap: 0.5rem;
}

.checkout-grid label > span,
.checkout-grid .form-row label,
.legal-check span {
  color: var(--muted);
  font-size: 0.74rem;
  letter-spacing: 0.13em;
  line-height: 1.6;
  text-transform: uppercase;
}

.checkout-grid input,
.checkout-grid textarea,
.checkout-grid select,
.checkout-grid .select2-container--default .select2-selection--single {
  width: 100%;
  min-width: 0;
  border: 1px solid var(--border);
  background: rgba(0, 0, 0, 0.18);
  color: var(--foreground);
  outline: 0;
  padding: 0.95rem 1rem;
  resize: vertical;
  transition: border-color 0.25s ease, background 0.25s ease;
}

.checkout-grid input:focus,
.checkout-grid textarea:focus,
.checkout-grid select:focus,
.checkout-grid .select2-container--default.select2-container--focus .select2-selection--single,
.checkout-grid .select2-container--default.select2-container--open .select2-selection--single {
  border-color: var(--gold);
  background: rgba(0, 0, 0, 0.28);
}

.checkout-woocommerce-fields .form-row {
  float: none;
  margin: 0;
  padding: 0;
  width: auto;
}

.checkout-woocommerce-fields .form-row-first,
.checkout-woocommerce-fields .form-row-last,
.checkout-woocommerce-fields .form-row-wide {
  float: none;
  width: auto;
}

.checkout-woocommerce-fields .form-row-wide,
.checkout-full {
  grid-column: 1 / -1;
}

.checkout-woocommerce-fields .woocommerce-input-wrapper {
  display: block;
  min-width: 0;
  width: 100%;
}

.checkout-woocommerce-fields .select2-container {
  width: 100% !important;
}

.select2-hidden-accessible {
  max-width: 1px !important;
  min-width: 1px !important;
  width: 1px !important;
}

html body.woocommerce-checkout select.select2-hidden-accessible {
  max-width: 1px !important;
  min-width: 1px !important;
  width: 1px !important;
}

.checkout-woocommerce-fields textarea {
  min-height: 8rem;
}

.checkout-choice-row {
  display: grid;
  gap: 0.85rem;
}

.saved-info-strip {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.65rem;
  border: 1px solid rgba(201, 164, 82, 0.24);
  background: rgba(201, 164, 82, 0.065);
  padding: 0.8rem 0.9rem;
  color: var(--muted);
  font-size: 0.84rem;
  line-height: 1.6;
}

.choice-card {
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
  border: 1px solid var(--border);
  background: rgba(0, 0, 0, 0.16);
  padding: 1rem;
  cursor: pointer;
}

.choice-card input,
.legal-check input,
.woocommerce-checkout #payment ul.payment_methods li input {
  width: 1rem;
  height: 1rem;
  margin-top: 0.18rem;
  accent-color: var(--gold);
}

.choice-card span {
  display: grid;
  gap: 0.25rem;
}

.choice-card strong {
  font-size: 0.95rem;
}

.woocommerce-checkout #payment ul.payment_methods li {
  align-items: flex-start;
  background: rgba(0, 0, 0, 0.16);
  display: flex;
  gap: 0.8rem;
  padding: 1rem;
}

.woocommerce-checkout #payment ul.payment_methods li label {
  color: var(--foreground);
  cursor: pointer;
  font-size: 0.95rem;
  font-weight: 500;
}

.woocommerce-checkout #payment ul.payment_methods li .payment_box {
  flex-basis: 100%;
}

.payment-panel {
  border-top: 1px solid var(--border);
  padding-top: 1rem;
}

.payment-panel[hidden] {
  display: none;
}

.payment-note {
  display: flex;
  align-items: flex-start;
  gap: 0.55rem;
  margin-top: 1rem;
}

.bank-transfer-box {
  display: grid;
  gap: 0.55rem;
  border: 1px solid rgba(201, 164, 82, 0.28);
  background: rgba(201, 164, 82, 0.07);
  padding: 1rem;
}

.bank-transfer-box p {
  color: var(--muted);
  line-height: 1.6;
}

.bank-transfer-box strong {
  color: var(--foreground);
}

.legal-check {
  grid-template-columns: auto minmax(0, 1fr);
  align-items: flex-start;
  border: 1px solid var(--border);
  background: rgba(0, 0, 0, 0.14);
  padding: 0.9rem;
}

.legal-check a {
  display: inline-flex;
  align-items: center;
  min-height: 2.5rem;
  color: var(--gold);
}

.legal-check.is-optional {
  opacity: 0.82;
}

.checkout-summary {
  position: sticky;
  top: 6rem;
}

.checkout-order-items {
  display: grid;
  gap: 0.85rem;
  margin: 1.25rem 0;
  border-bottom: 1px solid var(--border);
  padding-bottom: 1.25rem;
}

.checkout-order-items article {
  display: grid;
  grid-template-columns: 3.5rem minmax(0, 1fr);
  align-items: center;
  gap: 0.8rem;
}

.checkout-order-items img {
  width: 3.5rem;
  height: 4.4rem;
  object-fit: contain;
  background: radial-gradient(circle at center, rgba(201, 164, 82, 0.12), transparent 62%), var(--black);
}

.checkout-order-items div {
  display: grid;
  gap: 0.2rem;
}

.checkout-security {
  display: grid;
  gap: 0.65rem;
  margin-top: 1rem;
  border-top: 1px solid var(--border);
  padding-top: 1rem;
}

.checkout-security span {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: var(--muted);
  font-size: 0.84rem;
}

.auth-layout {
  align-items: start;
}

.auth-panel {
  display: grid;
  gap: 1.35rem;
}

.auth-intro {
  max-width: 38rem;
}

.auth-tabs {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border: 1px solid var(--border);
  padding: 0.25rem;
}

.auth-tabs button {
  border: 0;
  background: transparent;
  color: var(--muted);
  padding: 0.85rem 1rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  transition: background 0.25s ease, color 0.25s ease;
}

.auth-tabs button.is-active {
  background: rgba(201, 164, 82, 0.14);
  color: var(--foreground);
}

.auth-form {
  display: grid;
  gap: 1rem;
}

.auth-form[hidden] {
  display: none;
}

.auth-form label {
  display: grid;
  gap: 0.55rem;
}

.password-field {
  position: relative;
  display: block;
}

.password-field button {
  position: absolute;
  top: 50%;
  right: 0.75rem;
  display: grid;
  width: 2.75rem;
  height: 2.75rem;
  place-items: center;
  border: 0;
  background: transparent;
  color: var(--muted);
  transform: translateY(-50%);
}

.auth-form .show-password-input {
  display: none !important;
}

.check-line {
  display: flex !important;
  grid-template-columns: none;
  align-items: center;
  gap: 0.6rem;
  color: var(--muted);
  font-size: 0.86rem;
  min-height: 2.75rem;
}

.check-line input {
  width: 1.15rem;
  height: 1.15rem;
  accent-color: var(--gold);
}

.auth-form .lost_password a,
.auth-form .form-row-between a {
  display: inline-flex;
  align-items: center;
  min-height: 2.75rem;
}

.auth-submit {
  width: 100%;
}

.auth-submit-button {
  align-items: center;
  background: var(--gradient-gold) !important;
  background-color: var(--gold) !important;
  background-image: var(--gradient-gold) !important;
  border: 1px solid rgba(255, 255, 255, 0.12) !important;
  color: var(--black) !important;
  cursor: pointer;
  display: inline-flex;
  font-weight: 400 !important;
  justify-content: center;
  min-height: 3.25rem;
  padding: 0 1.35rem;
  text-transform: uppercase;
  width: 100%;
}

.auth-submit-button:hover {
  filter: brightness(1.12);
  transform: translateY(-2px);
}

.auth-divider {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 0.9rem;
  color: var(--muted);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.auth-divider::before,
.auth-divider::after {
  content: "";
  height: 1px;
  background: var(--border);
}

.quick-login {
  display: grid;
  gap: 0.7rem;
}

.quick-login button {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  border: 1px solid var(--border);
  background: transparent;
  color: var(--foreground);
  padding: 0.9rem 1rem;
}

.auth-aside {
  display: grid;
  gap: 1rem;
  padding: 0.8rem;
}

.auth-visual {
  position: relative;
  min-height: 28rem;
  overflow: hidden;
}

.auth-visual img {
  width: 100%;
  height: 100%;
  min-height: 28rem;
  object-fit: cover;
}

.auth-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.78));
}

.auth-visual > div {
  position: absolute;
  z-index: 1;
  right: 1.25rem;
  bottom: 1.25rem;
  left: 1.25rem;
}

.auth-visual h2 {
  margin: 0.35rem 0 0.65rem;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
}

.auth-benefits {
  display: grid;
  gap: 0.85rem;
  padding: 0.4rem;
}

.auth-benefits article {
  align-items: flex-start;
  border: 1px solid var(--border);
  background: rgba(0, 0, 0, 0.12);
  padding: 1rem;
}

.auth-benefits h3 {
  margin-bottom: 0.25rem;
  color: var(--foreground);
  font-family: inherit;
  font-size: 0.9rem;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal,
.product-card,
.trust-card,
.info-block,
.faq-item,
.legal-card,
.note-card,
.pdp-feature,
.button,
.slider-button,
.bag-button,
.icon-button {
  will-change: transform, opacity;
}

@media (min-width: 640px) {
  .footer-links {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .collection-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
  }

  .promo-form > div,
  .quick-login {
    grid-template-columns: minmax(0, 1fr) auto;
  }

  .checkout-grid,
  .checkout-choice-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .checkout-full {
    grid-column: 1 / -1;
  }

  .cart-item {
    grid-template-columns: 6.5rem minmax(0, 1fr) auto auto;
    align-items: center;
  }

  .cart-item .quantity-control {
    grid-column: auto;
  }
}

@media (min-width: 768px) {
  .header-inner {
    grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
    padding-right: 2.5rem;
    padding-left: 2.5rem;
  }

  .desktop-nav {
    display: flex;
  }

  .search-overlay-trigger {
    display: block;
  }

  .menu-toggle {
    display: none;
  }

  .mobile-nav {
    display: none;
  }

  .hero-content,
  .category-hero-content,
  .section,
  .footer-inner,
  .footer-bottom {
    padding-right: 2.5rem;
    padding-left: 2.5rem;
  }

  .hero-content {
    padding-bottom: 7rem;
  }

  .marquee {
    justify-content: space-between;
    padding-right: max(2.5rem, calc((100vw - var(--max)) / 2 + 2.5rem));
    padding-left: max(2.5rem, calc((100vw - var(--max)) / 2 + 2.5rem));
  }

  .section {
    padding-top: 5.5rem;
    padding-bottom: 5.5rem;
  }

  #parfumler + #kampanyalar {
    padding-top: 2rem;
  }

  .section-heading {
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
  }

  .category-tools {
    grid-template-columns: 1fr auto;
    align-items: center;
  }

  .category-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

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

  .fragrance-notes {
    grid-template-columns: 1.05fr repeat(3, minmax(0, 1fr));
    align-items: start;
    padding: 2rem;
  }

  .fragrance-notes article {
    min-height: 100%;
    padding: 0 1.35rem;
    border-right: 1px solid var(--border);
    border-bottom: 0;
  }

  .fragrance-notes article:last-child {
    border-right: 0;
  }

  .legal-layout {
    grid-template-columns: minmax(13rem, 0.28fr) minmax(0, 1fr);
    align-items: start;
  }

  .legal-nav {
    position: sticky;
    top: 6rem;
  }

  .content-hero {
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  }

  .cart-layout {
    grid-template-columns: minmax(0, 1fr) minmax(20rem, 0.34fr);
  }

  .checkout-layout {
    grid-template-columns: minmax(0, 1fr) minmax(21rem, 0.36fr);
    align-items: start;
  }

  .cart-summary {
    position: sticky;
    top: 6.5rem;
  }

  .auth-layout {
    grid-template-columns: minmax(0, 0.9fr) minmax(22rem, 0.72fr);
  }

  .trust-grid,
  .contact-grid,
  .faq-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .commerce-contact-split {
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  }

  .info-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .product-detail {
    grid-template-columns: minmax(0, 1.05fr) minmax(22rem, 0.72fr);
  }

  .product-story {
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    align-items: stretch;
  }

  .product-purchase {
    position: sticky;
    top: 6rem;
  }

  .product-thumbs {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    overflow: visible;
  }

  .product-thumbs button {
    flex-basis: auto;
  }

  .detail-panels,
  .notes-grid,
  .profile-insight-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .review-summary {
    grid-template-columns: 0.7fr 1fr 1fr;
    align-items: stretch;
  }

  .review-carousel {
    grid-template-columns: 0.32fr minmax(0, 1fr);
    align-items: stretch;
  }

  .review-carousel .review-controls {
    grid-column: 2;
  }

  .footer-links {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

@media (min-width: 1024px) {
  .footer-inner {
    grid-template-columns: minmax(14rem, 1.2fr) repeat(4, minmax(0, 1fr));
    align-items: start;
    gap: 2.5rem;
  }

  .footer-links {
    display: contents;
  }

  .footer-links > div {
    min-width: 0;
  }

  .story {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 5rem;
  }
}

@media (max-width: 420px) {
  .brand img {
    width: 8.5rem;
  }

  .category-hero-content {
    padding-top: 4.65rem;
    padding-bottom: 0.8rem;
  }

  .button {
    width: 100%;
    padding-right: 1rem;
    padding-left: 1rem;
  }

  .stats {
    gap: 0.8rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.001ms !important;
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }

  .hero-slide::after {
    opacity: 0;
  }

  .hero-slide img,
  .hero-slide.swiper-slide-active img,
  .hero-video,
  .hero-slide.swiper-slide-active .hero-video {
    filter: none;
    transform: none;
  }
}

.search-overlay {
  position: fixed;
  inset: 0;
  z-index: 90;
  display: grid;
  place-items: center;
  background: rgba(5, 5, 5, 0.92);
  opacity: 0;
  padding: clamp(24px, 5vw, 72px);
  pointer-events: none;
  transition: opacity 0.22s ease;
}

.search-overlay[hidden] {
  display: none !important;
}

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

.search-overlay-inner {
  width: min(760px, 100%);
  text-align: center;
}

.search-overlay-inner h2 {
  color: var(--color-cream);
  font-size: clamp(2.4rem, 8vw, 5rem);
  line-height: 1;
  margin: 0.8rem 0 2rem;
}

.search-overlay-close {
  position: absolute;
  right: clamp(18px, 4vw, 42px);
  top: clamp(18px, 4vw, 42px);
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--color-cream);
}

.erkexin-search-form-overlay {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0;
  width: 100%;
  border: 1px solid rgba(198, 164, 92, 0.36);
  background: rgba(255, 255, 255, 0.04);
}

.erkexin-search-form-overlay input[type="search"] {
  min-width: 0;
  border: 0;
  background: transparent;
  color: var(--color-cream);
  font-size: clamp(1.15rem, 4vw, 1.8rem);
  outline: none;
  padding: clamp(18px, 4vw, 28px);
}

.erkexin-search-form-overlay input[type="search"]::placeholder {
  color: rgba(244, 236, 220, 0.48);
}

.erkexin-search-form input[type="search"]::-webkit-search-cancel-button {
  appearance: none;
  -webkit-appearance: none;
  width: 18px;
  height: 18px;
  border-radius: 999px;
  background-color: transparent;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' viewBox='0 0 18 18'%3E%3Cpath d='M5 5l8 8M13 5l-8 8' stroke='%23f4ecdc' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E");
  background-position: center;
  background-repeat: no-repeat;
  background-size: 18px 18px;
  cursor: pointer;
  opacity: 1;
}

.erkexin-search-form-overlay .search-button {
  display: grid;
  min-width: clamp(62px, 12vw, 92px);
  place-items: center;
  border-left: 1px solid rgba(198, 164, 92, 0.24);
  color: var(--color-cream);
}

.search-overlay-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.8rem;
  margin-top: 1.4rem;
}

.search-overlay-links a {
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  color: var(--color-muted);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  padding: 0.85rem 1rem;
  text-transform: uppercase;
}

.search-overlay-is-open {
  overflow: hidden;
}

.woocommerce-notices-wrapper,
.woocommerce-message,
.woocommerce-error,
.woocommerce-info {
  margin: 0 auto;
  max-width: 1200px;
}

.woocommerce-message,
.woocommerce-error,
.woocommerce-info {
  background: rgba(255, 255, 255, 0.04) !important;
  border: 1px solid rgba(196, 154, 69, 0.28);
  color: var(--color-cream) !important;
  padding: 14px 18px;
}

.woocommerce-message a,
.woocommerce-error a,
.woocommerce-info a {
  color: var(--color-gold) !important;
}

.woocommerce-message .button,
.woocommerce-error .button,
.woocommerce-info .button,
.woocommerce-message .wc-forward,
.woocommerce-error .wc-forward,
.woocommerce-info .wc-forward {
  background: var(--color-cream) !important;
  background-color: var(--color-cream) !important;
  color: #12100d !important;
}

.woocommerce-notices-wrapper {
  display: grid;
  gap: 10px;
  position: fixed;
  top: 92px;
  right: 22px;
  width: min(430px, calc(100vw - 32px));
  max-width: none;
  margin: 0;
  pointer-events: none;
  z-index: 9998;
}

.woocommerce-notices-wrapper:empty {
  display: none;
}

.woocommerce-notices-wrapper .woocommerce-message,
.woocommerce-message[role="alert"] {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 12px;
  position: fixed;
  top: 92px;
  right: 22px;
  z-index: 9998;
  width: min(430px, calc(100vw - 32px));
  max-width: none;
  margin: 0;
  border: 1px solid rgba(201, 164, 82, 0.38);
  border-radius: 8px;
  background: rgba(12, 10, 8, 0.94) !important;
  background-color: rgba(12, 10, 8, 0.94) !important;
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.28);
  color: var(--color-cream) !important;
  font-size: 0.88rem;
  line-height: 1.45;
  padding: 14px 16px;
  pointer-events: auto;
}

.woocommerce-notices-wrapper .woocommerce-message::before,
.woocommerce-notices-wrapper .woocommerce-message::after,
.woocommerce-message[role="alert"]::before,
.woocommerce-message[role="alert"]::after {
  display: none;
}

.woocommerce-notices-wrapper .woocommerce-message .button,
.woocommerce-notices-wrapper .woocommerce-message .wc-forward,
.woocommerce-message[role="alert"] .button,
.woocommerce-message[role="alert"] .wc-forward {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.75rem;
  border: 1px solid rgba(255, 255, 255, 0.12) !important;
  background: var(--gradient-gold) !important;
  background-color: var(--gold) !important;
  background-image: var(--gradient-gold) !important;
  color: var(--black) !important;
  font-size: 0.68rem;
  font-weight: 400 !important;
  letter-spacing: 0.16em;
  padding: 0.65rem 0.9rem;
  text-transform: uppercase;
  white-space: nowrap;
}

.woocommerce-notices-wrapper .woocommerce-message .button:hover,
.woocommerce-notices-wrapper .woocommerce-message .wc-forward:hover,
.woocommerce-message[role="alert"] .button:hover,
.woocommerce-message[role="alert"] .wc-forward:hover {
  filter: brightness(1.12);
}

@media (max-width: 640px) {
  .woocommerce-notices-wrapper {
    top: 76px;
    right: 16px;
    left: 16px;
    width: auto;
  }

  .woocommerce-notices-wrapper .woocommerce-message,
  .woocommerce-message[role="alert"] {
    grid-template-columns: 1fr;
    justify-items: start;
    top: 76px;
    right: 16px;
    left: 16px;
    width: auto;
  }
}

.erkexin-toast-stack {
  display: grid;
  gap: 10px;
  position: fixed;
  right: 22px;
  top: 92px;
  width: min(360px, calc(100vw - 32px));
  z-index: 9999;
}

.erkexin-toast {
  align-items: center;
  background: rgba(12, 10, 8, 0.94);
  border: 1px solid rgba(196, 154, 69, 0.38);
  border-radius: 8px;
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.28);
  color: var(--color-cream);
  display: flex;
  gap: 12px;
  justify-content: space-between;
  opacity: 0;
  padding: 14px 16px;
  transform: translateY(-10px);
  transition: opacity 180ms ease, transform 180ms ease;
}

#yith-wcwl-popup-message {
  display: none !important;
}

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

.erkexin-toast strong {
  color: var(--color-gold);
  display: block;
  font-family: var(--font-heading);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.erkexin-toast span {
  color: var(--color-muted);
  display: block;
  font-size: 0.88rem;
  line-height: 1.45;
  margin-top: 2px;
}

.erkexin-toast button {
  align-items: center;
  background: transparent;
  border: 0;
  color: var(--color-cream);
  cursor: pointer;
  display: inline-flex;
  height: 32px;
  justify-content: center;
  padding: 0;
  width: 32px;
}

@media (max-width: 640px) {
  .erkexin-toast-stack {
    left: 16px;
    right: 16px;
    top: 76px;
    width: auto;
  }
}

.erkexin-cart-form {
  display: grid;
  gap: 16px;
}

.quantity-control .screen-reader-text.qty {
  block-size: 1px;
  inline-size: 1px;
  opacity: 0;
  overflow: hidden;
  pointer-events: none;
  position: absolute;
}

.erkexin-bundle-items {
  gap: 10px;
}

.erkexin-bundle-item {
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--color-cream);
  display: grid;
  gap: 12px;
  grid-template-columns: 44px 1fr auto;
  padding: 10px;
}

.erkexin-bundle-item img {
  aspect-ratio: 1;
  height: 44px;
  object-fit: cover;
  width: 44px;
}

.erkexin-bundle-item span {
  color: var(--color-muted);
  font-size: 0.82rem;
  text-transform: uppercase;
}

.erkexin-bundle-item strong {
  color: var(--color-gold);
}

.erkexin-tabs .profile-insight-card {
  min-height: 170px;
}

.product-swiper .product-card {
  display: block;
  height: 100%;
}

.product-swiper .product-media {
  aspect-ratio: 4 / 5;
}

.product-swiper .product-hover {
  display: grid;
  align-content: end;
}

.erkexin-cart-page-form {
  display: grid;
  gap: 22px;
}

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

.cart-item {
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.09);
  display: grid;
  gap: 18px;
  grid-template-columns: 108px minmax(0, 1fr) auto auto;
  padding: 14px;
}

.cart-item-info {
  display: grid;
  gap: 1rem;
  min-width: 0;
}

.cart-item-info h2 {
  font-size: 1.05rem;
  margin: 0 0 8px;
}

.cart-item-info a {
  display: inline-flex;
  align-items: center;
  min-height: 2.5rem;
  color: var(--color-cream);
}

.cart-item-info p {
  margin: 0;
}

.cart-item-info > div > p:not(.product-kicker) {
  color: var(--color-muted);
  font-size: 0.84rem;
  line-height: 1.65;
}

.product-kicker,
.product-kicker a {
  color: var(--color-gold);
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.cart-heading .text-link,
.summary-login a,
.woocommerce-cart .woocommerce-message .wc-forward {
  display: inline-flex;
  align-items: center;
  min-height: 2.75rem;
}

.cart-item-media img {
  aspect-ratio: 1;
  display: block;
  height: 108px;
  object-fit: contain;
  width: 108px;
}

.cart-item-copy h2 {
  font-size: 1.05rem;
  margin: 0 0 8px;
}

.cart-item-copy a {
  color: var(--color-cream);
}

.cart-item-copy p,
.cart-item-copy span {
  color: var(--color-muted);
  font-size: 0.84rem;
  margin: 0;
  text-transform: uppercase;
}

.cart-item-actions {
  align-items: end;
  display: grid;
  gap: 12px;
  justify-items: end;
  min-width: 170px;
}

.cart-remove {
  display: inline-flex;
  align-items: center;
  color: var(--color-muted);
  font-size: 0.76rem;
  justify-self: start;
  min-height: 2.75rem;
  text-transform: uppercase;
}

.woocommerce a.remove.cart-remove {
  display: inline-flex;
  align-items: center;
  background: transparent;
  color: var(--color-muted) !important;
  font-size: 0.76rem;
  height: auto;
  line-height: 1.2;
  min-height: 2.75rem;
  padding-right: 0.75rem;
  width: auto;
}

.woocommerce a.remove.cart-remove:hover {
  background: transparent;
  color: var(--color-gold) !important;
}

.cart-form-actions {
  align-items: end;
  display: flex;
  gap: 14px;
  justify-content: flex-end;
}

.cart-form-actions-hidden {
  display: none;
}

.cart-coupon-button,
.cart-update-button,
.cart-checkout-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.2rem;
  cursor: pointer;
  font-size: 0.72rem;
  font-weight: 400 !important;
  letter-spacing: 0.22em;
  padding: 0.95rem 1.6rem;
  text-transform: uppercase;
  transition: background 0.25s ease, border-color 0.25s ease, color 0.25s ease, filter 0.25s ease, transform 0.25s ease;
  white-space: nowrap;
}

.cart-coupon-button {
  border: 1px solid rgba(255, 255, 255, 0.12) !important;
  background: var(--gradient-gold) !important;
  background-color: var(--gold) !important;
  background-image: var(--gradient-gold) !important;
  color: var(--black) !important;
}

.cart-coupon-button:hover {
  filter: brightness(1.12);
  transform: translateY(-2px);
}

.cart-update-button {
  border: 1px solid rgba(201, 164, 82, 0.42) !important;
  background: rgba(0, 0, 0, 0.28) !important;
  background-color: rgba(0, 0, 0, 0.28) !important;
  background-image: none !important;
  color: var(--gold-soft) !important;
}

.cart-update-button:hover {
  border-color: var(--gold) !important;
  background: rgba(201, 164, 82, 0.12) !important;
  background-color: rgba(201, 164, 82, 0.12) !important;
  color: var(--gold) !important;
}

.cart-checkout-button {
  width: 100%;
  margin-top: 1.4rem;
  border: 1px solid rgba(255, 255, 255, 0.12) !important;
  background: var(--gradient-gold) !important;
  background-color: var(--gold) !important;
  background-image: var(--gradient-gold) !important;
  color: var(--black) !important;
}

.cart-checkout-button:hover {
  filter: brightness(1.12);
  transform: translateY(-2px);
}

.cart-summary .cart_totals,
.cart-summary .woocommerce {
  display: grid;
  gap: 14px;
}

.cart-summary h2,
.cart-summary .wc-proceed-to-checkout {
  margin: 0;
}

.cart-summary table,
.checkout-summary table,
.erkexin-myaccount table {
  border-collapse: collapse;
  color: var(--color-muted);
  width: 100%;
}

.cart-summary th,
.cart-summary td,
.checkout-summary th,
.checkout-summary td,
.erkexin-myaccount th,
.erkexin-myaccount td {
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding: 12px 0;
  text-align: left;
}

.cart-summary .checkout-button,
.checkout-summary #place_order,
.erkexin-myaccount .button,
.woocommerce-button {
  align-items: center;
  background: var(--color-cream) !important;
  background-color: var(--color-cream) !important;
  border: 0;
  color: #12100d !important;
  cursor: pointer;
  display: inline-flex;
  font-weight: 700;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  text-transform: uppercase;
}

.cart-summary > .checkout-button.button-gold {
  background: var(--gradient-gold) !important;
  background-color: var(--color-gold) !important;
  background-image: var(--gradient-gold) !important;
  border: 1px solid rgba(255, 255, 255, 0.12) !important;
  color: #12100d !important;
  font-weight: 500;
  width: 100%;
}

.cart-summary .wc-proceed-to-checkout .checkout-button.button.alt.wc-forward {
  background: var(--gradient-gold) !important;
  background-color: var(--color-gold) !important;
  border: 1px solid rgba(255, 255, 255, 0.12) !important;
  color: #12100d !important;
  opacity: 1 !important;
}

.woocommerce form .form-row {
  margin: 0 0 14px;
}

.woocommerce form .form-row label,
.woocommerce-billing-fields label,
.woocommerce-shipping-fields label {
  color: var(--color-muted);
  display: block;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  margin-bottom: 8px;
  text-transform: uppercase;
}

.woocommerce input.input-text,
.woocommerce textarea,
.woocommerce select,
.select2-container--default .select2-selection--single {
  background: rgba(8, 8, 8, 0.58);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 0;
  color: var(--color-cream);
  min-height: 46px;
  padding: 12px 14px;
  width: 100%;
}

.erkexin-individual-invoice-field.is-hidden,
.erkexin-corporate-invoice-field.is-hidden,
#billing_tckn_field.is-hidden,
#billing_company_title_field.is-hidden,
#billing_tax_office_field.is-hidden,
#billing_tax_no_field.is-hidden {
  display: none !important;
}

.woocommerce-checkout #billing_tckn_field[hidden],
.woocommerce-checkout #billing_company_title_field[hidden],
.woocommerce-checkout #billing_tax_office_field[hidden],
.woocommerce-checkout #billing_tax_no_field[hidden] {
  display: none !important;
}

.contract-placeholder-note {
  border: 1px dashed rgba(196, 154, 69, 0.38);
  color: var(--color-muted);
  font-size: 0.82rem;
  margin: 12px 0 0;
  padding: 12px;
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
  color: var(--color-cream);
  line-height: 22px;
}

.woocommerce-checkout-review-order {
  display: grid;
  gap: 16px;
}

.woocommerce-checkout #payment {
  background: transparent;
  border: 0;
}

.woocommerce-checkout #payment ul.payment_methods {
  border: 0;
  display: grid;
  gap: 10px;
  padding: 0;
}

.woocommerce-checkout #payment ul.payment_methods li {
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--color-muted);
  list-style: none;
  padding: 12px;
}

.woocommerce-privacy-policy-text,
.woocommerce-terms-and-conditions-wrapper,
.payment_box {
  color: var(--color-muted);
  font-size: 0.86rem;
}

.woocommerce-order-pay main {
  padding-top: clamp(6.25rem, 8vw, 7.5rem);
}

.woocommerce-order-pay main > .woocommerce {
  display: grid;
  gap: clamp(1rem, 2.5vw, 1.35rem);
  margin: 0 auto;
  max-width: min(1180px, calc(100% - 2rem));
  width: 100%;
}

.woocommerce-order-pay .order_details {
  display: grid;
  gap: 0.75rem;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  list-style: none;
  margin: 0;
  padding: 0;
}

.woocommerce-order-pay .order_details li {
  min-width: 0;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(0, 0, 0, 0.18);
  color: var(--color-muted);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  line-height: 1.35;
  padding: 0.85rem;
  text-transform: uppercase;
}

.woocommerce-order-pay .order_details li strong,
.woocommerce-order-pay .order_details li span,
.woocommerce-order-pay .order_details li b {
  display: block;
  color: var(--color-cream);
  font-size: clamp(0.88rem, 1.5vw, 1rem);
  letter-spacing: 0;
  line-height: 1.3;
  margin-top: 0.25rem;
  overflow-wrap: anywhere;
  text-transform: none;
}

.woocommerce-order-pay iframe {
  display: block;
  max-width: 100%;
  width: 100%;
}

.woocommerce-account .woocommerce-MyAccount-navigation ul {
  display: grid;
  gap: 8px;
  list-style: none;
  margin: 18px 0 0;
  padding: 0;
}

.woocommerce-account .woocommerce-MyAccount-navigation a {
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--color-muted);
  display: block;
  padding: 12px;
  text-transform: uppercase;
}

.woocommerce-account .woocommerce-MyAccount-navigation .is-active a {
  border-color: rgba(196, 154, 69, 0.55);
  color: var(--color-gold);
}

.account-content-page {
  padding-top: 0;
}

.account-layout {
  align-items: start;
  display: grid;
  gap: 2rem;
  padding-top: clamp(6.4rem, 8vw, 7.25rem);
}

.account-sidebar,
.account-main,
.account-panel,
.account-welcome,
.account-shortcuts a,
.account-recent-orders,
.account-empty-state {
  border: 1px solid var(--border);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.018));
  box-shadow: var(--shadow-lift);
}

.account-sidebar {
  display: grid;
  gap: 1rem;
  padding: clamp(1rem, 2.5vw, 1.35rem);
}

.account-user-card {
  align-items: center;
  display: grid;
  gap: 0.9rem;
  grid-template-columns: auto minmax(0, 1fr);
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.09);
}

.account-avatar {
  align-items: center;
  background: var(--gradient-gold);
  color: var(--black);
  display: inline-flex;
  font-size: 1rem;
  font-weight: 500;
  height: 3rem;
  justify-content: center;
  width: 3rem;
}

.account-user-card strong,
.account-stats strong,
.account-shortcuts span {
  color: var(--color-cream);
}

.account-user-card span:not(.account-avatar) {
  color: var(--color-muted);
  display: block;
  font-size: 0.84rem;
  margin-top: 0.25rem;
  overflow-wrap: anywhere;
}

.account-navigation ul {
  display: grid !important;
  gap: 0.55rem !important;
  margin: 0 !important;
  padding: 0 !important;
  width: 100%;
}

.account-navigation {
  float: none !important;
  width: 100% !important;
}

.woocommerce-account .account-sidebar .woocommerce-MyAccount-navigation {
  float: none !important;
  width: 100% !important;
}

.account-navigation li {
  list-style: none;
  width: 100%;
}

.account-navigation a {
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.1) !important;
  color: var(--color-muted) !important;
  display: flex !important;
  gap: 0.72rem;
  min-height: 3rem;
  padding: 0 0.9rem !important;
  text-transform: uppercase;
  transition: border-color 0.25s ease, color 0.25s ease, background 0.25s ease;
  white-space: nowrap;
  width: 100%;
}

.account-navigation a:hover,
.account-navigation .is-active a {
  background: rgba(201, 164, 82, 0.1);
  border-color: rgba(201, 164, 82, 0.52) !important;
  color: var(--color-gold) !important;
}

.account-main {
  display: grid;
  gap: 1.15rem;
  padding: clamp(1.25rem, 3vw, 2rem);
}

.account-heading,
.account-section-heading,
.account-welcome {
  align-items: flex-start;
  display: flex;
  gap: 1rem;
  justify-content: space-between;
}

.account-heading h1 {
  font-size: clamp(1.65rem, 2.6vw, 2.2rem);
  line-height: 1;
  margin-top: 0.35rem;
}

.account-welcome h2 {
  font-size: clamp(1.75rem, 3.2vw, 2.45rem);
  line-height: 1;
  margin-top: 0.35rem;
}

.account-panel h2 {
  color: var(--color-cream);
  font-size: clamp(1.2rem, 1.9vw, 1.55rem);
  line-height: 1.12;
}

.account-panel h3 {
  color: var(--color-cream);
  font-size: 1rem;
  line-height: 1.25;
}

.account-heading p,
.account-welcome p,
.account-shortcuts small,
.account-empty-state p,
.account-order-list span {
  color: var(--color-muted);
  line-height: 1.65;
}

.account-panel {
  display: grid;
  gap: 1.1rem;
  padding: clamp(1rem, 2.5vw, 1.35rem);
}

.account-dashboard {
  display: grid;
  gap: 1rem;
}

.account-welcome {
  padding: clamp(1rem, 2.5vw, 1.35rem);
}

.account-stats,
.account-shortcuts {
  display: grid;
  gap: 1rem;
}

.account-stats article {
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(0, 0, 0, 0.16);
  display: grid;
  gap: 0.45rem;
  padding: 1rem;
}

.account-stats span {
  color: var(--color-muted);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.account-stats strong {
  font-size: clamp(1.25rem, 3vw, 1.9rem);
  overflow-wrap: anywhere;
}

.account-shortcuts a {
  color: inherit;
  display: grid;
  gap: 0.45rem;
  padding: 1rem;
  text-decoration: none;
}

.account-shortcuts ph-package,
.account-shortcuts ph-map-pin,
.account-shortcuts ph-user-circle,
.account-empty-state ph-shopping-bag-open {
  color: var(--color-gold);
}

.account-recent-orders {
  display: grid;
  gap: 1rem;
  padding: clamp(1rem, 2.5vw, 1.35rem);
}

.account-address-book,
.account-address-form {
  display: grid;
  gap: 1.15rem;
}

.account-address-grid {
  display: grid;
  gap: 1rem;
}

.account-address-card {
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(0, 0, 0, 0.16);
  display: grid;
  gap: 1rem;
  padding: clamp(1rem, 2.5vw, 1.25rem);
}

.account-address-card header {
  align-items: center;
  display: flex;
  gap: 1rem;
  justify-content: space-between;
}

.account-address-card header > div {
  align-items: center;
  display: flex;
  gap: 0.7rem;
}

.account-address-card ph-map-pin {
  color: var(--color-gold);
}

.account-address-card h3 {
  color: var(--color-cream);
  font-family: inherit;
  font-size: 1rem;
  margin: 0;
}

.account-address-card address {
  color: var(--color-muted);
  font-style: normal;
  line-height: 1.75;
  min-height: 4.5rem;
}

.account-address-fields {
  display: grid;
  gap: 0.2rem;
}

.account-form-actions {
  margin: 1rem 0 0;
}

.account-address-form .form-row {
  margin-bottom: 1rem !important;
}

.account-address-form .form-row-first,
.account-address-form .form-row-last {
  float: none;
  width: 100% !important;
}

.account-address-fields .form-row {
  float: none !important;
  margin-right: 0 !important;
  width: 100% !important;
}

.erkexin-myaccount input.input-text,
.erkexin-myaccount input[type="text"],
.erkexin-myaccount input[type="email"],
.erkexin-myaccount input[type="tel"],
.erkexin-myaccount input[type="password"],
.erkexin-myaccount textarea,
.erkexin-myaccount select,
.erkexin-myaccount .select2-container--default .select2-selection--single {
  background: rgba(8, 8, 8, 0.58) !important;
  background-color: rgba(8, 8, 8, 0.58) !important;
  border: 1px solid rgba(255, 255, 255, 0.12) !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  color: var(--color-cream) !important;
  min-height: 3rem;
  outline: 0;
  padding: 0.78rem 0.95rem !important;
  width: 100%;
}

.erkexin-myaccount textarea {
  min-height: 7rem;
  resize: vertical;
}

.erkexin-myaccount input::placeholder,
.erkexin-myaccount textarea::placeholder,
.erkexin-myaccount .select2-container--default .select2-selection--single .select2-selection__placeholder {
  color: rgba(246, 241, 231, 0.45) !important;
}

.erkexin-myaccount input:focus,
.erkexin-myaccount textarea:focus,
.erkexin-myaccount select:focus,
.erkexin-myaccount .select2-container--default.select2-container--focus .select2-selection--single,
.erkexin-myaccount .select2-container--default.select2-container--open .select2-selection--single {
  background: rgba(0, 0, 0, 0.38) !important;
  border-color: rgba(201, 164, 82, 0.65) !important;
}

.erkexin-myaccount .select2-container {
  width: 100% !important;
}

.erkexin-myaccount .select2-container--default .select2-selection--single {
  align-items: center;
  display: flex;
  height: auto !important;
}

.erkexin-myaccount .select2-container--default .select2-selection--single .select2-selection__rendered {
  color: var(--color-cream) !important;
  line-height: 1.35 !important;
  padding-left: 0 !important;
  padding-right: 2rem !important;
}

.erkexin-myaccount .select2-container--default .select2-selection--single .select2-selection__arrow {
  height: 100% !important;
  right: 0.75rem !important;
}

.select2-container--open .select2-dropdown {
  background: #101010 !important;
  border: 1px solid rgba(201, 164, 82, 0.32) !important;
  color: var(--color-cream) !important;
}

.select2-container--default .select2-results__option {
  color: var(--color-cream);
}

.select2-container--default .select2-results__option--highlighted[aria-selected] {
  background: rgba(201, 164, 82, 0.18) !important;
  color: var(--color-gold) !important;
}

.account-recent-orders h2 {
  color: var(--color-cream);
  font-size: clamp(1.2rem, 1.9vw, 1.55rem);
  margin: 0.25rem 0 0;
}

.account-order-list {
  display: grid;
  gap: 0.75rem;
}

.account-order-list article {
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.09);
  display: grid;
  gap: 0.75rem;
  padding: 0.9rem;
}

.account-order-list strong,
.account-order-list b {
  color: var(--color-cream);
}

.account-empty-state {
  align-items: center;
  box-shadow: none;
  display: grid;
  gap: 1rem;
  padding: 1rem;
}

.account-empty-state h3 {
  color: var(--color-cream);
  font-family: inherit;
  font-size: 1.05rem;
  margin: 0 0 0.25rem;
}

.account-gold-button,
.account-outline-button,
.erkexin-myaccount .woocommerce-button,
.erkexin-myaccount .button {
  align-items: center;
  cursor: pointer;
  display: inline-flex !important;
  font-weight: 400 !important;
  gap: 0.55rem;
  justify-content: center;
  min-height: 3rem;
  padding: 0 1.1rem !important;
  text-transform: uppercase;
}

.erkexin-myaccount .account-orders-table .woocommerce-button,
.erkexin-myaccount .woocommerce-orders-table .woocommerce-button,
.erkexin-myaccount .woocommerce-pagination .woocommerce-button,
.erkexin-myaccount .woocommerce-info .wc-forward {
  font-size: 0.72rem !important;
  font-weight: 400 !important;
  letter-spacing: 0.08em;
  min-height: 2.25rem !important;
  padding: 0 0.85rem !important;
}

.erkexin-myaccount .account-orders-table .woocommerce-button + .woocommerce-button,
.erkexin-myaccount .woocommerce-orders-table .woocommerce-button + .woocommerce-button {
  margin-left: 0.45rem;
}

.account-gold-button,
.erkexin-myaccount .woocommerce-button,
.erkexin-myaccount .button {
  background: var(--gradient-gold) !important;
  background-color: var(--color-gold) !important;
  background-image: var(--gradient-gold) !important;
  border: 1px solid rgba(255, 255, 255, 0.12) !important;
  color: var(--black) !important;
}

.account-outline-button {
  background: rgba(0, 0, 0, 0.22) !important;
  border: 1px solid rgba(201, 164, 82, 0.42) !important;
  color: var(--gold-soft) !important;
}

.account-panel .woocommerce-info,
.account-panel .woocommerce-message,
.account-panel .woocommerce-error {
  border: 1px solid rgba(201, 164, 82, 0.28);
  background: rgba(0, 0, 0, 0.18);
  color: var(--color-muted);
  margin: 0;
  padding: 1rem;
}

.account-panel fieldset {
  border: 1px solid rgba(255, 255, 255, 0.1);
  margin: 1rem 0;
  padding: 1rem;
}

.account-panel legend {
  color: var(--color-gold);
  padding: 0 0.45rem;
}

@media (min-width: 640px) {
  .account-stats,
  .account-shortcuts {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

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

  .account-address-fields {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 1rem;
  }

  .account-address-fields .form-row-wide {
    grid-column: 1 / -1;
  }

  .account-order-list article {
    grid-template-columns: minmax(0, 1fr) auto auto;
  }
}

@media (min-width: 1024px) {
  .account-layout {
    grid-template-columns: minmax(21rem, 0.38fr) minmax(0, 1fr);
  }

  .account-sidebar {
    position: sticky;
    top: 6.5rem;
  }
}

@media (max-width: 767px) {
  .account-heading,
  .account-section-heading,
  .account-welcome {
    display: grid;
  }
}

@media (min-width: 640px) {
  .about-stats,
  .about-value-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1024px) {
  .about-hero,
  .about-split,
  .about-cta {
    grid-template-columns: minmax(0, 0.95fr) minmax(24rem, 0.72fr);
  }

  .about-hero-media,
  .about-split figure,
  .about-cta figure {
    min-height: 30rem;
  }

  .about-manifest {
    grid-template-columns: minmax(0, 0.8fr) minmax(0, 0.72fr);
  }

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

.empty-state-shell {
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: grid;
  gap: 18px;
  margin-inline: auto;
  max-width: 920px;
  padding: clamp(28px, 5vw, 64px);
}

.empty-state-shell h1,
.empty-state-shell h2 {
  color: var(--color-cream);
  font-size: clamp(2.4rem, 6vw, 5rem);
  line-height: 0.95;
  margin: 0;
}

.empty-state-shell p {
  color: var(--color-muted);
  max-width: 620px;
}

.empty-state-actions,
.print-order-actions {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.order-received-layout {
  margin-top: 0;
}

.order-received-main {
  display: grid;
  gap: clamp(1.25rem, 3vw, 2rem);
}

.woocommerce-order-received .legal-intro h1,
.woocommerce-order-received .order-received-main .cart-heading h1 {
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1.02;
}

.order-received-insights {
  margin-top: 0;
}

.order-received-actions {
  margin-top: 0.25rem;
}

.order-received-gold-button,
.woocommerce-order-received .order-received-gold-button,
.woocommerce-order-received .order-received-main a.button,
.woocommerce-order-received .order-received-main button.button,
.woocommerce-order-received .woocommerce-order a.button,
.woocommerce-order-received .woocommerce-order button.button,
.woocommerce-order-received .woocommerce-order .wc-forward,
.woocommerce-order-received .woocommerce-order .eoc-mini-button,
.woocommerce-order-received .woocommerce-form-login .woocommerce-form-login__submit,
.woocommerce-order-received .woocommerce-form-login button.button {
  align-items: center !important;
  background: var(--gradient-gold) !important;
  background-color: var(--color-gold) !important;
  background-image: var(--gradient-gold) !important;
  border: 1px solid rgba(255, 255, 255, 0.12) !important;
  border-radius: 0 !important;
  color: var(--color-black, #12100d) !important;
  cursor: pointer;
  display: inline-flex !important;
  font-size: 0.72rem !important;
  font-weight: 400 !important;
  justify-content: center !important;
  letter-spacing: 0.16em !important;
  line-height: 1.1 !important;
  min-height: 2.75rem !important;
  padding: 0.82rem 1.2rem !important;
  text-decoration: none !important;
  text-transform: uppercase !important;
  white-space: nowrap;
}

.order-received-gold-button:hover,
.woocommerce-order-received .order-received-main a.button:hover,
.woocommerce-order-received .order-received-main button.button:hover,
.woocommerce-order-received .woocommerce-order a.button:hover,
.woocommerce-order-received .woocommerce-order button.button:hover,
.woocommerce-order-received .woocommerce-order .wc-forward:hover,
.woocommerce-order-received .woocommerce-order .eoc-mini-button:hover,
.woocommerce-order-received .woocommerce-form-login .woocommerce-form-login__submit:hover,
.woocommerce-order-received .woocommerce-form-login button.button:hover {
  filter: brightness(1.12);
  transform: translateY(-1px);
}

.woocommerce-order-received .woocommerce-order {
  display: grid;
  gap: 1.25rem;
}

.woocommerce-order-received .woocommerce-thankyou-order-details,
.woocommerce-order-received .woocommerce-order-overview {
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: grid;
  gap: 0.8rem;
  list-style: none;
  margin: 0;
  padding: clamp(1rem, 2vw, 1.35rem);
}

.woocommerce-order-received .woocommerce-thankyou-order-details li,
.woocommerce-order-received .woocommerce-order-overview li {
  border: 0 !important;
  color: var(--color-muted);
  float: none !important;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  margin: 0 !important;
  padding: 0 !important;
  text-transform: uppercase;
}

.woocommerce-order-received .woocommerce-thankyou-order-details strong,
.woocommerce-order-received .woocommerce-order-overview strong {
  color: var(--color-cream);
  display: block;
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: 0;
  margin-top: 0.2rem;
  text-transform: none;
}

.woocommerce-order-received .woocommerce-order-details,
.woocommerce-order-received .woocommerce-customer-details,
.woocommerce-order-received .eoc-account-docs {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.015));
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--color-cream);
  margin: 0;
  padding: clamp(1.1rem, 2.4vw, 1.7rem);
}

.woocommerce-order-received .woocommerce-order-details h2,
.woocommerce-order-received .woocommerce-customer-details h2,
.woocommerce-order-received .eoc-section-head h2 {
  color: var(--color-cream);
  font-size: clamp(1.45rem, 3vw, 2.4rem);
  line-height: 1.05;
  margin: 0 0 1rem;
}

.woocommerce-order-received .woocommerce-table,
.woocommerce-order-received .shop_table {
  border: 0 !important;
  border-collapse: collapse;
  color: var(--color-cream);
  margin: 0 !important;
  width: 100%;
}

.woocommerce-order-received .woocommerce-table th,
.woocommerce-order-received .woocommerce-table td,
.woocommerce-order-received .shop_table th,
.woocommerce-order-received .shop_table td {
  border-color: rgba(255, 255, 255, 0.1) !important;
  color: inherit;
  font-weight: 400;
  padding: 0.85rem 0.65rem !important;
}

.woocommerce-order-received .woocommerce-table a,
.woocommerce-order-received .shop_table a,
.woocommerce-order-received .woocommerce-customer-details a {
  color: var(--color-gold);
}

.woocommerce-order-received .woocommerce-bacs-bank-details {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.052), rgba(255, 255, 255, 0.018));
  border: 1px solid rgba(217, 178, 93, 0.24);
  color: var(--color-cream);
  display: grid;
  gap: 1rem;
  margin: 0;
  padding: clamp(1.1rem, 2.4vw, 1.7rem);
}

.woocommerce-order-received .woocommerce-bacs-bank-details > p {
  color: var(--color-cream);
  font-size: 0.98rem;
  line-height: 1.6;
  margin: 0;
}

.woocommerce-order-received .wc-bacs-bank-details-heading {
  align-items: center;
  color: var(--color-cream);
  display: flex;
  font-size: clamp(1.35rem, 2.6vw, 2rem);
  gap: 0.75rem;
  line-height: 1.1;
  margin: 0;
}

.woocommerce-order-received .wc-bacs-bank-details-heading::before {
  align-items: center;
  background: rgba(217, 178, 93, 0.12);
  border: 1px solid rgba(217, 178, 93, 0.45);
  color: var(--color-gold);
  content: "₺";
  display: inline-flex;
  flex: 0 0 2.5rem;
  font-family: var(--font-body, inherit);
  font-size: 1.05rem;
  height: 2.5rem;
  justify-content: center;
  width: 2.5rem;
}

.woocommerce-order-received .wc-bacs-bank-details-account-name {
  color: var(--color-cream);
  font-family: var(--font-body, inherit);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  margin: 0.35rem 0 0;
}

.woocommerce-order-received ul.wc-bacs-bank-details.order_details.bacs_details,
.woocommerce-order-received .wc-bacs-bank-details.bacs_details {
  border: 0 !important;
  display: grid !important;
  gap: 0.8rem;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 240px), 1fr));
  justify-self: stretch;
  list-style: none;
  margin: 0 !important;
  padding: 0 !important;
  width: 100%;
}

.woocommerce-order-received ul.wc-bacs-bank-details.order_details.bacs_details::before,
.woocommerce-order-received ul.wc-bacs-bank-details.order_details.bacs_details::after,
.woocommerce-order-received .wc-bacs-bank-details.bacs_details::before,
.woocommerce-order-received .wc-bacs-bank-details.bacs_details::after {
  content: none !important;
  display: none !important;
}

.woocommerce-order-received ul.wc-bacs-bank-details.order_details.bacs_details li,
.woocommerce-order-received .wc-bacs-bank-details.bacs_details li {
  align-items: start;
  background: rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.1) !important;
  color: var(--color-muted);
  display: grid;
  float: none !important;
  font-size: 0.78rem;
  gap: 0.35rem;
  grid-template-columns: minmax(0, 1fr);
  letter-spacing: 0.08em;
  line-height: 1.45;
  margin: 0 !important;
  min-width: 0;
  padding: 0.85rem !important;
  position: relative;
  text-transform: uppercase;
  width: auto !important;
}

.woocommerce-order-received ul.wc-bacs-bank-details.order_details.bacs_details li::before,
.woocommerce-order-received .wc-bacs-bank-details.bacs_details li::before {
  align-items: center;
  background: rgba(217, 178, 93, 0.11);
  border: 1px solid rgba(217, 178, 93, 0.32);
  color: var(--color-gold);
  content: "•";
  display: inline-flex;
  font-size: 0.74rem;
  height: 2.25rem;
  justify-content: center;
  letter-spacing: 0;
  width: 2.25rem;
}

.woocommerce-order-received ul.wc-bacs-bank-details.order_details.bacs_details li.bank_name::before,
.woocommerce-order-received .wc-bacs-bank-details.bacs_details li.bank_name::before {
  content: "BNK";
  font-size: 0.62rem;
}

.woocommerce-order-received ul.wc-bacs-bank-details.order_details.bacs_details li.iban::before,
.woocommerce-order-received .wc-bacs-bank-details.bacs_details li.iban::before {
  content: "IBAN";
  font-size: 0.62rem;
}

.woocommerce-order-received ul.wc-bacs-bank-details.order_details.bacs_details li.account_number::before,
.woocommerce-order-received .wc-bacs-bank-details.bacs_details li.account_number::before {
  content: "#";
}

.woocommerce-order-received ul.wc-bacs-bank-details.order_details.bacs_details li.account_name::before,
.woocommerce-order-received .wc-bacs-bank-details.bacs_details li.account_name::before {
  content: "AD";
  font-size: 0.62rem;
}

.woocommerce-order-received .wc-bacs-bank-details.bacs_details li .erkexin-bacs-card-label {
  color: var(--color-cream);
  display: block;
  font-weight: 700;
}

.woocommerce-order-received .wc-bacs-bank-details.bacs_details li strong {
  color: var(--color-cream);
  display: block;
  font-size: 0.98rem;
  font-weight: 600;
  letter-spacing: 0;
  line-height: 1.35;
  overflow-wrap: anywhere;
  text-transform: none;
}

.woocommerce-order-received .wc-bacs-bank-details.bacs_details li.iban strong {
  padding-right: 2.6rem;
}

.woocommerce-order-received .erkexin-bacs-copy {
  align-items: center;
  background: rgba(217, 178, 93, 0.1);
  border: 1px solid rgba(217, 178, 93, 0.36);
  color: var(--color-gold);
  cursor: pointer;
  display: inline-flex;
  height: 2rem;
  justify-content: center;
  padding: 0;
  position: absolute;
  right: 0.75rem;
  top: 0.75rem;
  transition: background 0.18s ease, color 0.18s ease, transform 0.18s ease;
  width: 2rem;
}

.woocommerce-order-received .erkexin-bacs-copy:hover,
.woocommerce-order-received .erkexin-bacs-copy.is-copied {
  background: var(--color-gold);
  color: var(--color-black, #12100d);
  transform: translateY(-1px);
}

.woocommerce-order-received .erkexin-order-section {
  padding: 0;
}

.woocommerce-order-received .erkexin-order-accordion {
  display: block;
}

.woocommerce-order-received .erkexin-order-accordion__summary {
  align-items: center;
  cursor: pointer;
  display: grid;
  gap: 0.85rem;
  grid-template-columns: auto minmax(0, 1fr) auto;
  list-style: none;
  padding: clamp(1rem, 2.2vw, 1.35rem);
}

.woocommerce-order-received .erkexin-order-accordion__summary::-webkit-details-marker {
  display: none;
}

.woocommerce-order-received .erkexin-order-accordion__icon {
  align-items: center;
  background: rgba(217, 178, 93, 0.1);
  border: 1px solid rgba(217, 178, 93, 0.35);
  color: var(--color-gold);
  display: inline-flex;
  height: 2.75rem;
  justify-content: center;
  width: 2.75rem;
}

.woocommerce-order-received .erkexin-order-accordion__eyebrow {
  color: var(--color-gold);
  display: block;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  line-height: 1.1;
  margin-bottom: 0.25rem;
  text-transform: uppercase;
}

.woocommerce-order-received .erkexin-order-accordion__title {
  color: var(--color-cream);
  display: block;
  font-family: var(--font-heading, inherit);
  font-size: clamp(1.35rem, 2.4vw, 2.1rem);
  line-height: 1.08;
}

.woocommerce-order-received .erkexin-order-accordion__chevron {
  color: var(--color-gold);
  display: inline-flex;
  transition: transform 0.18s ease;
}

.woocommerce-order-received .erkexin-order-accordion[open] .erkexin-order-accordion__chevron {
  transform: rotate(180deg);
}

.woocommerce-order-received .erkexin-order-accordion__content {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: grid;
  gap: 1rem;
  padding: 0 clamp(1rem, 2.2vw, 1.35rem) clamp(1rem, 2.2vw, 1.35rem);
}

.woocommerce-order-received .erkexin-order-accordion__content > h2,
.woocommerce-order-received .erkexin-order-accordion__content .woocommerce-column__title {
  font-size: 1.1rem;
  margin: 0;
}

.woocommerce-order-received .erkexin-order-addresses {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 260px), 1fr));
}

.woocommerce-order-received .woocommerce-customer-details address {
  background: rgba(0, 0, 0, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--color-cream);
  font-style: normal;
  line-height: 1.7;
  margin: 0;
  overflow-wrap: anywhere;
  padding: 1rem;
}

.woocommerce-order-received .woocommerce-customer-details--phone,
.woocommerce-order-received .woocommerce-customer-details--email {
  color: var(--color-muted);
  margin: 0.55rem 0 0;
}

.woocommerce-order-received .eoc-return-box {
  display: none !important;
}

.woocommerce-order-received .woocommerce-form-login {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.015));
  border: 1px solid rgba(255, 255, 255, 0.1) !important;
  color: var(--color-cream);
  display: grid !important;
  gap: 1rem;
  margin: 1rem 0 0 !important;
  max-width: 680px;
  padding: clamp(1.1rem, 2.5vw, 1.7rem) !important;
}

.woocommerce-order-received .woocommerce-form-login .form-row {
  float: none !important;
  margin: 0 !important;
  padding: 0 !important;
  width: 100% !important;
}

.woocommerce-order-received .woocommerce-form-login label {
  color: var(--color-muted);
  font-size: 0.76rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.woocommerce-order-received .woocommerce-form-login input.input-text {
  background: rgba(0, 0, 0, 0.22) !important;
  border: 1px solid rgba(255, 255, 255, 0.12) !important;
  border-radius: 0 !important;
  color: var(--color-cream) !important;
  min-height: 3.1rem;
  width: 100%;
}

.woocommerce-order-received .woocommerce-form-login .lost_password a {
  color: var(--color-gold);
  font-weight: 400;
}

.search-results-grid {
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.search-result-card .button {
  justify-self: start;
  margin-top: auto;
}

.product-card-wishlist {
  position: absolute;
  right: 14px;
  top: 14px;
  z-index: 3;
}

.erkexin-wishlist-button .yith-wcwl-add-to-wishlist a,
.erkexin-wishlist-button .yith-wcwl-add-button a,
.product-card-wishlist .yith-wcwl-add-to-wishlist a,
.product-card-wishlist .yith-wcwl-add-button a,
.erkexin-wishlist-button .yith-add-to-wishlist-button-block button,
.erkexin-wishlist-button .yith-add-to-wishlist-button-block a,
.product-card-wishlist .yith-add-to-wishlist-button-block button,
.product-card-wishlist .yith-add-to-wishlist-button-block a {
  align-items: center;
  background: rgba(8, 8, 8, 0.62) !important;
  border: 1px solid rgba(255, 255, 255, 0.18) !important;
  border-radius: 999px;
  color: var(--color-cream) !important;
  display: inline-flex;
  font-size: 0 !important;
  height: 44px;
  justify-content: center;
  min-width: 44px;
  padding: 0 !important;
  width: 44px;
}

.purchase-row .erkexin-wishlist-button,
.purchase-row .erkexin-wishlist-button .yith-add-to-wishlist-button-block {
  align-items: stretch;
  display: flex !important;
  height: 3.5rem;
  justify-content: stretch;
  margin: 0 !important;
  width: 3.5rem;
}

.purchase-row .erkexin-wishlist-button .yith-add-to-wishlist-button-block > *,
.purchase-row .erkexin-wishlist-button .yith-add-to-wishlist-button-block a,
.purchase-row .erkexin-wishlist-button .yith-add-to-wishlist-button-block button,
.purchase-row .erkexin-wishlist-button .yith-wcwl-add-to-wishlist a,
.purchase-row .erkexin-wishlist-button .yith-wcwl-add-button a {
  align-items: center !important;
  background: rgba(255, 255, 255, 0.025) !important;
  border: 1px solid rgba(201, 164, 82, 0.3) !important;
  border-radius: 0 !important;
  color: var(--color-cream) !important;
  display: inline-flex !important;
  height: 3.5rem !important;
  justify-content: center !important;
  line-height: 1 !important;
  margin: 0 !important;
  min-height: 3.5rem !important;
  min-width: 3.5rem !important;
  padding: 0 !important;
  position: relative;
  width: 3.5rem !important;
}

.purchase-row .erkexin-wishlist-button .yith-add-to-wishlist-button-block * {
  font-size: 0 !important;
}

.purchase-row .erkexin-wishlist-button .yith-add-to-wishlist-button-block a:hover,
.purchase-row .erkexin-wishlist-button .yith-add-to-wishlist-button-block button:hover {
  border-color: rgba(201, 164, 82, 0.65) !important;
  color: var(--color-gold) !important;
}

.purchase-row .erkexin-wishlist-button .yith-wcwl-add-to-wishlist-button--anchor:before,
.purchase-row .erkexin-wishlist-button .yith-add-to-wishlist-button-block a:has(.yith-wcwl-icon-svg):before,
.purchase-row .erkexin-wishlist-button .yith-add-to-wishlist-button-block button:has(.yith-wcwl-icon-svg):before {
  content: none !important;
}

.purchase-row .erkexin-wishlist-button .yith-wcwl-icon-svg,
.purchase-row .erkexin-wishlist-button .yith-wcwl-icon {
  color: currentColor !important;
  display: block !important;
  flex: 0 0 auto;
  font-size: initial !important;
  height: 20px !important;
  margin: 0 !important;
  pointer-events: none;
  width: 20px !important;
}

.purchase-row .erkexin-wishlist-button .yith-wcwl-add-to-wishlist-button__label {
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  height: 1px;
  overflow: hidden;
  position: absolute;
  white-space: nowrap;
  width: 1px;
}

.purchase-row .erkexin-wishlist-button .exists .yith-wcwl-icon-svg,
.purchase-row .erkexin-wishlist-button .exists .yith-wcwl-icon,
.purchase-row .erkexin-wishlist-button .yith-wcwl-add-to-wishlist-button--added .yith-wcwl-icon-svg,
.purchase-row .erkexin-wishlist-button .yith-wcwl-add-to-wishlist-button--added .yith-wcwl-icon,
.purchase-row .erkexin-wishlist-button .yith-wcwl-wishlistaddedbrowse .yith-wcwl-icon-svg,
.purchase-row .erkexin-wishlist-button .yith-wcwl-wishlistaddedbrowse .yith-wcwl-icon,
.purchase-row .erkexin-wishlist-button .yith-wcwl-wishlistexistsbrowse .yith-wcwl-icon-svg,
.purchase-row .erkexin-wishlist-button .yith-wcwl-wishlistexistsbrowse .yith-wcwl-icon {
  color: var(--color-gold) !important;
  fill: var(--color-gold);
  stroke: var(--color-gold);
}

.product-card-wishlist .yith-add-to-wishlist-button-block,
.product-card-wishlist .yith-add-to-wishlist-button-block > *,
.product-card-wishlist .yith-add-to-wishlist-button-block a,
.product-card-wishlist .yith-add-to-wishlist-button-block button {
  align-items: center;
  display: inline-flex !important;
  justify-content: center;
  line-height: 1 !important;
}

.product-card-wishlist .yith-wcwl-add-to-wishlist-button--anchor:before,
.product-card-wishlist .yith-add-to-wishlist-button-block a:has(.yith-wcwl-icon-svg):before,
.product-card-wishlist .yith-add-to-wishlist-button-block button:has(.yith-wcwl-icon-svg):before {
  content: none !important;
}

.product-card-wishlist .yith-wcwl-icon-svg,
.product-card-wishlist .yith-wcwl-icon {
  color: var(--color-cream) !important;
  display: block;
  flex: 0 0 auto;
  fill: none;
  height: 20px;
  margin: 0;
  pointer-events: none;
  stroke: currentColor;
  width: 20px;
}

.product-card-wishlist .exists .yith-wcwl-icon-svg,
.product-card-wishlist .exists .yith-wcwl-icon,
.product-card-wishlist .yith-wcwl-add-to-wishlist-button--added .yith-wcwl-icon-svg,
.product-card-wishlist .yith-wcwl-add-to-wishlist-button--added .yith-wcwl-icon,
.product-card-wishlist .yith-wcwl-added-to-wishlist .yith-wcwl-icon-svg,
.product-card-wishlist .yith-wcwl-added-to-wishlist .yith-wcwl-icon,
.product-card-wishlist .yith-wcwl-wishlistaddedbrowse .yith-wcwl-icon-svg,
.product-card-wishlist .yith-wcwl-wishlistaddedbrowse .yith-wcwl-icon,
.product-card-wishlist .yith-wcwl-wishlistexistsbrowse .yith-wcwl-icon-svg,
.product-card-wishlist .yith-wcwl-wishlistexistsbrowse .yith-wcwl-icon,
.product-card-wishlist.is-in-wishlist .yith-wcwl-icon-svg,
.product-card-wishlist.is-in-wishlist .yith-wcwl-icon,
.product-card-wishlist .yith-add-to-wishlist-button-block:has(.yith-wcwl-add-to-wishlist-button--added) .yith-wcwl-icon-svg,
.product-card-wishlist .yith-add-to-wishlist-button-block:has(.yith-wcwl-add-to-wishlist-button--added) .yith-wcwl-icon {
  color: var(--color-gold) !important;
  fill: var(--color-gold);
  stroke: var(--color-gold);
}

.product-card-wishlist .yith-wcwl-add-to-wishlist-button__label {
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  height: 1px;
  overflow: hidden;
  position: absolute;
  white-space: nowrap;
  width: 1px;
}

.erkexin-wishlist-button .yith-wcwl-add-to-wishlist a:before,
.erkexin-wishlist-button .yith-wcwl-add-button a:before,
.product-card-wishlist .yith-wcwl-add-to-wishlist a:before,
.product-card-wishlist .yith-wcwl-add-button a:before,
.erkexin-wishlist-button .yith-add-to-wishlist-button-block button:before,
.erkexin-wishlist-button .yith-add-to-wishlist-button-block a:before,
.product-card-wishlist .yith-add-to-wishlist-button-block button:before,
.product-card-wishlist .yith-add-to-wishlist-button-block a:before {
  content: "♡";
  font-size: 20px;
  line-height: 1;
}

.erkexin-wishlist-button .yith-wcwl-wishlistexistsbrowse a:before,
.erkexin-wishlist-button .yith-wcwl-wishlistaddedbrowse a:before,
.product-card-wishlist .yith-wcwl-wishlistexistsbrowse a:before,
.product-card-wishlist .yith-wcwl-wishlistaddedbrowse a:before,
.erkexin-wishlist-button .yith-add-to-wishlist-button-block .yith-wcwl-added-to-wishlist:before,
.product-card-wishlist .yith-add-to-wishlist-button-block .yith-wcwl-added-to-wishlist:before {
  content: "♥";
  color: var(--color-gold);
}

.erkexin-wishlist-button .yith-add-to-wishlist-button-block,
.product-card-wishlist .yith-add-to-wishlist-button-block {
  font-size: 0 !important;
}

.erkexin-wishlist-button .yith-add-to-wishlist-button-block *,
.product-card-wishlist .yith-add-to-wishlist-button-block * {
  font-size: 0 !important;
}

.product-card-wishlist .yith-wcwl-add-to-wishlist-button--anchor:before,
.product-card-wishlist .yith-add-to-wishlist-button-block a:has(.yith-wcwl-icon-svg):before,
.product-card-wishlist .yith-add-to-wishlist-button-block button:has(.yith-wcwl-icon-svg):before {
  content: none !important;
}

.product-card-wishlist .yith-add-to-wishlist-button-block .yith-wcwl-icon-svg,
.product-card-wishlist .yith-add-to-wishlist-button-block .yith-wcwl-icon {
  color: var(--color-cream) !important;
  font-size: initial !important;
}

.product-card-wishlist .yith-add-to-wishlist-button-block:has(.yith-wcwl-add-to-wishlist-button--added) .yith-wcwl-icon-svg,
.product-card-wishlist .yith-add-to-wishlist-button-block:has(.yith-wcwl-add-to-wishlist-button--added) .yith-wcwl-icon,
.product-card-wishlist .yith-add-to-wishlist-button-block:has(.yith-wcwl-wishlistaddedbrowse) .yith-wcwl-icon-svg,
.product-card-wishlist .yith-add-to-wishlist-button-block:has(.yith-wcwl-wishlistaddedbrowse) .yith-wcwl-icon,
.product-card-wishlist .yith-add-to-wishlist-button-block:has(.yith-wcwl-wishlistexistsbrowse) .yith-wcwl-icon-svg,
.product-card-wishlist .yith-add-to-wishlist-button-block:has(.yith-wcwl-wishlistexistsbrowse) .yith-wcwl-icon {
  color: var(--color-gold) !important;
}

.woocommerce .wishlist_table,
.yith-wcwl-form {
  color: var(--color-muted);
}

.woocommerce .wishlist_table {
  border-collapse: collapse;
  color: var(--color-muted);
  width: 100%;
}

.yith-wcwl-form .wishlist_table th,
.yith-wcwl-form .wishlist_table td {
  background: transparent !important;
  color: var(--color-muted);
}

.woocommerce .wishlist_table a,
.yith-wcwl-form a {
  color: var(--color-cream);
}

.yith-wcwl-form .wishlist_table .product-add-to-cart a,
.yith-wcwl-form .wishlist_table .product-add-to-cart .button {
  align-items: center;
  display: inline-flex;
  font-size: 0 !important;
  justify-content: center;
  min-height: 44px;
  min-width: 44px;
  text-align: center;
  white-space: normal;
}

.yith-wcwl-form .wishlist_table .product-add-to-cart a::after,
.yith-wcwl-form .wishlist_table .product-add-to-cart .button::after {
  content: "Sepete Ekle";
  font-size: 0.72rem;
}

.yith-wcwl-form .wishlist_table .product-remove a,
.yith-wcwl-form .wishlist_table .remove_from_wishlist,
.yith-wcwl-form .yith-wcwl-share a {
  align-items: center;
  display: inline-flex;
  justify-content: center;
  min-height: 40px;
  min-width: 40px;
}

@media (max-width: 640px) {
  .yith-wcwl-form .wishlist_table,
  .yith-wcwl-form .wishlist_table thead,
  .yith-wcwl-form .wishlist_table tbody,
  .yith-wcwl-form .wishlist_table tr,
  .yith-wcwl-form .wishlist_table td {
    display: block;
    width: 100% !important;
  }

  .yith-wcwl-form .wishlist_table thead {
    display: none;
  }

  .yith-wcwl-form .wishlist_table tbody {
    display: grid;
    gap: 14px;
  }

  .yith-wcwl-form .wishlist_table tr {
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.03);
    padding: 16px;
    position: relative;
  }

  .yith-wcwl-form .wishlist_table td {
    border: 0 !important;
    padding: 0 !important;
    text-align: left !important;
  }

  .yith-wcwl-form .wishlist_table .product-remove {
    position: absolute;
    right: 8px;
    top: 8px;
    width: auto !important;
  }

  .yith-wcwl-form .wishlist_table .product-remove a,
  .yith-wcwl-form .wishlist_table .remove_from_wishlist {
    color: var(--color-gold) !important;
    font-size: 1.05rem;
  }

  .yith-wcwl-form .wishlist_table .product-name {
    padding-right: 44px !important;
  }

  .yith-wcwl-form .wishlist_table .product-name a {
    align-items: center;
    display: inline-flex;
    min-height: 44px;
  }

  .yith-wcwl-form .wishlist_table .product-price {
    color: var(--color-cream);
    font-family: var(--font-heading);
    font-size: clamp(1.45rem, 8vw, 2.1rem);
    line-height: 1.15;
    margin-top: 8px;
  }

  .yith-wcwl-form .wishlist_table .product-stock-status {
    color: #83c977;
    margin-top: 8px;
  }

  .yith-wcwl-form .wishlist_table .product-add-to-cart {
    margin-top: 14px;
  }

  .yith-wcwl-form .wishlist_table .product-add-to-cart a,
  .yith-wcwl-form .wishlist_table .product-add-to-cart .button {
    background: var(--gradient-gold) !important;
    color: var(--black) !important;
    letter-spacing: 0.14em;
    padding: 0.8rem 1rem;
    text-transform: uppercase;
    width: 100%;
    writing-mode: horizontal-tb !important;
  }

  .yith-wcwl-form .yith-wcwl-share ul,
  .yith-wcwl-form .yith-wcwl-share li {
    align-items: center;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
  }

  .yith-wcwl-form .yith-wcwl-share a {
    height: 40px !important;
    width: 40px !important;
  }
}

.review-form-panel {
  border: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 28px;
  padding: clamp(22px, 4vw, 38px);
}

.review-form-panel h3 {
  color: var(--color-cream);
  font-size: clamp(1.8rem, 4vw, 3rem);
  margin: 0 0 18px;
}

.erkexin-review-form {
  max-width: 720px;
}

.erkexin-review-form select,
.erkexin-review-form textarea,
.erkexin-review-form input {
  background: rgba(8, 8, 8, 0.58);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: var(--color-cream);
  min-height: 46px;
  padding: 12px 14px;
  width: 100%;
}

.order-tracking-layout {
  margin-top: 0;
}

.auth-inline-notices {
  display: grid;
  gap: 10px;
  margin: 0 0 18px;
}

.auth-inline-notice {
  background: rgba(18, 18, 17, 0.92);
  border: 1px solid rgba(214, 168, 69, 0.22);
  color: var(--color-cream);
  display: grid;
  gap: 8px;
  padding: 14px 16px;
}

.auth-inline-notice-error {
  border-color: rgba(190, 69, 60, 0.58);
  box-shadow: inset 3px 0 0 rgba(190, 69, 60, 0.95);
}

.auth-inline-notice-success {
  border-color: rgba(214, 168, 69, 0.55);
  box-shadow: inset 3px 0 0 var(--color-gold);
}

.auth-inline-notice strong {
  color: var(--color-gold);
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.auth-inline-notice ul {
  display: grid;
  gap: 4px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.auth-inline-notice li {
  color: var(--color-muted);
  font-size: 0.92rem;
  font-weight: 400;
  line-height: 1.55;
}

.auth-inline-notice a {
  color: var(--color-gold);
}

.woocommerce .blockUI.blockOverlay,
.woocommerce .loader {
  background: rgba(8, 8, 8, 0.76) !important;
}

.woocommerce-checkout .woocommerce-NoticeGroup-checkout,
.woocommerce-checkout .woocommerce-notices-wrapper {
  grid-column: 1 / -1;
  left: auto;
  width: min(430px, calc(100vw - 32px));
}

.woocommerce-checkout .woocommerce-NoticeGroup-checkout.is-distributed,
.woocommerce-checkout .woocommerce-notices-wrapper.is-distributed {
  margin: 0;
}

.woocommerce-checkout .woocommerce-NoticeGroup-checkout.is-distributed .woocommerce-error,
.woocommerce-checkout .woocommerce-notices-wrapper.is-distributed .woocommerce-error {
  display: none !important;
}

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

.woocommerce-checkout .checkout-grid.checkout-woocommerce-fields .form-row,
.woocommerce form .checkout-grid.checkout-woocommerce-fields .form-row {
  box-sizing: border-box;
  display: grid !important;
  float: none !important;
  margin: 0 !important;
  max-width: none !important;
  min-width: 0 !important;
  padding: 0 !important;
  width: 100% !important;
}

.woocommerce-checkout .checkout-grid.checkout-woocommerce-fields .form-row-first,
.woocommerce-checkout .checkout-grid.checkout-woocommerce-fields .form-row-last {
  float: none !important;
  grid-column: auto;
  width: 100% !important;
}

.woocommerce-checkout .checkout-grid.checkout-woocommerce-fields .form-row-wide,
.woocommerce-checkout .checkout-grid.checkout-woocommerce-fields #billing_address_1_field,
.woocommerce-checkout .checkout-grid.checkout-woocommerce-fields #billing_address_2_field,
.woocommerce-checkout .checkout-grid.checkout-woocommerce-fields #billing_company_title_field,
.woocommerce-checkout .checkout-shipping-fields {
  grid-column: 1 / -1;
}

.woocommerce-checkout .checkout-grid.checkout-woocommerce-fields input.input-text,
.woocommerce-checkout .checkout-grid.checkout-woocommerce-fields input[type="text"],
.woocommerce-checkout .checkout-grid.checkout-woocommerce-fields input[type="email"],
.woocommerce-checkout .checkout-grid.checkout-woocommerce-fields input[type="tel"],
.woocommerce-checkout .checkout-grid.checkout-woocommerce-fields textarea,
.woocommerce-checkout .checkout-grid.checkout-woocommerce-fields select,
.woocommerce-checkout .checkout-grid.checkout-woocommerce-fields .select2-container--default .select2-selection--single {
  background: rgba(0, 0, 0, 0.22) !important;
  border: 1px solid rgba(255, 255, 255, 0.12) !important;
  border-radius: 0 !important;
  color: var(--color-cream) !important;
  display: block;
  font-size: 16px !important;
  min-height: 3.2rem;
  max-width: none !important;
  width: 100% !important;
}

.woocommerce-checkout .checkout-grid.checkout-woocommerce-fields select.select2-hidden-accessible {
  max-width: 1px !important;
  min-width: 1px !important;
  width: 1px !important;
}

.woocommerce-checkout .checkout-grid.checkout-woocommerce-fields label {
  color: var(--color-muted) !important;
  display: flex !important;
  align-items: center;
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.16em;
  min-height: 2.5rem;
  text-transform: uppercase;
}

.woocommerce-checkout .checkout-grid.checkout-woocommerce-fields .has-checkout-field-error label,
.woocommerce-checkout .legal-check.has-checkout-field-error span {
  color: #ff6b62 !important;
}

.woocommerce-checkout .checkout-grid.checkout-woocommerce-fields .has-checkout-field-error input.input-text,
.woocommerce-checkout .checkout-grid.checkout-woocommerce-fields .has-checkout-field-error input[type="text"],
.woocommerce-checkout .checkout-grid.checkout-woocommerce-fields .has-checkout-field-error input[type="email"],
.woocommerce-checkout .checkout-grid.checkout-woocommerce-fields .has-checkout-field-error input[type="tel"],
.woocommerce-checkout .checkout-grid.checkout-woocommerce-fields .has-checkout-field-error textarea,
.woocommerce-checkout .checkout-grid.checkout-woocommerce-fields .has-checkout-field-error select,
.woocommerce-checkout .checkout-grid.checkout-woocommerce-fields .has-checkout-field-error .select2-container--default .select2-selection--single,
.woocommerce-checkout .legal-check.has-checkout-field-error {
  border-color: rgba(255, 90, 80, 0.78) !important;
  box-shadow: inset 0 0 0 1px rgba(255, 90, 80, 0.28);
}

.checkout-field-error {
  background: rgba(120, 20, 16, 0.18);
  border: 1px solid rgba(255, 90, 80, 0.38);
  color: #ff6b62;
  font-size: 0.76rem;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.45;
  margin: 0 0 0.45rem;
  padding: 0.55rem 0.65rem;
  text-transform: none;
}

.legal-check .checkout-field-error {
  grid-column: 1 / -1;
  margin-bottom: 0.2rem;
}

.woocommerce-checkout .checkout-grid.checkout-woocommerce-fields .required {
  color: var(--color-gold);
}

.invoice-same-card {
  border-color: rgba(201, 164, 82, 0.34);
  background: rgba(201, 164, 82, 0.07);
}

.invoice-address-fields {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: grid;
  gap: 1rem;
  margin-top: 1rem;
  padding-top: 1.1rem;
}

.invoice-address-fields[hidden] {
  display: none !important;
}

.invoice-address-heading {
  display: grid;
  gap: 0.25rem;
}

.invoice-address-heading span {
  color: var(--color-gold);
  font-size: 0.76rem;
  font-weight: 400;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.invoice-address-heading p {
  color: var(--color-muted);
  font-size: 0.86rem;
  line-height: 1.55;
  margin: 0;
}

.woocommerce-checkout #payment ul.payment_methods li {
  flex-wrap: wrap;
}

.checkout-summary #place_order.erkexin-checkout-submit,
.woocommerce-checkout .checkout-summary #place_order.erkexin-checkout-submit,
.woocommerce-checkout .checkout-place-order #place_order.erkexin-checkout-submit {
  align-items: center;
  background: var(--gradient-gold) !important;
  background-color: var(--color-gold) !important;
  background-image: var(--gradient-gold) !important;
  border: 1px solid rgba(255, 255, 255, 0.12) !important;
  color: #12100d !important;
  cursor: pointer;
  display: inline-flex !important;
  font-size: 0.72rem;
  font-weight: 400 !important;
  justify-content: center;
  letter-spacing: 0.22em;
  min-height: 3.2rem;
  opacity: 1 !important;
  text-transform: uppercase;
  width: 100%;
}

.checkout-summary #place_order.erkexin-checkout-submit:hover {
  filter: brightness(1.12);
  transform: translateY(-2px);
}

@media (max-width: 760px) {
  .woocommerce-checkout .checkout-grid.checkout-woocommerce-fields {
    grid-template-columns: 1fr;
  }
}

.add_to_cart_button.is-loading,
.single_add_to_cart_button.loading {
  cursor: wait;
  opacity: 0.72;
  position: relative;
}

.add_to_cart_button.is-loading::after,
.single_add_to_cart_button.loading::after {
  animation: erkexin-spin 0.8s linear infinite;
  border: 2px solid rgba(18, 16, 13, 0.28);
  border-top-color: #12100d;
  border-radius: 999px;
  content: "";
  height: 14px;
  margin-left: 8px;
  width: 14px;
}

@keyframes erkexin-spin {
  to {
    transform: rotate(360deg);
  }
}

@media (max-width: 767px) {
  .cart-item {
    grid-template-columns: 82px minmax(0, 1fr);
  }

  .cart-item-media img {
    height: 82px;
    width: 82px;
  }

  .cart-item .quantity-control,
  .cart-line-price {
    grid-column: 2;
  }

  .cart-line-price {
    justify-self: start;
  }

  .hero-content {
    overflow-wrap: anywhere;
  }

  .hero h1.is-forza,
  .hero h1.is-monarch,
  .hero h1.is-hero {
    letter-spacing: 0.06em;
  }

  .hero h1.is-forza + .hero-copy,
  .hero h1.is-monarch + .hero-copy,
  .hero h1.is-hero + .hero-copy {
    max-width: 100%;
    font-size: 0.76rem;
    letter-spacing: 0.08em;
    overflow-wrap: anywhere;
  }
}

@media (max-width: 900px) {
  .erkexin-variation-panel .woocommerce-variation-add-to-cart {
    grid-template-columns: 1fr;
  }
}

@media print {
  .site-header,
  .site-footer,
  .breadcrumb,
  .print-order-actions,
  .mobile-nav {
    display: none !important;
  }

  body,
  main,
  .cart-layout,
  .cart-main,
  .profile-insight-card {
    background: #fff !important;
    color: #111 !important;
  }

  .profile-insight-card,
  .cart-main {
    border-color: #ccc !important;
    box-shadow: none !important;
  }
}

@media (max-width: 820px) {
  .cart-item {
    grid-template-columns: 82px 1fr;
  }

  .cart-item-media img {
    height: 82px;
    width: 82px;
  }

  .cart-item-actions {
    grid-column: 1 / -1;
    justify-items: stretch;
  }

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

/* Mobile responsive hardening pass - keeps WooCommerce flows usable on narrow screens. */
@media (max-width: 1023px) {
  .guide-layout {
    grid-template-columns: 1fr;
  }

  .guide-intro {
    position: static;
  }

  .guide-card-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 767px) {
  .guide-card-grid {
    grid-template-columns: 1fr;
  }

  .guide-card {
    min-height: 0;
  }

  .guide-intro h1 {
    font-size: clamp(1.8rem, 9vw, 2.45rem);
  }
}

@media (max-width: 1023px) {
  .product-rich-content {
    grid-template-columns: 1fr;
  }

  .product-rich-content > h2:first-child {
    position: static;
    max-width: 100%;
  }

  .product-rich-content > *:not(h2:first-child) {
    grid-column: 1;
  }

  .checkout-summary,
  .cart-summary,
  .account-sidebar,
  .product-purchase {
    position: static !important;
    top: auto !important;
  }

  .checkout-layout,
  .cart-layout,
  .account-layout,
  .order-received-layout {
    grid-template-columns: 1fr !important;
  }

  .cart-set-upgrade {
    grid-template-columns: 1fr;
  }

  .checkout-summary {
    order: 2;
  }
}

@media (max-width: 767px) {
  html,
  body {
    overflow-x: hidden;
  }

  .hero {
    min-height: 86svh;
    align-items: flex-end;
  }

  .hero-slide img,
  .hero-video {
    object-position: center center;
    filter: saturate(1) brightness(1);
    transform: none;
  }

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

  .hero-video {
    object-fit: cover;
  }

  .hero-slide.swiper-slide-active img,
  .hero-slide.swiper-slide-active .hero-video {
    transform: none;
  }

  .hero-slide::after {
    background: linear-gradient(to top, rgba(16, 16, 16, 0.88), rgba(16, 16, 16, 0.24) 48%, rgba(16, 16, 16, 0.08));
  }

  .hero-overlay {
    background: linear-gradient(to top, rgba(16, 16, 16, 0.84), rgba(16, 16, 16, 0.18) 54%, rgba(16, 16, 16, 0.08));
  }

  .section,
  .hero-content,
  .category-hero-content,
  .footer-inner,
  .footer-bottom {
    padding-right: 1rem;
    padding-left: 1rem;
  }

  .header-inner {
    min-height: 4.25rem;
    padding: 0.8rem 1rem;
  }

  .header-actions {
    gap: 0.85rem;
  }

  .icon-button,
  .bag-button,
  .menu-toggle {
    min-width: 2.5rem;
    min-height: 2.5rem;
  }

  .mobile-nav {
    max-height: calc(100dvh - 4.25rem);
    overflow-y: auto;
    padding-right: 1rem;
    padding-left: 1rem;
  }

  .hero-content {
    padding-top: 5.75rem;
    padding-bottom: 5.15rem;
  }

  .hero-content .eyebrow {
    font-size: 0.62rem;
    letter-spacing: 0.2em;
  }

  .hero h1 {
    max-width: 86vw;
    margin-top: 0.7rem;
    font-size: clamp(1.55rem, 7.2vw, 2.05rem);
    line-height: 1.04;
    letter-spacing: 0.02em;
  }

  .hero h1.is-forza,
  .hero h1.is-monarch,
  .hero h1.is-hero {
    max-width: 92vw;
    margin-top: 0.7rem;
    font-size: clamp(2.15rem, 10.8vw, 2.9rem);
    line-height: 0.98;
    letter-spacing: 0.03em;
  }

  .hero-copy,
  .hero h1.is-forza + .hero-copy,
  .hero h1.is-monarch + .hero-copy,
  .hero h1.is-hero + .hero-copy {
    display: none;
  }

  .hero-short-desc {
    display: none;
  }

  .hero-buttons {
    margin-top: 1.05rem;
  }

  .hero-buttons .button-outline {
    display: none;
  }

  .hero-buttons .button-gold {
    width: auto;
    min-height: 2.8rem;
    padding-right: 1.05rem;
    padding-left: 1.05rem;
  }

  .hero-slider-controls {
    left: 50%;
    right: auto;
    bottom: 1.05rem;
    justify-content: center;
    padding-right: 1rem;
    padding-left: 1rem;
    transform: translateX(-50%);
  }

  .hero-slider-controls .slider-button {
    width: 2.45rem;
    height: 2.45rem;
    min-width: 40px;
    min-height: 40px;
  }

  .hero-slider-controls .swiper-pagination-bullet {
    width: 1.8rem;
    height: 2.15rem;
  }

  .marquee {
    display: none;
  }

  .category-tools,
  .category-grid,
  .related-grid,
  .product-detail,
  .detail-panels,
  .notes-grid,
  .profile-insight-grid,
  .order-received-insights,
  .account-stats,
  .account-shortcuts,
  .account-address-grid,
  .account-address-fields {
    grid-template-columns: 1fr !important;
  }

  .category-tools {
    gap: 1rem;
  }

  .sort-select {
    width: 100%;
  }

  .product-gallery-main img {
    aspect-ratio: 1 / 1.12;
  }

  .size-options {
    grid-template-columns: 1fr;
  }

  .checkout-main,
  .checkout-panel,
  .cart-main,
  .cart-summary,
  .account-main,
  .account-sidebar,
  .order-received-main {
    min-width: 0;
    padding: 1rem;
  }

  .woocommerce-checkout.checkout-layout,
  form.woocommerce-checkout.checkout-layout {
    width: 100% !important;
    max-width: 100% !important;
    margin-right: 0 !important;
    margin-left: 0 !important;
  }

  body.woocommerce-checkout .content-page,
  body.woocommerce-checkout .legal-content,
  body.woocommerce-checkout .legal-block,
  body.woocommerce-checkout .woocommerce {
    width: 100% !important;
    max-width: 100% !important;
  }

  body.woocommerce-checkout .content-page {
    padding: 0;
  }

  body.woocommerce-checkout .checkout-layout {
    padding: 1.35rem 1rem 4rem;
  }

  body.woocommerce-checkout .legal-block {
    border: 0;
    background: transparent;
    padding: 0;
  }

  .woocommerce-checkout .checkout-main {
    border: 0;
    background: transparent;
    box-shadow: none;
  }

  .woocommerce-checkout .checkout-panel {
    padding: 0.9rem;
  }

  .woocommerce-checkout .checkout-accordion-content {
    margin-top: 0.95rem;
    padding-top: 0.95rem;
  }

  body.woocommerce-checkout .checkout-main {
    padding: 0;
  }

  body.woocommerce-checkout .checkout-panel {
    padding: 0.75rem;
  }

  .checkout-grid,
  .checkout-choice-row,
  .woocommerce-checkout .checkout-grid.checkout-woocommerce-fields {
    grid-template-columns: 1fr !important;
  }

  .checkout-panel-heading h2,
  .cart-heading h1,
  .auth-panel h1,
  .account-heading h1,
  .account-welcome h2,
  .woocommerce-order-received .legal-intro h1,
  .woocommerce-order-received .order-received-main .cart-heading h1 {
    font-size: clamp(1.55rem, 9vw, 2.25rem);
  }

  body.woocommerce-checkout .checkout-panel-heading h2 {
    font-size: clamp(1.25rem, 6.4vw, 1.65rem);
    line-height: 1.08;
  }

  .checkout-grid input,
  .checkout-grid textarea,
  .checkout-grid select,
  .checkout-grid .select2-container--default .select2-selection--single,
  .promo-form input,
  .auth-form input,
  .erkexin-myaccount input.input-text,
  .erkexin-myaccount input[type="text"],
  .erkexin-myaccount input[type="email"],
  .erkexin-myaccount input[type="tel"],
  .erkexin-myaccount input[type="password"],
  .erkexin-myaccount textarea,
  .erkexin-myaccount select,
  .erkexin-myaccount .select2-container--default .select2-selection--single,
  .woocommerce-order-received .woocommerce-form-login input.input-text {
    font-size: 16px !important;
    min-height: 3.15rem;
  }

  .choice-card,
  .legal-check {
    min-width: 0;
    padding: 0.9rem;
  }

  .choice-card input,
  .legal-check input,
  .woocommerce-checkout #payment ul.payment_methods li input {
    flex: 0 0 1.15rem;
    height: 1.15rem;
    width: 1.15rem;
  }

  .woocommerce-NoticeGroup,
  .woocommerce-notices-wrapper,
  .woocommerce-error,
  .woocommerce-message,
  .woocommerce-info {
    max-width: 100%;
    overflow-wrap: anywhere;
  }

  .cart-heading,
  .summary-lines div,
  .summary-login,
  .cart-service-strip,
  .account-address-card header,
  .order-received-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .cart-item {
    grid-template-columns: 72px minmax(0, 1fr) !important;
    gap: 0.85rem;
    padding: 0.8rem;
  }

  .cart-item-media {
    min-height: 72px;
  }

  .cart-item-media img {
    height: 72px;
    width: 72px;
  }

  .cart-item-info {
    gap: 0.75rem;
  }

  .cart-item-actions,
  .cart-line-price,
  .cart-item .quantity-control {
    grid-column: 1 / -1 !important;
    justify-self: stretch;
  }

  .cart-item .quantity-control {
    width: 100%;
  }

  .cart-item .quantity-control button,
  .cart-item .quantity-control input {
    min-height: 2.8rem;
  }

  .woocommerce-order-received .woocommerce-thankyou-order-details,
  .woocommerce-order-received .woocommerce-order-overview {
    grid-template-columns: 1fr;
  }

  .woocommerce-order-received .woocommerce-table,
  .woocommerce-order-received .shop_table,
  .erkexin-myaccount table,
  .erkexin-myaccount .woocommerce-orders-table {
    display: block;
    max-width: 100%;
    overflow-x: auto;
    white-space: nowrap;
  }

  .erkexin-myaccount .account-orders-table .woocommerce-button,
  .erkexin-myaccount .woocommerce-orders-table .woocommerce-button,
  .erkexin-myaccount .woocommerce-pagination .woocommerce-button,
  .erkexin-myaccount .woocommerce-info .wc-forward {
    width: 100%;
  }

  .erkexin-contact-form {
    grid-template-columns: 1fr;
  }

  .erkexin-form-field input,
  .erkexin-form-field select,
  .erkexin-form-field textarea {
    font-size: 16px;
  }

  .erkexin-myaccount .account-orders-table .woocommerce-button + .woocommerce-button,
  .erkexin-myaccount .woocommerce-orders-table .woocommerce-button + .woocommerce-button {
    margin-top: 0.45rem;
    margin-left: 0;
  }

  .pdp-sticky-buy-inner {
    grid-template-columns: minmax(0, 1fr);
  }

  .pdp-sticky-buy .pdp-sticky-cart-button {
    width: 100%;
  }

  .whatsapp-widget {
    bottom: max(1rem, env(safe-area-inset-bottom));
    right: max(1rem, env(safe-area-inset-right));
  }

  body.single-product .whatsapp-widget {
    bottom: calc(5.8rem + env(safe-area-inset-bottom));
  }

  .whatsapp-chat {
    width: min(20.5rem, calc(100vw - 2rem));
  }

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

  .cookie-consent .button {
    width: 100%;
  }

  .whatsapp-support {
    min-height: 3rem;
    padding: 0.45rem;
  }

  .whatsapp-support-copy {
    display: none;
  }

  .whatsapp-support-icon {
    height: 2.35rem;
    width: 2.35rem;
  }
}

@media (min-width: 768px) and (max-width: 1100px) {
  .category-grid .product-info {
    display: grid;
    gap: 0.6rem;
  }

  .category-grid .product-info strong {
    text-align: left;
  }
}

@media (max-width: 420px) {
  .brand img {
    width: 8rem;
  }

  .hero {
    min-height: 88svh;
  }

  .hero-content {
    padding-bottom: 4.4rem;
  }

  .hero h1 {
    overflow-wrap: anywhere;
  }

  .cart-item {
    grid-template-columns: 64px minmax(0, 1fr) !important;
  }

  .cart-item-media,
  .cart-item-media img {
    height: 64px;
    width: 64px;
  }

  .checkout-panel-heading {
    gap: 0.7rem;
  }

  .checkout-panel-heading > span {
    height: 2rem;
    width: 2rem;
  }

  .pdp-sticky-product {
    align-items: flex-start;
  }

  .pdp-sticky-thumb {
    display: none;
  }
}

body.woocommerce-order-pay main,
body.woocommerce-order-pay .content-page {
  padding-top: clamp(6.25rem, 8vw, 7.5rem) !important;
}

body.woocommerce-order-pay main > .woocommerce,
body.woocommerce-order-pay .content-page > .woocommerce,
body.woocommerce-order-pay .woocommerce {
  display: grid !important;
  gap: clamp(1rem, 2.5vw, 1.35rem);
  margin-inline: auto !important;
  max-width: min(1180px, calc(100% - 2rem)) !important;
  width: 100% !important;
}

body.woocommerce-order-pay .order_details {
  clear: both;
  display: grid !important;
  gap: 0.75rem;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  list-style: none;
  margin: 0 !important;
  padding: 0 !important;
}

body.woocommerce-order-pay .order_details::before,
body.woocommerce-order-pay .order_details::after {
  content: none !important;
  display: none !important;
}

body.woocommerce-order-pay .order_details li {
  float: none !important;
  min-width: 0;
  margin: 0 !important;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(0, 0, 0, 0.18);
  color: var(--color-muted);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  line-height: 1.35;
  padding: 0.85rem !important;
  text-transform: uppercase;
  width: auto !important;
}

body.woocommerce-order-pay .order_details li strong,
body.woocommerce-order-pay .order_details li span,
body.woocommerce-order-pay .order_details li b {
  display: block;
  color: var(--color-cream);
  font-size: clamp(0.88rem, 1.5vw, 1rem);
  letter-spacing: 0;
  line-height: 1.3;
  margin-top: 0.25rem;
  overflow-wrap: anywhere;
  text-transform: none;
}

body.woocommerce-order-pay iframe {
  display: block;
  max-width: 100%;
  width: 100%;
}

body.woocommerce-checkout .cookie-consent,
body.woocommerce-checkout .whatsapp-support,
body.woocommerce-order-pay .cookie-consent,
body.woocommerce-order-pay .whatsapp-support {
  display: none !important;
}

@media (max-width: 760px) {
  body.woocommerce-order-pay main,
  body.woocommerce-order-pay .content-page {
    padding-top: 5.6rem !important;
  }

  body.woocommerce-order-pay main > .woocommerce,
  body.woocommerce-order-pay .content-page > .woocommerce,
  body.woocommerce-order-pay .woocommerce {
    max-width: calc(100% - 1.5rem) !important;
  }

  body.woocommerce-order-pay .order_details {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 420px) {
  body.woocommerce-order-pay .order_details {
    grid-template-columns: 1fr;
  }
}

body.woocommerce-order-pay ul.order_details,
body.woocommerce-order-pay ul.woocommerce-order-overview,
body.woocommerce-order-pay .woocommerce ul.order_details {
  position: static !important;
  inset: auto !important;
  clear: both !important;
  float: none !important;
  display: grid !important;
  transform: none !important;
  z-index: auto !important;
}

body.woocommerce-order-pay ul.order_details li,
body.woocommerce-order-pay ul.woocommerce-order-overview li,
body.woocommerce-order-pay .woocommerce ul.order_details li {
  float: none !important;
  display: block !important;
  border-right: 0 !important;
  margin: 0 !important;
  width: auto !important;
}

body.woocommerce-order-pay .site-header + main,
body.woocommerce-order-pay .site-header + .content-page,
body.woocommerce-order-pay .page-shell {
  padding-top: clamp(7.5rem, 10vw, 9rem) !important;
}

@media (max-width: 760px) {
  body.woocommerce-order-pay .site-header + main,
  body.woocommerce-order-pay .site-header + .content-page,
  body.woocommerce-order-pay .page-shell {
    padding-top: 6.75rem !important;
  }
}

body.woocommerce-checkout #payment ul.payment_methods {
  display: grid !important;
  gap: 0.85rem !important;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin: 0 !important;
  padding: 0 !important;
}

body.woocommerce-checkout #payment ul.payment_methods::before,
body.woocommerce-checkout #payment ul.payment_methods::after {
  content: none !important;
  display: none !important;
}

body.woocommerce-checkout #payment ul.payment_methods li {
  position: relative;
  float: none !important;
  display: grid !important;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: start !important;
  gap: 0.85rem !important;
  min-width: 0;
  min-height: 6.25rem;
  margin: 0 !important;
  border: 1px solid rgba(255, 255, 255, 0.11) !important;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.018)) !important;
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.16);
  color: var(--color-muted);
  list-style: none !important;
  padding: 1rem !important;
  transition: border-color 0.2s ease, background 0.2s ease;
  width: auto !important;
}

body.woocommerce-checkout #payment ul.payment_methods li:has(input:checked) {
  border-color: rgba(201, 164, 82, 0.6) !important;
  background: linear-gradient(180deg, rgba(201, 164, 82, 0.12), rgba(255, 255, 255, 0.025)) !important;
}

body.woocommerce-checkout #payment ul.payment_methods li > input[type="radio"] {
  grid-column: 1;
  grid-row: 1;
  flex: 0 0 1.1rem;
  height: 1.1rem;
  margin: 0.2rem 0 0 !important;
  width: 1.1rem;
}

body.woocommerce-checkout #payment ul.payment_methods li > label {
  position: relative;
  grid-column: 2;
  grid-row: 1;
  display: flex !important;
  align-items: center;
  gap: 0.65rem;
  min-width: 0;
  color: var(--color-cream) !important;
  font-size: 0.95rem !important;
  font-weight: 700 !important;
  line-height: 1.35;
  margin: 0 !important;
  overflow-wrap: anywhere;
}

body.woocommerce-checkout #payment ul.payment_methods li > label::before {
  align-items: center;
  border: 1px solid rgba(201, 164, 82, 0.38);
  color: var(--color-gold);
  content: "◇";
  display: inline-flex;
  flex: 0 0 2rem;
  font-size: 1rem;
  height: 2rem;
  justify-content: center;
  line-height: 1;
  width: 2rem;
}

body.woocommerce-checkout #payment ul.payment_methods li.payment_method_paytr_payment_gateway > label::before {
  content: "💳";
}

body.woocommerce-checkout #payment ul.payment_methods li.payment_method_bacs > label::before {
  content: "₺";
}

body.woocommerce-checkout #payment ul.payment_methods li .payment_box {
  grid-column: 1 / -1;
  margin: 0.35rem 0 0 !important;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.055) !important;
  color: var(--color-muted) !important;
  font-size: 0.86rem !important;
  line-height: 1.65;
  padding: 0.85rem !important;
  width: 100% !important;
}

body.woocommerce-checkout #payment ul.payment_methods li .payment_box::before,
body.woocommerce-checkout #payment ul.payment_methods li .payment_box::after {
  content: none !important;
  display: none !important;
}

body.woocommerce-checkout #payment ul.payment_methods li .payment_box p {
  margin: 0 !important;
}

@media (max-width: 760px) {
  body.woocommerce-checkout #payment ul.payment_methods {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .woocommerce-order-received .erkexin-order-accordion__content .woocommerce-table,
  .woocommerce-order-received .erkexin-order-accordion__content .shop_table {
    display: table;
    table-layout: fixed;
    white-space: normal;
  }

  .woocommerce-order-received .erkexin-order-accordion__content .woocommerce-table th,
  .woocommerce-order-received .erkexin-order-accordion__content .woocommerce-table td,
  .woocommerce-order-received .erkexin-order-accordion__content .shop_table th,
  .woocommerce-order-received .erkexin-order-accordion__content .shop_table td {
    font-size: 0.84rem;
    overflow-wrap: anywhere;
    padding: 0.75rem 0.45rem !important;
    white-space: normal;
  }

  .woocommerce-order-received .erkexin-order-accordion__content .product-name {
    width: 58%;
  }

  .woocommerce-order-received .erkexin-order-accordion__content .product-total {
    width: 42%;
  }
}

.woocommerce-order-received ul.wc-bacs-bank-details.order_details.bacs_details li.account_name::before,
.woocommerce-order-received ul.wc-bacs-bank-details.order_details.bacs_details li.bank_name::before,
.woocommerce-order-received ul.wc-bacs-bank-details.order_details.bacs_details li.iban::before,
.woocommerce-order-received .wc-bacs-bank-details.bacs_details li.account_name::before,
.woocommerce-order-received .wc-bacs-bank-details.bacs_details li.bank_name::before,
.woocommerce-order-received .wc-bacs-bank-details.bacs_details li.iban::before {
  content: none !important;
  display: none !important;
}

@media (max-width: 767px) {
  .cart-set-upgrade {
    gap: 0.85rem;
  }

  .cart-set-upgrade-grid {
    grid-template-columns: 1fr;
  }

  .cart-set-upgrade-copy,
  .cart-set-card {
    padding: 0.9rem;
  }

  .cart-set-upgrade-copy h2 {
    max-width: 100%;
    font-size: clamp(1.45rem, 7vw, 2rem);
  }

  .cart-set-card {
    grid-template-columns: 80px minmax(0, 1fr);
    gap: 0.85rem;
  }

  .cart-set-card-media {
    min-height: 80px;
  }

  .cart-set-card-media img {
    width: 80px;
    height: 80px;
  }

  .cart-set-card-action {
    align-items: stretch;
    flex-direction: column;
  }

  .cart-set-card-action a {
    width: 100%;
  }
}
