:root {
  --ink: #17131d;
  --muted: #756d7d;
  --plum-950: #2a1237;
  --plum-850: #432056;
  --plum-700: #6f3a96;
  --plum-500: #9360b0;
  --lilac: #d9c8e4;
  --cream: #fbf6ef;
  --soft: #fbfafc;
  --silver: #ecebf0;
  --line: rgba(67, 32, 86, .13);
  --white: #ffffff;
  --radius: 20px;
  --radius-sm: 14px;
  --shadow: 0 24px 60px rgba(42, 18, 55, .12);
  --shadow-card: 0 18px 42px rgba(42, 18, 55, .1);
  --ease: cubic-bezier(.22, 1, .36, 1);
  --chrome-gap: clamp(.85rem, 1.7vw, 1.24rem);
  --section-space: clamp(3.25rem, 6.2vw, 5.75rem);
  --section-heading-space: clamp(1.35rem, 2.8vw, 2.2rem);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 122px;
}

body {
  min-width: 320px;
  margin: 0;
  color: var(--ink);
  background: #fbfafc;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.is-loading {
  overflow: hidden;
}

body.is-loading main,
body.is-loading .site-footer {
  opacity: 0;
  transform: translateY(12px);
}

body.is-ready main,
body.is-ready .site-footer {
  opacity: 1;
  transform: translateY(0);
  transition: opacity .72s var(--ease), transform .72s var(--ease);
}

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

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

button,
input {
  font: inherit;
}

button {
  cursor: pointer;
}

.container {
  width: min(100% - 32px, 1240px);
}

.skip-link {
  position: fixed;
  top: 14px;
  left: 14px;
  z-index: 1300;
  padding: .72rem 1rem;
  color: var(--white);
  background: var(--plum-850);
  border-radius: var(--radius-sm);
  transform: translateY(-150%);
  transition: transform .22s var(--ease);
}

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

.page-loader {
  position: fixed;
  inset: 0;
  z-index: 5000;
  display: grid;
  place-items: center;
  padding: 1.4rem;
  color: var(--white);
  background:
    radial-gradient(circle at 50% 34%, rgba(147, 96, 176, .42), transparent 32rem),
    linear-gradient(145deg, var(--plum-950), var(--plum-850) 48%, var(--plum-700));
  opacity: 1;
  visibility: visible;
  transition: opacity .68s var(--ease), visibility .68s var(--ease);
}

.page-loader.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.loader-card {
  position: relative;
  display: grid;
  place-items: center;
  justify-items: center;
  width: clamp(178px, 46vw, 240px);
  height: clamp(178px, 46vw, 240px);
  padding: 0;
  overflow: visible;
  text-align: center;
  animation: loaderCardIn .82s var(--ease) both;
}

.loader-card::before,
.loader-card::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.loader-card::before {
  top: 50%;
  left: 50%;
  width: clamp(148px, 39vw, 202px);
  height: clamp(148px, 39vw, 202px);
  background: radial-gradient(circle, rgba(255, 255, 255, .22), rgba(217, 200, 228, .14) 42%, transparent 72%);
  border-radius: 50%;
  filter: blur(2px);
  transform: translate(-50%, -50%);
  animation: loaderHaloPulse 2.35s var(--ease) infinite;
}

.loader-card::after {
  top: 50%;
  left: 50%;
  width: clamp(126px, 34vw, 172px);
  height: clamp(126px, 34vw, 172px);
  background: transparent;
  border: 1px solid rgba(255, 255, 255, .24);
  border-radius: 50%;
  box-shadow:
    0 0 0 10px rgba(255, 255, 255, .025),
    0 0 34px rgba(217, 200, 228, .24);
  transform: translate(-50%, -50%);
  animation: loaderRingPulse 2.35s var(--ease) infinite;
}

.loader-card > * {
  position: relative;
  z-index: 1;
}

.loader-logo {
  width: clamp(96px, 28vw, 136px);
  height: clamp(96px, 28vw, 136px);
  object-fit: contain;
  border-radius: 50%;
  background: rgba(255, 255, 255, .08);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, .16),
    0 18px 46px rgba(0, 0, 0, .22),
    0 0 58px rgba(217, 200, 228, .34);
  opacity: .98;
  animation: loaderLogoPulse 2.15s var(--ease) infinite;
}

.top-line {
  position: relative;
  z-index: 1010;
  padding: .52rem 0;
  color: rgba(255, 255, 255, .82);
  background: linear-gradient(90deg, var(--plum-950), var(--plum-700));
  font-size: .82rem;
  font-weight: 750;
}

.top-line .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.top-line a {
  display: inline-flex;
  align-items: center;
  gap: .42rem;
  color: var(--white);
  text-decoration: underline;
  text-underline-offset: 4px;
}

.top-line a svg {
  width: 15px;
  height: 15px;
  flex: 0 0 auto;
}

.top-line .top-phone {
  text-decoration: none;
}

.site-header {
  position: relative;
  z-index: 1000;
  padding: var(--chrome-gap) 0;
  transition: padding .24s var(--ease);
}

.site-header.is-scrolled {
  padding: var(--chrome-gap) 0;
}

.header-shell {
  position: relative;
  display: flex;
  gap: 1rem;
  align-items: center;
  justify-content: space-between;
  min-height: 78px;
  padding: .58rem .72rem .58rem clamp(1.1rem, 3vw, 2.35rem);
  background: rgba(255, 255, 255, .94);
  border: 1px solid rgba(255, 255, 255, .88);
  border-radius: var(--radius);
  box-shadow: 0 20px 52px rgba(42, 18, 55, .1);
  -webkit-backdrop-filter: blur(22px);
  backdrop-filter: blur(22px);
}

.brand-link {
  display: inline-flex;
  align-items: center;
  min-width: 0;
}

.brand-logo {
  width: clamp(176px, 14vw, 224px);
  height: auto;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: .18rem;
  justify-self: end;
  padding: .28rem;
  background: rgba(251, 250, 252, .72);
  border: 1px solid rgba(67, 32, 86, .08);
  border-radius: var(--radius);
}

.header-actions a {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .45rem;
  min-height: 42px;
  padding: .56rem .86rem;
  overflow: hidden;
  color: rgba(23, 19, 29, .76);
  background: transparent;
  border: 0;
  border-radius: calc(var(--radius) - 4px);
  font-size: .88rem;
  font-weight: 830;
  transition: color .22s var(--ease), background .22s var(--ease), box-shadow .22s var(--ease), transform .22s var(--ease);
}

.header-actions a:not(.cart-link)::after {
  content: "";
  position: absolute;
  right: .86rem;
  bottom: .42rem;
  left: .86rem;
  height: 2px;
  background: linear-gradient(90deg, var(--plum-700), var(--lilac));
  border-radius: 999px;
  opacity: 0;
  transform: scaleX(.35);
  transform-origin: center;
  transition: opacity .22s var(--ease), transform .24s var(--ease);
}

.header-actions a svg {
  width: 18px;
  height: 18px;
}

.social-icon {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.header-actions a i,
.btn i,
.site-footer a i {
  line-height: 1;
}

.header-actions a:hover,
.header-actions a:focus {
  color: var(--plum-850);
  background:
    linear-gradient(135deg, rgba(111, 58, 150, .1), rgba(217, 200, 228, .2)),
    var(--white);
  box-shadow: inset 0 0 0 1px rgba(111, 58, 150, .1), 0 12px 28px rgba(42, 18, 55, .1);
  transform: translateY(-2px);
}

.header-actions a:not(.cart-link):hover::after,
.header-actions a:not(.cart-link):focus::after {
  opacity: 1;
  transform: scaleX(1);
}

.header-actions .cart-link {
  width: 42px;
  padding: 0;
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, .16), transparent 32%),
    linear-gradient(135deg, var(--plum-950), var(--plum-700));
  box-shadow: 0 12px 26px rgba(67, 32, 86, .22);
}

.header-actions .cart-link svg {
  width: 19px;
  height: 19px;
  transition: transform .22s var(--ease);
}

.header-actions .cart-link:hover,
.header-actions .cart-link:focus {
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, .22), transparent 34%),
    linear-gradient(135deg, var(--plum-700), var(--plum-950));
  box-shadow: 0 18px 36px rgba(67, 32, 86, .3);
  transform: translateY(-2px) scale(1.04);
}

.header-actions .cart-link:hover svg,
.header-actions .cart-link:focus svg {
  transform: translateX(1px);
}

.menu-toggle {
  position: relative;
  display: none;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  padding: 0;
  background: var(--white);
  border: 1px solid rgba(67, 32, 86, .14);
  border-radius: var(--radius);
}

.menu-toggle span {
  position: absolute;
  width: 18px;
  height: 2px;
  background: var(--plum-850);
  border-radius: 999px;
  opacity: 1;
  transition: transform .24s var(--ease), opacity .18s var(--ease), width .2s var(--ease);
}

.menu-toggle span:first-child {
  transform: translateY(-6px);
}

.menu-toggle span:nth-child(2) {
  transform: translateY(0);
}

.menu-toggle span:last-child {
  transform: translateY(6px);
}

.menu-toggle.is-open span:first-child {
  transform: rotate(45deg);
}

.menu-toggle.is-open span:nth-child(2) {
  width: 8px;
  opacity: 0;
}

.menu-toggle.is-open span:last-child {
  transform: rotate(-45deg);
}

.hero-section {
  padding: 0 0 var(--section-space);
}

.hero-market {
  position: relative;
  display: grid;
  grid-template-columns: minmax(340px, .95fr) minmax(500px, 1.05fr);
  gap: clamp(1.2rem, 3vw, 2.5rem);
  align-items: center;
  min-height: 620px;
  padding: clamp(1.35rem, 4.8vw, 4rem);
  overflow: hidden;
  background: rgba(255, 255, 255, .96);
  border: 1px solid rgba(67, 32, 86, .1);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.hero-copy,
.hero-slider {
  position: relative;
  z-index: 1;
}

body.is-ready .hero-copy.is-visible > * {
  animation: textFadeUp .78s var(--ease) both;
}

body.is-ready .hero-copy.is-visible > :nth-child(1) {
  animation-delay: .08s;
}

body.is-ready .hero-copy.is-visible > :nth-child(2) {
  animation-delay: .18s;
}

body.is-ready .hero-copy.is-visible > :nth-child(3) {
  animation-delay: .3s;
}

body.is-ready .hero-copy.is-visible > :nth-child(4) {
  animation-delay: .42s;
}

.eyebrow {
  margin: 0 0 .8rem;
  color: var(--plum-700);
  font-size: .74rem;
  font-weight: 900;
  letter-spacing: .16em;
  line-height: 1.25;
  text-transform: uppercase;
}

.hero-copy h1,
.section-heading h2,
.products-top h2,
.store-card h2,
.trust-panel h2,
.instagram-panel h2 {
  margin: 0;
  color: var(--ink);
  font-weight: 880;
  letter-spacing: 0;
  line-height: .98;
}

.hero-copy h1 {
  max-width: 600px;
  font-size: clamp(2.7rem, 4.4vw, 4.35rem);
}

.hero-copy p:not(.eyebrow) {
  max-width: 590px;
  margin: 1rem 0 0;
  color: rgba(23, 19, 29, .68);
  font-size: clamp(1.02rem, 1.6vw, 1.2rem);
  font-weight: 560;
  line-height: 1.62;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: .8rem;
  margin-top: 1.3rem;
}

.btn {
  --bs-btn-padding-x: 1.14rem;
  --bs-btn-padding-y: .88rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .55rem;
  min-height: 50px;
  border-radius: var(--radius);
  font-size: .94rem;
  font-weight: 840;
  letter-spacing: 0;
  transition: transform .22s var(--ease), box-shadow .22s var(--ease), background .22s var(--ease), border-color .22s var(--ease), color .22s var(--ease);
}

.btn:hover,
.btn:focus {
  transform: translateY(-2px);
}

.btn svg {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
}

.btn-mp-primary {
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, .16), transparent 30%),
    linear-gradient(135deg, var(--plum-950), var(--plum-700));
  border: 1px solid rgba(111, 58, 150, .24);
  box-shadow: 0 18px 42px rgba(67, 32, 86, .24);
}

.btn-mp-primary:hover,
.btn-mp-primary:focus {
  color: var(--white);
  box-shadow: 0 24px 54px rgba(67, 32, 86, .3);
}

.btn-mp-ghost {
  color: var(--plum-850);
  background: rgba(255, 255, 255, .72);
  border: 1px solid rgba(67, 32, 86, .14);
}

.btn-mp-ghost:hover,
.btn-mp-ghost:focus {
  color: var(--plum-700);
  background: var(--white);
}

.hero-loading {
  display: grid;
  place-items: center;
  min-height: 440px;
  color: var(--muted);
  background: rgba(255, 255, 255, .72);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
}

.hero-loading img {
  width: 210px;
  opacity: .34;
}

.hero-loading span {
  margin-top: 1rem;
  font-size: .86rem;
  font-weight: 850;
}

.hero-slider {
  min-height: 390px;
}

.hero-slider-frame {
  position: relative;
  height: clamp(380px, 34vw, 430px);
  min-height: 380px;
  overflow: hidden;
  background: rgba(255, 255, 255, .86);
  border: 1px solid rgba(67, 32, 86, .12);
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
  touch-action: pan-y;
  user-select: none;
  -webkit-user-select: none;
}

.hero-slides {
  position: relative;
  height: 100%;
}

.hero-slide {
  position: absolute;
  inset: 0;
  display: block;
  overflow: hidden;
  padding: 0;
  color: var(--ink);
  opacity: 0;
  pointer-events: none;
  transform: translateX(26px);
  transition: opacity .42s var(--ease), transform .42s var(--ease);
}

.hero-slide.is-active {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(0);
}

.hero-slide-media {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  width: 100%;
  height: 100%;
}

.hero-slide-media.is-single {
  grid-template-columns: 1fr;
}

.hero-slide-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-slider-controls {
  position: absolute;
  right: 0;
  bottom: 1rem;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}

.hero-dots {
  display: flex;
  justify-content: center;
  gap: .42rem;
  padding: .5rem .62rem;
  background: rgba(255, 255, 255, .72);
  border: 1px solid rgba(67, 32, 86, .1);
  border-radius: 999px;
  box-shadow: 0 10px 24px rgba(42, 18, 55, .1);
  pointer-events: auto;
}

.hero-dot {
  width: 9px;
  height: 9px;
  padding: 0;
  background: rgba(67, 32, 86, .24);
  border: 0;
  border-radius: 999px;
  transition: width .22s var(--ease), background .22s var(--ease);
}

.hero-dot.is-active {
  width: 28px;
  background: var(--plum-700);
}

.products-section,
.collection-section,
.trust-section,
.instagram-section {
  padding: 0 0 var(--section-space);
}

.catalog-filter-panel {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: .9rem;
  align-items: center;
  margin: 0 0 calc(var(--section-heading-space) + 1.35rem);
  padding: .86rem;
  background: rgba(255, 255, 255, .74);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 12px 30px rgba(42, 18, 55, .06);
}

.catalog-filter-title {
  padding: 0 .18rem 0 .34rem;
  color: rgba(67, 32, 86, .68);
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  white-space: nowrap;
}

.section-heading,
.products-top,
.instagram-panel {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1.5rem;
  margin-bottom: var(--section-heading-space);
}

.section-heading.compact {
  display: block;
  margin: 0;
}

.section-heading.compact p:not(.eyebrow) {
  max-width: 620px;
  margin: .75rem 0 0;
  color: var(--muted);
  font-weight: 580;
}

.section-heading h2,
.products-top h2,
.store-card h2,
.trust-panel h2,
.instagram-panel h2 {
  font-size: clamp(2rem, 4vw, 4.2rem);
}

.section-heading.compact h2 {
  font-size: clamp(1.6rem, 3vw, 2.8rem);
}

.section-link {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  color: var(--plum-850);
  font-size: .93rem;
  font-weight: 850;
}

.section-link svg {
  width: 18px;
  height: 18px;
}

.category-grid {
  display: flex;
  flex-wrap: wrap;
  gap: .48rem;
}

.category-card {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .55rem;
  min-height: 42px;
  padding: .58rem .82rem;
  color: var(--ink);
  background: rgba(255, 255, 255, .82);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 10px 28px rgba(42, 18, 55, .05);
  text-align: left;
  transition: transform .22s var(--ease), border-color .22s var(--ease), box-shadow .22s var(--ease), background .22s var(--ease), color .22s var(--ease);
}

.category-card span {
  font-size: .84rem;
  font-weight: 850;
}

.category-dot {
  width: 9px;
  height: 9px;
  background: var(--lilac);
  border-radius: 50%;
}

.category-card:hover,
.category-card:focus,
.category-card.is-active {
  background: var(--white);
  border-color: rgba(111, 58, 150, .28);
  box-shadow: 0 12px 28px rgba(42, 18, 55, .08);
  transform: translateY(-2px);
}

.category-card.is-active {
  color: var(--plum-850);
  box-shadow: inset 0 0 0 1px rgba(111, 58, 150, .34), 0 12px 28px rgba(42, 18, 55, .08);
}

.category-card.is-active .category-dot {
  background: var(--plum-700);
}

.products-layout {
  display: grid;
  grid-template-columns: minmax(240px, 300px) minmax(0, 1fr);
  gap: clamp(1rem, 3vw, 2rem);
  align-items: start;
}

.store-card {
  position: sticky;
  top: 128px;
  display: grid;
  gap: 1rem;
  padding: 1.1rem;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, .96), rgba(251, 246, 239, .78)),
    linear-gradient(135deg, rgba(111, 58, 150, .1), transparent 45%);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
}

.store-card-logo {
  display: grid;
  place-items: center;
  min-height: 142px;
  background: rgba(255, 255, 255, .72);
  border: 1px solid rgba(67, 32, 86, .08);
  border-radius: var(--radius);
}

.store-card-logo img {
  width: 190px;
}

.store-card h2 {
  font-size: clamp(1.45rem, 2.4vw, 2.25rem);
}

.store-card p:not(.eyebrow) {
  margin: 0;
  color: var(--muted);
  font-size: .95rem;
  font-weight: 590;
}

.catalog-area {
  min-width: 0;
}

.catalog-meta {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: .5rem .82rem;
  color: var(--plum-850);
  background: rgba(255, 255, 255, .78);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: .88rem;
  font-weight: 850;
}

.product-card {
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
  overflow: hidden;
  color: var(--ink);
  background: rgba(255, 255, 255, .92);
  border: 1px solid rgba(67, 32, 86, .12);
  border-radius: var(--radius);
  box-shadow: 0 14px 34px rgba(42, 18, 55, .07);
  transition: transform .24s var(--ease), box-shadow .24s var(--ease), border-color .24s var(--ease);
}

.product-card:hover,
.product-card:focus-within {
  border-color: rgba(111, 58, 150, .25);
  box-shadow: 0 28px 62px rgba(42, 18, 55, .15);
  transform: translateY(-6px);
}

.product-media {
  position: relative;
  display: block;
  overflow: hidden;
  padding: .72rem .72rem .68rem;
  background: #ffffff;
  user-select: none;
  -webkit-user-select: none;
}

.product-image-link {
  display: block;
  color: inherit;
}

.product-image-stage {
  position: relative;
  display: block;
  width: 100%;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: #f7f3fa;
  border: 1px solid rgba(67, 32, 86, .06);
  border-radius: calc(var(--radius) - 6px);
  touch-action: pan-y;
}

.product-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  opacity: 0;
  transform: scale(1.006);
  transition: opacity .34s var(--ease), transform .42s var(--ease);
}

img[data-fade-image] {
  opacity: 0;
  transform: scale(1.014);
  transition: opacity .58s var(--ease), transform .72s var(--ease);
}

img[data-fade-image].is-loaded {
  opacity: 1;
  transform: scale(1);
}

.product-slide.is-active {
  opacity: 1;
  transform: scale(1);
}

.product-gallery-dots {
  display: flex;
  justify-content: center;
  gap: .28rem;
  min-height: 14px;
  margin-top: .68rem;
}

.product-gallery-dot {
  width: 17px;
  height: 4px;
  padding: 0;
  background: rgba(67, 32, 86, .17);
  border: 0;
  border-radius: 999px;
  transition: width .18s var(--ease), background .18s var(--ease), transform .18s var(--ease);
}

.product-gallery-dot:hover,
.product-gallery-dot:focus,
.product-gallery-dot.is-active {
  background: var(--plum-700);
}

.product-gallery-dot.is-active {
  width: 25px;
}

.product-body {
  display: grid;
  gap: .72rem;
  flex: 1;
  padding: 1rem;
}

.product-card-meta {
  display: flex;
  flex-wrap: wrap;
  gap: .42rem;
  align-items: center;
  color: rgba(67, 32, 86, .76);
  font-size: .72rem;
  font-weight: 850;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.product-card-meta span {
  display: inline-flex;
  align-items: center;
}

.product-title-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  align-items: start;
}

.product-card h3 {
  display: -webkit-box;
  min-height: 2.6em;
  margin: 0;
  overflow: hidden;
  color: var(--ink);
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.3;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.product-buy-row {
  display: grid;
  gap: .78rem;
  margin-top: auto;
}

.product-button {
  position: relative;
  width: 100%;
  min-height: 46px;
  overflow: hidden;
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, .13), transparent 32%),
    linear-gradient(135deg, var(--plum-950), var(--plum-700));
  border: 1px solid rgba(111, 58, 150, .2);
  box-shadow: 0 14px 30px rgba(67, 32, 86, .2);
}

.product-button span,
.product-button svg {
  position: relative;
  z-index: 1;
}

.product-button svg {
  transition: transform .24s var(--ease);
}

.product-button:hover,
.product-button:focus {
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, .2), transparent 32%),
    linear-gradient(135deg, var(--plum-700), var(--plum-950));
  box-shadow: 0 22px 44px rgba(67, 32, 86, .28);
  transform: translateY(-3px);
}

.product-button:hover svg,
.product-button:focus svg {
  transform: translate(3px, -3px);
}

.empty-products {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.2rem;
  padding: 1.1rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
}

.empty-products h3 {
  margin: .3rem 0;
  font-size: clamp(1.4rem, 3vw, 2.4rem);
  font-weight: 880;
  line-height: 1.08;
}

.empty-products p {
  margin: 0;
  color: var(--muted);
}

.empty-kicker {
  color: var(--plum-700);
  font-size: .74rem;
  font-weight: 900;
  letter-spacing: .14em;
  text-transform: uppercase;
}

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

.collection-card {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 240px;
  overflow: hidden;
  padding: 1.15rem;
  color: var(--white);
  background: linear-gradient(135deg, rgba(42, 18, 55, .95), rgba(111, 58, 150, .78));
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
  transition: transform .24s var(--ease), box-shadow .24s var(--ease);
}

.collection-card span,
.collection-card strong {
  position: relative;
  z-index: 1;
}

.collection-card span {
  color: rgba(255, 255, 255, .74);
  font-size: .78rem;
  font-weight: 880;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.collection-card strong {
  max-width: 280px;
  margin-top: .5rem;
  font-size: clamp(1.45rem, 2.4vw, 2.25rem);
  font-weight: 880;
  line-height: 1.05;
}

.collection-card:hover,
.collection-card:focus {
  color: var(--white);
  box-shadow: 0 28px 64px rgba(42, 18, 55, .18);
  transform: translateY(-5px);
}

.trust-panel,
.instagram-panel {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(260px, .62fr);
  gap: 1.5rem;
  align-items: center;
  padding: clamp(1.2rem, 4vw, 2.4rem);
  background: rgba(255, 255, 255, .84);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
}

.trust-panel p:not(.eyebrow) {
  max-width: 640px;
  margin: 1rem 0 0;
  color: var(--muted);
  font-weight: 580;
}

.trust-grid {
  display: grid;
  gap: .75rem;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: .75rem;
  min-height: 70px;
  padding: .85rem;
  color: var(--plum-850);
  background: var(--soft);
  border: 1px solid rgba(67, 32, 86, .09);
  border-radius: var(--radius);
  font-weight: 850;
}

.trust-item svg {
  width: 22px;
  height: 22px;
}

.instagram-panel {
  margin-bottom: 0;
}

.instagram-panel h2 {
  max-width: 760px;
}

.site-footer {
  position: relative;
  overflow: hidden;
  padding: clamp(2.8rem, 6vw, 5rem) 0 1.4rem;
  color: rgba(255, 255, 255, .78);
  background: linear-gradient(145deg, var(--plum-950), var(--plum-850) 54%, var(--plum-700));
}

.site-footer .container {
  position: relative;
  z-index: 1;
}

.footer-cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 1.2rem;
  align-items: center;
  padding: clamp(1.1rem, 3vw, 1.8rem);
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: var(--radius);
  box-shadow: 0 24px 58px rgba(0, 0, 0, .12);
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
}

.footer-cta .eyebrow {
  color: rgba(255, 255, 255, .66);
}

.footer-cta h2 {
  max-width: 760px;
  margin: 0;
  color: var(--white);
  font-size: clamp(1.8rem, 4vw, 3.7rem);
  font-weight: 880;
  line-height: 1;
}

.footer-cta p:not(.eyebrow) {
  max-width: 650px;
  margin: .85rem 0 0;
  color: rgba(255, 255, 255, .72);
  font-weight: 560;
}

.footer-cta-btn {
  color: var(--plum-850);
  background: var(--white);
  border: 1px solid rgba(255, 255, 255, .24);
  box-shadow: 0 18px 42px rgba(0, 0, 0, .16);
}

.footer-cta-btn:hover,
.footer-cta-btn:focus {
  color: var(--plum-950);
  background: rgba(255, 255, 255, .94);
}

.footer-main {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) repeat(2, minmax(160px, .42fr));
  gap: clamp(1.4rem, 4vw, 3rem);
  padding: clamp(2rem, 5vw, 3.4rem) 0 2rem;
}

.footer-brand {
  display: grid;
  justify-items: start;
}

.footer-logo {
  width: min(230px, 62vw);
  filter: brightness(0) invert(1);
}

.site-footer p {
  max-width: 420px;
  margin: 1rem 0 0;
}

.footer-contact-row {
  display: flex;
  flex-wrap: wrap;
  gap: .55rem;
  margin-top: 1rem;
}

.footer-pill {
  min-height: 42px;
  padding: .58rem .82rem;
  color: var(--white) !important;
  background: rgba(255, 255, 255, .09);
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: var(--radius);
  font-weight: 820 !important;
}

.footer-links h2 {
  margin: 0 0 .9rem;
  color: var(--white);
  font-size: .92rem;
  font-weight: 880;
}

.footer-links {
  display: grid;
  align-content: start;
  justify-items: start;
}

.site-footer a {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  margin-top: .55rem;
  color: rgba(255, 255, 255, .76);
  font-size: .92rem;
  font-weight: 720;
}

.site-footer a svg {
  width: 18px;
  height: 18px;
}

.site-footer a:hover,
.site-footer a:focus {
  color: var(--white);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 1.2rem;
  border-top: 1px solid rgba(255, 255, 255, .12);
}

.footer-bottom p {
  margin: 0;
}

.footer-credit {
  color: rgba(255, 255, 255, .58);
  font-size: .86rem;
}

.footer-credit a {
  margin: 0;
  color: rgba(255, 255, 255, .88);
  font-weight: 820;
}

.footer-bottom a {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  margin: 0;
  color: var(--white);
}

.footer-bottom a svg {
  width: 17px;
  height: 17px;
}

.site-footer .footer-cta h2 {
  max-width: 760px;
  margin: 0;
  color: var(--white);
  font-size: clamp(1.8rem, 4vw, 3.7rem);
  font-weight: 880;
  line-height: 1;
}

.site-footer .footer-cta-btn {
  color: var(--plum-850);
}

.site-footer .footer-cta-btn:hover,
.site-footer .footer-cta-btn:focus {
  color: var(--plum-950);
}

.mobile-store-bar {
  position: fixed;
  right: 12px;
  bottom: 12px;
  left: 12px;
  z-index: 1100;
  display: none;
  align-items: center;
  justify-content: center;
  gap: .55rem;
  min-height: 54px;
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, .13), transparent 30%),
    linear-gradient(135deg, var(--plum-950), var(--plum-700));
  border: 1px solid rgba(255, 255, 255, .22);
  border-radius: var(--radius);
  box-shadow: 0 22px 48px rgba(42, 18, 55, .25);
  font-weight: 880;
  opacity: 0;
  pointer-events: none;
  transform: translateY(18px);
  transition: opacity .22s var(--ease), transform .22s var(--ease);
}

.mobile-store-bar:hover,
.mobile-store-bar:focus {
  color: var(--white);
}

.mobile-store-bar svg {
  width: 19px;
  height: 19px;
}

.mobile-store-bar.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .7s var(--ease), transform .7s var(--ease);
}

.reveal-delay {
  transition-delay: .1s;
}

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

@keyframes loaderCardIn {
  from {
    opacity: 0;
    transform: translateY(18px) scale(.97);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes loaderLogoPulse {
  0%,
  100% {
    transform: scale(1);
    opacity: .9;
  }
  50% {
    transform: scale(1.035);
    opacity: 1;
  }
}

@keyframes loaderHaloPulse {
  0%,
  100% {
    opacity: .58;
    transform: translate(-50%, -50%) scale(.96);
  }
  50% {
    opacity: .92;
    transform: translate(-50%, -50%) scale(1.04);
  }
}

@keyframes loaderRingPulse {
  0%,
  100% {
    opacity: .42;
    transform: translate(-50%, -50%) scale(.96);
  }
  50% {
    opacity: .82;
    transform: translate(-50%, -50%) scale(1.08);
  }
}

@keyframes textFadeUp {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 1199.98px) {
  .header-shell {
    padding-left: 1.15rem;
  }

  .header-actions a {
    padding-right: .72rem;
    padding-left: .72rem;
  }

  .hero-market {
    grid-template-columns: 1fr;
    min-height: auto;
  }

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

@media (max-width: 991.98px) {
  html {
    scroll-padding-top: 150px;
  }

  .top-line .container {
    justify-content: space-between;
  }

  .header-shell {
    display: grid;
    grid-template-columns: auto auto;
    gap: .74rem;
    min-height: auto;
    padding: .58rem .72rem .58rem 1rem;
  }

  .brand-logo {
    width: 172px;
  }

  .menu-toggle {
    grid-column: 2;
    grid-row: 1;
    display: inline-flex;
    justify-self: end;
  }

  .header-actions {
    position: absolute;
    top: calc(100% + .58rem);
    right: 0;
    left: 0;
    justify-self: stretch;
    width: auto;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: .62rem;
    padding: .72rem;
    background:
      linear-gradient(145deg, rgba(255, 255, 255, .98), rgba(251, 246, 239, .94)),
      linear-gradient(135deg, rgba(111, 58, 150, .1), transparent 58%);
    border: 1px solid rgba(67, 32, 86, .12);
    border-radius: var(--radius);
    box-shadow: 0 26px 64px rgba(42, 18, 55, .2);
    -webkit-backdrop-filter: blur(18px);
    backdrop-filter: blur(18px);
    opacity: 0;
    pointer-events: none;
    visibility: hidden;
    transform: translateY(-8px) scale(.98);
    transform-origin: top center;
    transition: opacity .22s var(--ease), transform .22s var(--ease), visibility .22s var(--ease);
  }

  .header-actions.is-open {
    opacity: 1;
    pointer-events: auto;
    visibility: visible;
    transform: translateY(0) scale(1);
  }

  .header-actions a {
    width: 100%;
    min-height: 54px;
    justify-content: center;
    color: var(--plum-850);
    background: rgba(255, 255, 255, .78);
    border: 1px solid rgba(67, 32, 86, .1);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .58), 0 10px 22px rgba(42, 18, 55, .05);
    text-align: center;
    white-space: nowrap;
  }

  .header-actions a:not(.cart-link)::after {
    display: none;
  }

  .header-actions .cart-link {
    grid-column: 1 / -1;
    width: 100%;
    min-height: 56px;
  }

  .header-actions .cart-link::after {
    content: "Trendyol Mağazasına Git";
    margin-left: .55rem;
  }

  .collection-grid,
  .trust-panel,
  .instagram-panel,
  .footer-cta,
  .footer-main {
    grid-template-columns: 1fr;
  }

  .footer-cta-btn {
    width: 100%;
  }

  .site-footer {
    text-align: center;
  }

  .footer-cta,
  .footer-main,
  .footer-brand,
  .footer-links {
    justify-items: center;
    text-align: center;
  }

  .site-footer p {
    margin-right: auto;
    margin-left: auto;
  }

  .footer-contact-row {
    justify-content: center;
  }

  .site-footer a {
    justify-content: center;
  }

  .footer-bottom {
    align-items: center;
    justify-content: center;
    text-align: center;
  }

  .footer-bottom a {
    justify-content: center;
    width: 100%;
  }
}

@media (max-width: 767.98px) {
  :root {
    --chrome-gap: .78rem;
    --section-space: clamp(2.7rem, 10vw, 4rem);
    --section-heading-space: 1.18rem;
  }

  .container {
    width: min(100% - 24px, 1240px);
  }

  body {
    padding-bottom: 76px;
  }

  .top-line {
    font-size: .74rem;
  }

  .top-line .container {
    width: min(100% - 24px, 1240px);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: .26rem;
    text-align: center;
  }

  .header-actions {
    grid-template-columns: 1fr;
    right: 0;
    left: 0;
    gap: .52rem;
    padding: .66rem;
  }

  .header-actions a {
    min-height: 52px;
    white-space: normal;
  }

  .hero-market {
    padding: 1.18rem;
  }

  .hero-copy h1 {
    font-size: clamp(2.72rem, 13vw, 4.4rem);
  }

  .hero-actions,
  .hero-actions .btn,
  .empty-products .btn,
  .instagram-panel .btn {
    width: 100%;
  }

  .hero-actions .btn-mp-ghost {
    display: none;
  }

  .hero-slider {
    min-height: auto;
  }

  .hero-slider-frame {
    height: auto;
    min-height: 470px;
  }

  .hero-slide {
    min-height: 470px;
  }

  .hero-slide-media {
    grid-template-columns: 1fr;
  }

  .hero-slide-media img:nth-child(n+2) {
    display: none;
  }

  .catalog-filter-panel {
    padding: .85rem;
  }

  .category-card {
    flex: 1 1 calc(50% - .48rem);
    min-height: 62px;
  }

  .products-top,
  .section-heading,
  .empty-products,
  .instagram-panel,
  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }

  .product-image-stage {
    aspect-ratio: 4 / 4.9;
  }

  .collection-card {
    min-height: 190px;
  }

  .footer-bottom {
    align-items: center;
    justify-content: center;
    text-align: center;
  }

  .footer-bottom a {
    justify-content: center;
    width: 100%;
  }

  .mobile-store-bar {
    display: flex;
  }

}

@media (max-width: 420px) {
  .brand-logo {
    width: 156px;
  }

  .header-shell {
    padding: .62rem 1.18rem;
  }

  .top-line .container {
    flex-direction: column;
    align-items: center;
    gap: .2rem;
  }

  .hero-copy h1 {
    font-size: clamp(2.45rem, 12vw, 3.5rem);
  }

}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }

  .page-loader,
  .loader-card,
  .loader-card::before,
  .loader-logo,
  body.is-ready .hero-copy.is-visible > *,
  img[data-fade-image] {
    animation: none !important;
    transition: none !important;
  }

  img[data-fade-image] {
    opacity: 1;
    transform: none;
  }
}
