:root {
  --plum: #38182a;
  --plum-2: #4e2339;
  --wine: #7a1f45;
  --rose: #d6567f;
  --rose-deep: #a5305a;
  --rose-soft: #f7c3d2;
  --apricot: #f0a868;
  --gold: #c08c4a;
  --sand: #f4e3d3;
  --sand-2: #efd6c2;
  --cream: #fff9f5;
  --blush: #fdf1ed;
  --ink: #2b1620;
  --ink-60: rgba(43, 22, 32, 0.62);
  --ink-40: rgba(43, 22, 32, 0.4);
  --line: rgba(56, 24, 42, 0.13);
  --wa: #1fa855;

  --f-display: "Fraunces", Georgia, serif;
  --f-body: "Jost", -apple-system, "Segoe UI", Roboto, sans-serif;

  --r-sm: 10px;
  --r-md: 16px;
  --r-lg: 26px;
  --r-pill: 999px;
  --sh-1: 0 2px 10px rgba(56, 24, 42, 0.06);
  --sh-2: 0 20px 50px -22px rgba(56, 24, 42, 0.38);
  --sh-3: 0 40px 90px -34px rgba(56, 24, 42, 0.6);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --wrap: 1280px;

  --grain: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='120' height='120' filter='url(%23n)' opacity='.5'/%3E%3C/svg%3E");
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--blush);
  color: var(--ink);
  font-family: var(--f-body);
  font-size: 16px;
  line-height: 1.65;
  font-weight: 300;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img,
svg {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select {
  font: inherit;
  color: inherit;
}

button {
  border: 0;
  background: none;
  cursor: pointer;
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

h1,
h2,
h3,
h4 {
  font-family: var(--f-display);
  font-weight: 400;
  margin: 0;
  line-height: 1.1;
  letter-spacing: -0.01em;
}

p {
  margin: 0;
}

.mt-1 {
  margin-top: 10px !important;
}

.mt-2 {
  margin-top: 20px !important;
}

.mt-3 {
  margin-top: 40px !important;
}

.mt-4 {
  margin-top: 60px !important;
}

.mt-5 {
  margin-top: 100px !important;
}

:focus-visible {
  outline: 2px solid var(--rose);
  outline-offset: 3px;
  border-radius: 6px;
}

::selection {
  background: var(--rose-soft);
  color: var(--plum);
}

.wrap {
  max-width: var(--wrap);
  margin-inline: auto;
  padding-inline: 11px;
}

.section {
  padding: 96px 0;
  position: relative;
  overflow: hidden;
}

.section > .wrap {
  position: relative;
  z-index: 2;
}

.grain::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: var(--grain);
  opacity: 0.045;
  mix-blend-mode: multiply;
  pointer-events: none;
  z-index: 1;
}

.eyebrow {
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--rose-deep);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.eyebrow::before {
  content: "";
  width: 24px;
  height: 1px;
  background: currentColor;
  opacity: 0.55;
}

.eyebrow.c {
  justify-content: center;
}

.h-sec {
  font-size: clamp(2.05rem, 4.2vw, 3.4rem);
}

.h-sec em {
  font-style: italic;
  color: var(--rose-deep);
}

.lead {
  color: var(--ink-60);
  max-width: 54ch;
  margin-top: 14px;
  font-size: 1.01rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 30px;
  border-radius: var(--r-pill);
  font-size: 12.5px;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  font-weight: 500;
  transition:
    transform 0.5s var(--ease),
    box-shadow 0.5s var(--ease),
    background 0.35s,
    color 0.35s,
    border-color 0.35s;
}

.btn svg {
  width: 15px;
  height: 15px;
  transition: transform 0.5s var(--ease);
}

.btn:hover svg {
  transform: translateX(4px);
}

.btn--fill {
  background: var(--plum);
  color: var(--cream);
  box-shadow: var(--sh-2);
}

.btn--fill:hover {
  background: var(--wine);
  transform: translateY(-2px);
}

.btn--rose {
  background: linear-gradient(120deg, var(--rose), var(--rose-deep));
  color: #fff;
  box-shadow: 0 14px 30px -14px rgba(165, 48, 90, 0.7);
}

.btn--rose:hover {
  transform: translateY(-2px);
}

.btn--line {
  border: 1px solid var(--line);
  color: var(--ink);
  background: rgba(255, 255, 255, 0.5);
}

.btn--line:hover {
  border-color: var(--plum);
  background: var(--plum);
  color: var(--cream);
}

.btn--wa {
  background: var(--wa);
  color: #fff;
}

.btn--wa:hover {
  background: #188443;
  transform: translateY(-2px);
}

[data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.9s var(--ease),
    transform 0.9s var(--ease);
}

[data-reveal].in {
  opacity: 1;
  transform: none;
}

/* fotoğraf kutusu + yedek desen */
.ph {
  position: relative;
  overflow: hidden;
  background: linear-gradient(150deg, var(--sand), var(--rose-soft));
}

.ph img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ph--fail::after {
  content: "Gamzee";
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  font-family: var(--f-display);
  letter-spacing: 0.3em;
  color: rgba(56, 24, 42, 0.35);
  font-size: 14px;
}

/* ==========================================================================
TOPBAR
========================================================================== */
.topbar {
  background: linear-gradient(
    100deg,
    var(--plum) 0%,
    var(--wine) 55%,
    var(--plum-2) 100%
  );
  color: rgba(255, 249, 245, 0.82);
  font-size: 12px;
  position: relative;
  z-index: 60;
}

.topbar::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    var(--gold),
    var(--rose),
    transparent
  );
  opacity: 0.7;
}

.topbar__in {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  height: 42px;
}

.tb-l,
.tb-r {
  display: flex;
  align-items: center;
  gap: 20px;
}

.tb-l a,
.tb-r a,
.tb-r button {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  letter-spacing: 0.05em;
  transition: color 0.3s;
}

.tb-l a:hover,
.tb-r a:hover,
.tb-r button:hover {
  color: #fff;
}

.tb-l svg,
.tb-r svg {
  width: 14px;
  height: 14px;
  stroke: var(--rose-soft);
  stroke-width: 1.5;
  fill: none;
}

.tb-r .sep {
  width: 1px;
  height: 16px;
  background: rgba(255, 249, 245, 0.2);
}

.tb-c {
  flex: 1;
  text-align: center;
  overflow: hidden;
  height: 42px;
}

.tb-track {
  transition: transform 0.7s var(--ease);
}

.tb-track div {
  height: 42px;
  display: grid;
  place-items: center;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-size: 13px;
  white-space: nowrap;
  font-weight: 600;
}

.tb-track b {
  font-weight: 500;
  color: var(--rose-soft);
  margin-left: 6px;
}

/* ==========================================================================
HEADER
========================================================================== */
.hdr {
  position: sticky;
  top: 0;
  z-index: 55;
  background: var(--cream);
  box-shadow: 0 1px 0 var(--line);
  transition: box-shadow 0.4s;
}

.hdr.stuck {
  box-shadow: 0 14px 34px -26px rgba(56, 24, 42, 0.75);
}

.hdr__main {
  display: flex;
  align-items: center;
  gap: 28px;
  height: 80px;
}

.logo {
  font-family: var(--f-display);
  font-size: 1.62rem;
  letter-spacing: 0.05em;
  line-height: 1;
  display: flex;
  align-items: baseline;
  gap: 7px;
  flex: none;
}

.logo span {
  color: var(--rose);
}

.logo small {
  font-family: var(--f-body);
  font-size: 9px;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--ink-40);
}

.search {
  flex: 1;
  max-width: 520px;
  position: relative;
}

.search input {
  width: 100%;
  background: var(--blush);
  border: 1px solid var(--line);
  border-radius: var(--r-pill);
  padding: 14px 52px 14px 46px;
  font-size: 14.5px;
  font-weight: 300;
  transition: 0.35s var(--ease);
}

.search input::placeholder {
  color: var(--ink-40);
}

.search input:focus {
  outline: none;
  border-color: var(--rose);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(214, 86, 127, 0.1);
}

.search__ic {
  position: absolute;
  left: 17px;
  top: 50%;
  transform: translateY(-50%);
  width: 17px;
  height: 17px;
  stroke: var(--ink-40);
  stroke-width: 1.6;
  fill: none;
  pointer-events: none;
}

.search__go {
  position: absolute;
  right: 6px;
  top: 50%;
  transform: translateY(-50%);
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--plum);
  display: grid;
  place-items: center;
  transition: 0.35s;
}

.search__go:hover {
  background: var(--rose-deep);
}

.search__go svg {
  width: 15px;
  height: 15px;
  stroke: var(--cream);
  stroke-width: 1.8;
  fill: none;
}

.acts {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-left: auto;
}

.act {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 9px 12px;
  border-radius: var(--r-pill);
  transition:
    background 0.3s,
    transform 0.3s var(--ease);
  position: relative;
}

.act:hover {
  background: var(--blush);
  transform: translateY(-1px);
}

.act svg {
  width: 20px;
  height: 20px;
  stroke: var(--ink);
  stroke-width: 1.45;
  fill: none;
  flex: none;
}

.act__t {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
  text-align: left;
}

.act__t small {
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-40);
}

.act__t b {
  font-size: 13px;
  font-weight: 500;
}

.act--cart {
  background: var(--plum);
  color: var(--cream);
}

.act--cart svg {
  stroke: var(--cream);
}

.act--cart .act__t small {
  color: var(--rose-soft);
}

.act--cart:hover {
  background: var(--wine);
}

/* ===== Hesap dropdown menüsü (masaüstü, hover ile açılır) ===== */
.acc-dropdown {
  position: relative;
  display: flex;
}

.acc-menu {
  position: absolute;
  top: 100%;
  right: 0;
  margin-top: 6px;
  min-width: 220px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: var(--sh-2, 0 12px 30px rgba(56, 24, 42, 0.12));
  padding: 8px;
  display: flex;
  flex-direction: column;
  gap: 2px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(6px);
  transition: opacity 0.2s var(--ease), transform 0.2s var(--ease), visibility 0.2s;
  z-index: 60;
}

@media (hover: hover) and (pointer: fine) {
  .acc-dropdown:hover .acc-menu,
  .acc-dropdown:focus-within .acc-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
}

.acc-menu a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 10px;
  font-size: 13.5px;
  color: var(--ink);
  transition: background 0.2s, color 0.2s;
}

.acc-menu a:hover {
  background: var(--blush);
  color: var(--rose-deep);
}

.acc-menu a svg {
  width: 16px;
  height: 16px;
  stroke: currentColor;
  stroke-width: 1.8;
  fill: none;
  flex: none;
}

.acc-menu__divider {
  height: 1px;
  background: var(--line);
  margin: 6px 4px;
}

.acc-menu__danger {
  color: var(--ink-40);
}

.acc-menu__danger:hover {
  background: #fff5f5;
  color: #c62828;
}

/* ===== Mobil çekmece: "Hesabım" bölümü ===== */
.drawer__acc {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
  margin-bottom: 14px;
}

.drawer__acc-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-40);
  padding: 0 4px 6px;
}

.pip {
  position: absolute;
  top: 2px;
  left: 26px;
  min-width: 19px;
  height: 19px;
  padding: 0 5px;
  background: var(--rose);
  color: #fff;
  border-radius: var(--r-pill);
  border: 2px solid var(--cream);
  font-size: 10.5px;
  font-weight: 500;
  display: grid;
  place-items: center;
  line-height: 1;
  transform: scale(0);
  transition: transform 0.45s var(--ease);
}

.pip.on {
  transform: scale(1);
}

.act--fav .pip {
  background: var(--apricot);
  color: var(--plum);
}

.hdr__nav {
  border-top: 1px solid var(--line);
  background: var(--cream);
}

.hdr__nav .wrap {
  display: flex;
  align-items: center;
  gap: 32px;
  height: 52px;
}

.hdr__nav a {
  font-size: 13.5px;
  letter-spacing: 0.04em;
  position: relative;
  padding: 15px 0;
  white-space: nowrap;
  font-weight: 500;
}

.hdr__nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 12px;
  height: 1.5px;
  width: 0;
  background: var(--rose);
  transition: width 0.45s var(--ease);
}

.hdr__nav a:hover::after,
.hdr__nav a.on::after {
  width: 100%;
}

.nav-pill {
  margin-left: auto;
  background: linear-gradient(120deg, var(--rose-soft), var(--sand));
  color: var(--wine);
  padding: 7px 16px !important;
  border-radius: var(--r-pill);
  font-size: 11.5px;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  font-weight: 500;
}

.nav-pill::after {
  display: none;
}

.burger {
  display: none;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  place-items: center;
  transition: background 0.3s;
}

.burger:hover {
  background: var(--blush);
}

.burger svg {
  width: 21px;
  height: 21px;
  stroke: var(--ink);
  stroke-width: 1.5;
  fill: none;
}

.drawer {
  position: fixed;
  inset: 0;
  z-index: 80;
  background: var(--cream);
  transform: translateX(100%);
  transition: transform 0.55s var(--ease);
  padding: 22px;
  display: flex;
  flex-direction: column;
  overflow: auto;
}

.drawer.open {
  transform: none;
}

.drawer__top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 28px;
}

.drawer .search {
  max-width: none;
  margin-bottom: 26px;
}

.drawer nav {
  display: flex;
  flex-direction: column;
}

.drawer__section {
  margin-bottom: 24px;
}

.drawer__sec-head {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  color: var(--rose-deep);
  margin-bottom: 12px;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--blush);
}

.drawer__sec-head svg {
  width: 16px;
  height: 16px;
  stroke: var(--rose);
}

.drawer__nav-cats,
.drawer__nav-links {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.drawer__nav-item,
.drawer__link-item {
  display: flex;
  align-items: center;
  padding: 12px 14px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.65);
  border: 1px solid rgba(242, 206, 220, 0.4);
  color: var(--ink);
  font-size: 14px;
  font-weight: 500;
  transition: all 0.25s var(--ease);
  text-decoration: none;
}

.drawer__nav-item:hover,
.drawer__link-item:hover {
  background: #fff;
  border-color: var(--rose);
  transform: translateX(4px);
  color: var(--wine);
}

.drawer__nav-item--new {
  background: linear-gradient(135deg, var(--rose-soft), #fff0f5);
  border-color: var(--rose);
  font-weight: 600;
  color: var(--wine);
}

.drawer__nav-icon,
.drawer__link-item svg {
  width: 20px;
  height: 20px;
  margin-right: 12px;
  display: grid;
  place-items: center;
  stroke: var(--rose-deep);
  flex-shrink: 0;
}

.drawer__nav-bullet {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--rose);
  margin-right: 12px;
  flex-shrink: 0;
}

.drawer__nav-text {
  flex: 1;
}

.drawer__nav-badge {
  background: var(--wine);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 20px;
  letter-spacing: 0.06em;
}

.drawer__nav-arrow svg {
  width: 16px;
  height: 16px;
  stroke: var(--ink-40);
  transition: transform 0.2s;
}

.drawer__nav-item:hover .drawer__nav-arrow svg {
  transform: translateX(3px);
  stroke: var(--wine);
}

.drawer__acc-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 16px;
  margin-bottom: 24px;
  box-shadow: var(--sh-1);
}

.drawer__acc-head {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line);
  margin-bottom: 12px;
}

.drawer__acc-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--blush);
  display: grid;
  place-items: center;
  color: var(--wine);
}

.drawer__acc-avatar svg {
  width: 22px;
  height: 22px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.8;
}

.drawer__acc-info small {
  display: block;
  font-size: 11px;
  color: var(--ink-40);
}

.drawer__acc-info b {
  font-size: 14px;
  color: var(--ink);
}

.drawer__acc-links {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
}

.drawer__acc-links a {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: var(--ink-70);
  padding: 8px 10px;
  border-radius: 8px;
  background: var(--cream);
  transition: all 0.2s;
}

.drawer__acc-links a:hover {
  background: var(--blush);
  color: var(--wine);
}

.drawer__acc-links a svg {
  width: 15px;
  height: 15px;
  stroke: var(--rose-deep);
  fill: none;
  stroke-width: 1.8;
}

.drawer__acc-logout {
  grid-column: 1 / -1;
  color: #d32f2f !important;
  background: #fde8e8 !important;
  font-weight: 600;
}

.drawer__auth-box {
  background: linear-gradient(135deg, var(--plum), var(--wine));
  color: #fff;
  border-radius: 16px;
  padding: 18px;
  margin-bottom: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-shadow: 0 8px 24px rgba(138, 31, 68, 0.25);
}

.drawer__auth-info b {
  font-size: 16px;
  display: block;
  margin-bottom: 4px;
}

.drawer__auth-info p {
  font-size: 12.5px;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.4;
  margin: 0;
}

.drawer__auth-btn {
  background: #fff !important;
  color: var(--wine) !important;
  font-size: 13px;
  padding: 10px 16px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-weight: 600;
  text-decoration: none;
}

.drawer__help-card {
  margin-top: auto;
  background: rgba(255, 248, 250, 0.9);
  border: 1px dashed var(--rose);
  border-radius: 14px;
  padding: 14px 16px;
  display: flex;
  align-items: center;
  gap: 14px;
}

.drawer__help-ic {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--rose);
  display: grid;
  place-items: center;
  color: #fff;
  flex-shrink: 0;
}

.drawer__help-ic svg {
  width: 20px;
  height: 20px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
}

.drawer__help-info span {
  font-size: 11px;
  color: var(--ink-40);
  display: block;
}

.drawer__help-info b {
  font-size: 15px;
  color: var(--wine);
}

.drawer__foot {
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid var(--line);
  color: var(--ink-40);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-align: center;
}

.site-logo-img {
  max-height: 44px;
  width: auto;
  object-fit: contain;
  display: block;
}

/* ==========================================================================
HERO
========================================================================== */
.hero {
  position: relative;
  background:
    radial-gradient(
      1100px 640px at 88% 6%,
      rgba(247, 195, 210, 0.65),
      transparent 62%
    ),
    radial-gradient(
      760px 520px at 6% 92%,
      rgba(240, 168, 104, 0.32),
      transparent 60%
    ),
    linear-gradient(175deg, var(--cream) 0%, var(--blush) 55%, #fbe6e0 100%);
}

.hero__slides {
  position: relative;
}

.slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  z-index: 1;
  pointer-events: none;
  transition:
    opacity 0.9s var(--ease),
    visibility 0.9s;
}

.slide.on {
  opacity: 1;
  visibility: visible;
  position: relative;
  z-index: 2;
  pointer-events: auto;
}

.hero__slides:not(:has(.slide.on)) .slide:first-child {
  position: relative;
  opacity: 1;
  visibility: visible;
  z-index: 2;
  pointer-events: auto;
}

.slide__in {
  max-width: var(--wrap);
  margin-inline: auto;
  padding: 64px 22px 280px;
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  align-items: center;
  gap: 56px;
}

.slide__txt {
  position: relative;
  z-index: 3;
  max-width: 560px;
}

.slide__ttl {
  font-size: clamp(2.6rem, 5.2vw, 4.5rem);
  margin: 18px 0 20px;
  font-variation-settings:
    "SOFT" 60,
    "WONK" 1;
}

.slide__ttl em {
  font-style: italic;
  color: var(--rose-deep);
}

.slide__p {
  color: var(--ink-60);
  max-width: 42ch;
  margin-bottom: 30px;
}

.slide__cta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.slide.on .slide__txt > * {
  animation: rise 0.9s var(--ease) both;
}

.slide.on .slide__txt > *:nth-child(2) {
  animation-delay: 0.1s;
}

.slide.on .slide__txt > *:nth-child(3) {
  animation-delay: 0.18s;
}

.slide.on .slide__txt > *:nth-child(4) {
  animation-delay: 0.26s;
}

@keyframes rise {
  from {
    opacity: 0;
    transform: translateY(22px);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

.slide__art {
  position: relative;
  display: grid;
  place-items: center;
}

.arch {
  position: relative;
  width: min(100%, 440px);
  aspect-ratio: 4/5;
  border-radius: 260px 260px 26px 26px;
  overflow: hidden;
  box-shadow: var(--sh-3);
  border: 8px solid rgba(255, 255, 255, 0.75);
  animation: sway 12s ease-in-out infinite;
}

.arch::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(190deg, transparent 55%, rgba(56, 24, 42, 0.28));
}

@keyframes sway {
  0%,
  100% {
    transform: translateY(0) rotate(-0.5deg);
  }

  50% {
    transform: translateY(-14px) rotate(0.5deg);
  }
}

.arch__tag {
  position: absolute;
  left: 14px;
  bottom: 14px;
  z-index: 2;
  background: rgba(255, 249, 245, 0.92);
  backdrop-filter: blur(6px);
  border-radius: var(--r-pill);
  padding: 9px 16px;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--wine);
}

.seal {
  position: absolute;
  top: -14px;
  right: -6px;
  z-index: 3;
  width: 110px;
  height: 110px;
  border-radius: 50%;
  background: var(--plum);
  color: var(--cream);
  display: grid;
  place-items: center;
  text-align: center;
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  line-height: 1.7;
  box-shadow: var(--sh-2);
  border: 1px dashed rgba(247, 195, 210, 0.5);
}

.seal b {
  display: block;
  font-family: var(--f-display);
  font-size: 1.5rem;
  letter-spacing: 0;
  color: var(--rose-soft);
  text-transform: none;
}

.float-card {
  position: absolute;
  left: -26px;
  bottom: 56px;
  z-index: 3;
  background: var(--cream);
  border-radius: 18px;
  padding: 12px;
  box-shadow: var(--sh-2);
  display: flex;
  align-items: center;
  gap: 12px;
  animation: bob 6s ease-in-out infinite;
}

@keyframes bob {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

.float-card .ph {
  width: 52px;
  height: 64px;
  border-radius: 11px;
  flex: none;
}

.float-card b {
  display: block;
  font-family: var(--f-display);
  font-size: 0.95rem;
  font-weight: 400;
  line-height: 1.2;
}

.float-card span {
  font-size: 12px;
  color: var(--rose-deep);
}

.hero__ctrl {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 226px;
  z-index: 10;
  pointer-events: none;
}

.hero__ctrl .wrap {
  display: flex;
  align-items: center;
  gap: 16px;
}

.hero__ctrl .wrap > * {
  pointer-events: auto;
}

.dots {
  display: flex;
  gap: 8px;
}

.dot {
  width: 36px;
  height: 3px;
  border-radius: 2px;
  background: rgba(56, 24, 42, 0.16);
  position: relative;
  overflow: hidden;
}

.dot i {
  position: absolute;
  inset: 0;
  background: var(--wine);
  transform: scaleX(0);
  transform-origin: left;
}

.dot.on i {
  animation: fill 6.5s linear forwards;
}

@keyframes fill {
  to {
    transform: scaleX(1);
  }
}

.arrows {
  display: flex;
  gap: 8px;
  margin-left: auto;
}

.arw {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid var(--line);
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.7);
  transition: 0.4s var(--ease);
}

.arw:hover {
  background: var(--plum);
  border-color: var(--plum);
}

.arw:hover svg {
  stroke: var(--cream);
}

.arw svg {
  width: 16px;
  height: 16px;
  stroke: var(--ink);
  stroke-width: 1.5;
  fill: none;
}

.mini {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 40px;
  z-index: 6;
  width: min(calc(100% - 44px), var(--wrap));
}

.mini__card {
  background: rgba(255, 249, 245, 0.78);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: var(--r-lg);
  padding: 18px 20px;
  box-shadow: var(--sh-3);
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 24px;
  align-items: center;
}

.mini__head h4 {
  font-size: 1.3rem;
  line-height: 1.2;
}

.mini__head p {
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-40);
  margin-top: 6px;
}

.mini__nav {
  display: flex;
  gap: 8px;
  margin-top: 14px;
}

.mini__nav button {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid var(--line);
  display: grid;
  place-items: center;
  transition: 0.35s;
}

.mini__nav button:hover {
  background: var(--plum);
  border-color: var(--plum);
}

.mini__nav button:hover svg {
  stroke: var(--cream);
}

.mini__nav svg {
  width: 13px;
  height: 13px;
  stroke: var(--ink);
  stroke-width: 1.6;
  fill: none;
}

.mini__track {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.mini__track::-webkit-scrollbar {
  display: none;
}

.mini__item {
  flex: 0 0 230px;
  scroll-snap-align: start;
  display: flex;
  gap: 11px;
  align-items: center;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 14px;
  padding: 9px;
  transition:
    transform 0.5s var(--ease),
    box-shadow 0.5s var(--ease);
}

.mini__item:hover {
  transform: translateY(-4px);
  box-shadow: var(--sh-2);
}

.mini__item .ph {
  width: 40px;
  height: 60px;
  border-radius: 9px;
  flex: none;
}

.mini__item b {
  display: block;
  font-family: var(--f-display);
  font-size: 0.92rem;
  font-weight: 400;
  line-height: 1.25;
}

.mini__item span {
  font-size: 12.5px;
  color: var(--rose-deep);
}

/* ==========================================================================
ŞERİT
========================================================================== */
.strip {
  background: var(--plum);
  color: var(--rose-soft);
  overflow: hidden;
  padding: 16px 0;
  position: relative;
}

.strip::before,
.strip::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 120px;
  z-index: 2;
}

.strip::before {
  left: 0;
  background: linear-gradient(90deg, var(--plum), transparent);
}

.strip::after {
  right: 0;
  background: linear-gradient(-90deg, var(--plum), transparent);
}

.strip__t {
  display: flex;
  gap: 0;
  white-space: nowrap;
  animation: slide 34s linear infinite;
  width: max-content;
}

.strip__list {
  display: flex;
  gap: 44px;
  padding-right: 44px;
  flex-shrink: 0;
}

.strip__t span {
  font-family: var(--f-display);
  font-style: italic;
  font-size: 1.15rem;
  display: flex;
  align-items: center;
  gap: 44px;
}

.strip__t span::after {
  content: "✦";
  font-style: normal;
  color: var(--gold);
  font-size: 0.7rem;
}

@keyframes slide {
  to {
    transform: translateX(-50%);
  }
}

/* ==========================================================================
KATEGORİLER
========================================================================== */
.cats {
  background: linear-gradient(180deg, var(--blush) 0%, #fce9e3 100%);
}

.cats__head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 30px;
  margin-bottom: 30px;
  flex-wrap: wrap;
}

.rack {
  position: relative;
  padding-top: 34px;
}

.rack::before {
  content: "";
  position: absolute;
  top: 0;
  left: -4%;
  right: -4%;
  height: 2px;
  background: linear-gradient(
    90deg,
    transparent,
    var(--plum) 6%,
    var(--plum) 94%,
    transparent
  );
  opacity: 0.35;
  border-radius: 2px;
}

.rack__grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 18px;
}

.tag {
  position: relative;
  padding: 34px 18px 22px;
  border-radius: 6px 14px 14px 14px;
  clip-path: polygon(30px 0, 100% 0, 100% 100%, 0 100%, 0 30px);
  background: var(--tg, #fff);
  box-shadow: 0 16px 36px -22px rgba(58, 27, 44, 0.6);
  transform-origin: 20px -34px;
  transform: rotate(var(--rot, -1.4deg));
  transition:
    transform 0.7s var(--ease),
    box-shadow 0.7s var(--ease);
  display: block;
  overflow: hidden;
}

.tag::after {
  /* delik */
  content: "";
  position: absolute;
  top: 15px;
  left: 15px;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: var(--blush);
  box-shadow: inset 0 1px 2px rgba(58, 27, 44, 0.35);
}

.tag__cord {
  position: absolute;
  top: -36px;
  left: 14px;
  width: 2px;
  height: 40px;
  background: var(--plum);
  opacity: 0.4;
  transform-origin: top;
}

.tag:nth-child(2n) {
  --rot: 1.6deg;
}

.tag:nth-child(3n) {
  --rot: -0.6deg;
}

.tag:hover {
  transform: rotate(0deg) translateY(6px);
  box-shadow: 0 34px 60px -26px rgba(58, 27, 44, 0.7);
}

.tag:nth-child(1) {
  --tg: #fff;
}

.tag:nth-child(2) {
  --tg: #fbdce4;
}

.tag:nth-child(3) {
  --tg: #fae2ce;
}

.tag:nth-child(4) {
  --tg: #f0dce6;
}

.tag:nth-child(5) {
  --tg: #fff;
}

.tag:nth-child(6) {
  --tg: #f7e3d6;
}

.tag__flat {
  position: absolute;
  right: -14px;
  bottom: -10px;
  width: 96px;
  color: var(--plum);
  opacity: 0.09;
}

.tag__n {
  font-size: 10.5px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-40);
}

.tag h3 {
  font-size: 1.34rem;
  margin: 8px 0 26px;
}

.tag__go {
  font-size: 12px;
  letter-spacing: 0.1em;
  color: var(--rose-deep);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  position: relative;
  z-index: 2;
}

.tag__go svg {
  width: 13px;
  height: 13px;
  stroke: currentColor;
  stroke-width: 1.6;
  fill: none;
  transition: transform 0.5s var(--ease);
}

.tag:hover .tag__go svg {
  transform: translateX(5px);
}

/* ==========================================================================
ÜRÜNLER
========================================================================== */
.shop {
  background: linear-gradient(
    180deg,
    var(--cream) 0%,
    #fce7e2 45%,
    #f9dce4 100%
  );
}

.shop__head {
  text-align: center;
  margin-bottom: 36px;
}

.shop__head .lead {
  margin-inline: auto;
}

.tabs {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 46px;
}

.tab {
  padding: 11px 24px;
  border-radius: var(--r-pill);
  border: 1px solid var(--line);
  font-size: 13px;
  letter-spacing: 0.07em;
  background: rgba(255, 255, 255, 0.6);
  transition: 0.45s var(--ease);
}

.tab span {
  color: var(--ink-40);
  font-size: 11px;
  margin-left: 6px;
}

.tab:hover {
  border-color: var(--rose);
}

.tab.on {
  background: var(--plum);
  color: var(--cream);
  border-color: var(--plum);
}

.tab.on span {
  color: var(--rose-soft);
}

.grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px 22px;
  align-items: stretch;
}

.card {
  position: relative;
  opacity: 0;
  transform: translateY(16px);
  animation: pop 0.6s var(--ease) forwards;
  background: #ffffff;
  border-radius: 9px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(43, 22, 32, 0.05);
  border: 1px solid rgba(56, 24, 42, 0.06);
  display: flex;
  flex-direction: column;
  height: 100%;
  transition:
    transform 0.4s var(--ease),
    box-shadow 0.4s var(--ease);
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 14px 32px rgba(43, 22, 32, 0.12);
}

@keyframes pop {
  to {
    opacity: 1;
    transform: none;
  }
}

.card__media {
  position: relative;
  aspect-ratio: 3/4;
  background: #f8f4f6;
  overflow: hidden;
  display: block;
  width: 100%;
}

.card__media img {
  padding: 5px;
  border-radius: 12px;
  background-color: #fff;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform 0.7s var(--ease);
}

.card:hover .card__media img {
  transform: scale(1.05);
}

.card__badge {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 3;
  background: var(--plum);
  color: var(--cream);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 5px 10px;
  border-radius: var(--r-pill);
}

.card__badge.sale {
  background: var(--rose);
}

.card__wa {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 5;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.95);
  display: grid;
  place-items: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  color: #25d366;
  transition: 0.3s var(--ease);
}

.card__wa:hover {
  transform: scale(1.1);
  background: #25d366;
  color: #ffffff;
}

.card__wa svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
  transition: 0.3s;
}

.card__info {
  padding: 10px 11px;
  display: flex;
  flex-direction: column;
  flex: 1;
  background: #ffffff;
}

.card__cat {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-40);
  margin-bottom: 5px;
  display: block;
}

.card__name {
  font-family: var(--f-display);
  font-size: 0.84rem;
  margin: 0 0 6px;
  line-height: 1.35;
  font-weight: 500;
  color: var(--ink);
  min-height: 2.7em;
}

.card__title--desktop {
  display: inline;
}

.card__title--mobile {
  display: none;
}

.card__sw {
  display: flex;
  gap: 6px;
  margin-bottom: 0;
  align-items: center;
}

.card__sw i {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  box-shadow: 0 0 0 1px rgba(56, 24, 42, 0.18);
  display: inline-block;
}

.card__row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
  margin-top: auto;
  padding-top: 4px;
}

.card__price {
  display: flex;
  align-items: baseline;
  gap: 7px;
}

.card__price b {
  font-family: var(--f-display);
  font-weight: 600;
  font-size: 1.2rem;
  color: var(--ink);
}

@media (max-width: 768px) {
  .card__name, .plp-card__n {
    font-size: 0.74rem !important;
  }
  .card__price b, .plp-price b {
    font-size: 0.7rem !important;
  }
}

.card__price s {
  color: var(--ink-40);
  font-size: 0.85rem;
}

.card__add {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 6px 14px;
  border-radius: 8px;
  border: 1px solid #e6b8c6;
  background: #fff9fa;
  color: #b33b62;
  font-size: 12px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s var(--ease);
  white-space: nowrap;
}

.card__add svg {
  width: 14px;
  height: 14px;
  stroke: currentColor;
  stroke-width: 1.8;
  fill: none;
  flex-shrink: 0;
}

.card__add:hover {
  background: var(--rose);
  color: #fff;
  border-color: var(--rose);
}

.shop__more {
  text-align: center;
  margin-top: 58px;
}

/* ==========================================================================
ÜRÜN MODALI
========================================================================== */
.modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  padding: 18px;
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 0.35s,
    visibility 0.35s;
}

.modal.on {
  opacity: 1;
  visibility: visible;
}

.modal__bg {
  position: absolute;
  inset: 0;
  background: rgba(43, 16, 30, 0.62);
  backdrop-filter: blur(5px);
}

.modal__box {
  position: relative;
  width: min(1000px, 100%);
  max-height: 92vh;
  overflow: auto;
  background: var(--cream);
  border-radius: 24px;
  box-shadow: var(--sh-3);
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  transform: translateY(22px) scale(0.97);
  transition: transform 0.5s var(--ease);
}

.modal.on .modal__box {
  transform: none;
}

.modal__x {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 5;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 249, 245, 0.92);
  display: grid;
  place-items: center;
  box-shadow: var(--sh-1);
  transition: 0.35s;
}

.modal__x:hover {
  background: var(--plum);
}

.modal__x:hover svg {
  stroke: var(--cream);
}

.modal__x svg {
  width: 16px;
  height: 16px;
  stroke: var(--ink);
  stroke-width: 1.8;
  fill: none;
}

.mv {
  background: linear-gradient(160deg, var(--sand), #f6d3dc);
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.mv__main {
  border-radius: 16px;
  aspect-ratio: 4/5;
  flex: 1;
}

.mv__thumbs {
  display: flex;
  gap: 8px;
}

.mv__thumbs .ph {
  flex: 1;
  aspect-ratio: 1;
  border-radius: 10px;
  cursor: pointer;
  border: 2px solid transparent;
  transition: 0.3s;
}

.mv__thumbs .ph.on {
  border-color: var(--wine);
}

.mb {
  padding: 34px 34px 30px;
  display: flex;
  flex-direction: column;
}

.mb__cat {
  font-size: 10.5px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--rose-deep);
}

.mb h3 {
  font-size: 2rem;
  margin: 8px 0 10px;
}

.mb__rate {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 12.5px;
  color: var(--ink-60);
}

.mb__rate .st {
  display: flex;
  gap: 2px;
}

.mb__rate svg {
  width: 14px;
  height: 14px;
  fill: var(--apricot);
}

.mb__price {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin: 18px 0 6px;
}

.mb__price b {
  font-family: var(--f-display);
  font-size: 2rem;
  font-weight: 400;
}

.mb__price s {
  color: var(--ink-40);
}

.mb__price em {
  font-style: normal;
  background: var(--rose-soft);
  color: var(--wine);
  font-size: 11px;
  letter-spacing: 0.1em;
  padding: 4px 9px;
  border-radius: var(--r-pill);
}

.mb__tax {
  font-size: 12px;
  color: var(--ink-40);
}

.mb__desc {
  color: var(--ink-60);
  font-size: 0.95rem;
  margin: 18px 0;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
}

.opt {
  margin-bottom: 20px;
}

.opt__h {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 11px;
}

.opt__h span {
  font-size: 11px;
  letter-spacing: 0.17em;
  text-transform: uppercase;
  color: var(--ink-40);
}

.opt__h b {
  font-size: 13px;
  font-weight: 500;
}

.opt__h a {
  font-size: 12px;
  color: var(--rose-deep);
  border-bottom: 1px solid currentColor;
}

.colors {
  display: flex;
  gap: 10px;
}

.colors button {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  position: relative;
  box-shadow: 0 0 0 1px rgba(56, 24, 42, 0.16);
  transition: 0.3s var(--ease);
}

.colors button:hover {
  transform: scale(1.08);
}

.colors button.on {
  box-shadow:
    0 0 0 2px var(--cream),
    0 0 0 4px var(--wine);
}

.sizes {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.sizes button {
  min-width: 48px;
  height: 44px;
  padding: 0 12px;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: #fff;
  font-size: 14px;
  transition: 0.3s var(--ease);
}

.sizes button:hover:not(:disabled) {
  border-color: var(--rose);
}

.sizes button.on {
  background: var(--plum);
  color: var(--cream);
  border-color: var(--plum);
}

.sizes button:disabled {
  opacity: 0.35;
  cursor: not-allowed;
  text-decoration: line-through;
}

.sizes.shake {
  animation: shake 0.4s;
}

@keyframes shake {
  25% {
    transform: translateX(-6px);
  }

  75% {
    transform: translateX(6px);
  }
}

.qty {
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: var(--r-pill);
  background: #fff;
  overflow: hidden;
}

.qty button {
  width: 44px;
  height: 44px;
  font-size: 18px;
  transition: background 0.3s;
}

.qty button:hover {
  background: var(--blush);
}

.qty b {
  width: 42px;
  text-align: center;
  font-weight: 500;
}

.mb__acts {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 6px;
}

.mb__acts .btn {
  padding: 16px 18px;
  font-size: 11.5px;
}

.mb__acts .wide {
  grid-column: 1/-1;
}

.mb__meta {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  margin-top: 20px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  font-size: 12.5px;
  color: var(--ink-60);
}

.mb__meta div {
  display: flex;
  align-items: center;
  gap: 7px;
}

.mb__meta svg {
  width: 15px;
  height: 15px;
  stroke: var(--rose-deep);
  stroke-width: 1.6;
  fill: none;
}

/* ==========================================================================
YORUMLAR
========================================================================== */
.rev {
  background: linear-gradient(
    160deg,
    var(--plum) 0%,
    #4a1f36 50%,
    var(--wine) 100%
  );
  color: var(--cream);
}

.rev::before {
  content: "";
  position: absolute;
  top: -160px;
  right: -100px;
  width: 440px;
  height: 440px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(214, 86, 127, 0.4), transparent 66%);
}

.rev::after {
  content: "";
  position: absolute;
  bottom: -180px;
  left: -140px;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(240, 168, 104, 0.24),
    transparent 66%
  );
}

.rev .eyebrow {
  color: var(--rose-soft);
}

.rev__head {
  text-align: center;
  margin-bottom: 52px;
}

.rev__head h2 {
  color: #fff;
  margin-top: 16px;
}

.rev__head .lead {
  color: rgba(255, 249, 245, 0.62);
  margin-inline: auto;
}

.rgrid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.rcard {
  background: var(--cream);
  border-radius: var(--r-lg);
  padding: 28px 26px 22px;
  display: flex;
  flex-direction: column;
  box-shadow: var(--sh-3);
  position: relative;
  transition: transform 0.6s var(--ease);
}

.rcard:hover {
  transform: translateY(-6px);
}

.rcard__q {
  position: absolute;
  top: 14px;
  right: 24px;
  font-family: var(--f-display);
  font-size: 4.5rem;
  line-height: 1;
  color: var(--rose-soft);
  opacity: 0.55;
}

.stars {
  display: flex;
  gap: 3px;
  margin-bottom: 16px;
}

.stars svg {
  width: 16px;
  height: 16px;
  fill: var(--apricot);
}

.stars svg.off {
  fill: rgba(56, 24, 42, 0.14);
}

.rcard p {
  font-family: var(--f-display);
  font-size: 1.06rem;
  font-style: italic;
  line-height: 1.6;
  color: var(--ink);
  position: relative;
  z-index: 1;
}

.rcard__buy {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 22px 0 18px;
  padding: 10px;
  border-radius: 14px;
  background: var(--blush);
  border: 1px solid var(--line);
}

.rcard__buy .ph {
  width: 46px;
  height: 56px;
  border-radius: 9px;
  flex: none;
}

.rcard__buy small {
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--ink-40);
  display: block;
}

.rcard__buy b {
  color: #870538;
  font-weight: 400;
  font-family: var(--f-display);
  font-size: 0.96rem;
  line-height: 1.25;
  display: block;
  margin-top: 2px;
}

.rcard__f {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid var(--line);
}

.ava {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  flex: none;
  background: linear-gradient(140deg, var(--rose), var(--apricot));
  color: #fff;
  font-family: var(--f-display);
  font-size: 1rem;
}

.rcard__f b {
  display: block;
  font-weight: 500;
  font-size: 0.94rem;
  color: #730056;
}

.rcard__f span {
  font-size: 11.5px;
  color: var(--ink-40);
  font-weight: 500;
}

.verify {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 10.5px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--wa);
}

.verify svg {
  width: 14px;
  height: 14px;
  stroke: var(--wa);
  stroke-width: 2;
  fill: none;
}

.rev__sum {
  display: flex;
  justify-content: center;
  gap: 44px;
  margin-top: 48px;
  flex-wrap: wrap;
  text-align: center;
}

.rev__sum b {
  font-family: var(--f-display);
  font-size: 2.1rem;
  display: block;
  color: var(--rose-soft);
}

.rev__sum span {
  font-size: 11px;
  letter-spacing: 0.17em;
  text-transform: uppercase;
  color: rgba(255, 249, 245, 0.55);
}

/* ==========================================================================
WIZARD
========================================================================== */
.jour {
  background:
    radial-gradient(
      600px 400px at 0% 100%,
      rgba(247, 195, 210, 0.5),
      transparent 60%
    ),
    linear-gradient(180deg, var(--cream), var(--sand) 130%);
}

.jour::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.5;
  background-image: radial-gradient(
    circle,
    rgba(56, 24, 42, 0.11) 1px,
    transparent 1px
  );
  background-size: 26px 26px;
  mask-image: linear-gradient(180deg, transparent, #000 40%, transparent);
}

.jour__head {
  max-width: 660px;
  margin-bottom: 40px;
}

.wiz {
  background: #fff;
  border-radius: 28px;
  box-shadow: var(--sh-2);
  overflow: hidden;
  border: 1px solid var(--line);
}

.wiz__bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 26px;
  background: var(--plum);
  color: var(--cream);
  flex-wrap: wrap;
}

.wiz__bar .lbl {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--rose-soft);
}

.wiz__bar .cnt {
  font-family: var(--f-display);
  font-size: 1.05rem;
}

.wiz__prog {
  flex: 1;
  min-width: 160px;
  height: 5px;
  border-radius: 5px;
  background: rgba(255, 249, 245, 0.16);
  overflow: hidden;
}

.wiz__prog i {
  display: block;
  height: 100%;
  width: 25%;
  border-radius: 5px;
  background: linear-gradient(90deg, var(--rose-soft), var(--apricot));
  transition: width 0.7s var(--ease);
}

.rail {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  padding: 26px 26px 6px;
  position: relative;
}

.step {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  border-radius: 14px;
  text-align: left;
  transition: 0.45s var(--ease);
  border: 1px solid transparent;
}

.step:hover {
  background: var(--blush);
}

.step__d {
  width: 38px;
  height: 38px;
  border-radius: 12px;
  flex: none;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  background: var(--cream);
  font-size: 12.5px;
  color: var(--ink-40);
  transition: 0.45s var(--ease);
}

.step__d svg {
  width: 15px;
  height: 15px;
  stroke: currentColor;
  stroke-width: 2.2;
  fill: none;
  display: none;
}

.step__t small {
  font-size: 9.5px;
  letter-spacing: 0.17em;
  text-transform: uppercase;
  color: var(--ink-40);
  display: block;
}

.step__t b {
  font-weight: 500;
  font-size: 14px;
}

.step.done .step__d {
  background: var(--rose-soft);
  border-color: var(--rose-soft);
  color: var(--wine);
}

.step.done .step__d em {
  display: none;
}

.step.done .step__d svg {
  display: block;
}

.step.on {
  background: var(--blush);
  border-color: var(--rose-soft);
}

.step.on .step__d {
  background: var(--plum);
  border-color: var(--plum);
  color: var(--cream);
  transform: scale(1.05);
}

.step.on .step__t b {
  color: var(--wine);
}

.wiz__body {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  min-height: 390px;
  border-top: 1px solid var(--line);
  margin-top: 14px;
}

.panel {
  padding: 44px 46px;
  display: none;
}

.panel.on {
  display: flex;
  flex-direction: column;
  animation: rise 0.6s var(--ease) both;
}

.panel__no {
  font-family: var(--f-display);
  font-size: 2.9rem;
  line-height: 1;
  color: var(--rose-soft);
}

.panel h3 {
  font-size: 1.85rem;
  margin: 10px 0 12px;
}

.panel p {
  color: var(--ink-60);
  max-width: 44ch;
}

.panel ul {
  margin-top: 22px;
  display: grid;
  gap: 11px;
}

.panel li {
  display: flex;
  gap: 11px;
  align-items: flex-start;
  font-size: 0.94rem;
}

.panel li svg {
  width: 16px;
  height: 16px;
  flex: none;
  margin-top: 5px;
  stroke: var(--rose);
  stroke-width: 2;
  fill: none;
}

.wiz__nav {
  display: flex;
  gap: 10px;
  align-items: center;
  margin-top: auto;
  padding-top: 30px;
  flex-wrap: wrap;
}

.wiz__nav .ghost {
  padding: 14px 24px;
  border-radius: var(--r-pill);
  border: 1px solid var(--line);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: 0.35s;
}

.wiz__nav .ghost:hover:not(:disabled) {
  background: var(--plum);
  color: var(--cream);
  border-color: var(--plum);
}

.wiz__nav .ghost:disabled {
  opacity: 0.35;
  cursor: not-allowed;
}

.wiz__art {
  position: relative;
  overflow: hidden;
}

.wiz__art .ph {
  position: absolute;
  inset: 0;
}

.wiz__art .ph::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(
    200deg,
    rgba(56, 24, 42, 0.05),
    rgba(122, 31, 69, 0.4)
  );
}

.wiz__cap {
  position: absolute;
  left: 20px;
  bottom: 20px;
  z-index: 3;
  color: #fff;
  font-size: 11px;
  letter-spacing: 0.17em;
  text-transform: uppercase;
  background: rgba(56, 24, 42, 0.5);
  backdrop-filter: blur(4px);
  padding: 9px 15px;
  border-radius: var(--r-pill);
}

/* ==========================================================================
SSS
========================================================================== */
.faq {
  background: linear-gradient(180deg, var(--sand) 0%, var(--blush) 40%);
}

.faq__in {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 66px;
  align-items: start;
}

.faq__help {
  margin-top: 32px;
  padding: 26px;
  border-radius: var(--r-md);
  background: #fff;
  box-shadow: var(--sh-1);
  border: 1px solid var(--line);
}

.faq__help b {
  font-family: var(--f-display);
  font-size: 1.2rem;
  font-weight: 400;
  display: block;
  margin-bottom: 6px;
}

.faq__help p {
  font-size: 0.9rem;
  color: var(--ink-60);
  margin-bottom: 16px;
}

.acc {
  border-top: 1px solid var(--line);
}

.acc__i {
  border-bottom: 1px solid var(--line);
}

.acc__q {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 22px;
  padding: 24px 0;
  text-align: left;
  font-family: var(--f-display);
  font-size: 1.14rem;
  line-height: 1.35;
  transition: color 0.35s;
}

.acc__q:hover {
  color: var(--rose-deep);
}

.acc__ic {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid var(--line);
  display: grid;
  place-items: center;
  flex: none;
  transition: 0.5s var(--ease);
}

.acc__ic i {
  position: relative;
  width: 12px;
  height: 1.5px;
  background: var(--ink);
  display: block;
}

.acc__ic i::after {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--ink);
  transform: rotate(90deg);
  transition: transform 0.5s var(--ease);
}

.acc__i.on .acc__ic {
  background: var(--plum);
  border-color: var(--plum);
}

.acc__i.on .acc__ic i,
.acc__i.on .acc__ic i::after {
  background: var(--cream);
}

.acc__i.on .acc__ic i::after {
  transform: rotate(0);
}

.acc__a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.55s var(--ease);
}

.acc__a p {
  padding: 0 56px 26px 0;
  color: var(--ink-60);
  font-size: 0.95rem;
}

/* ==========================================================================
BLOG
========================================================================== */
.blog {
  background: linear-gradient(180deg, var(--blush), var(--cream));
}

.blog__head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 28px;
  margin-bottom: 44px;
  flex-wrap: wrap;
}

.bgrid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

.post {
  background: #fff;
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--sh-1);
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  transition:
    transform 0.6s var(--ease),
    box-shadow 0.6s var(--ease);
}

.post:hover {
  transform: translateY(-7px);
  box-shadow: var(--sh-2);
}

.post__m {
  position: relative;
  aspect-ratio: 16/10;
}

.post__m img {
  transition: transform 0.9s var(--ease);
}

.post:hover .post__m img {
  transform: scale(1.06);
}

.post__pill {
  position: absolute;
  top: 13px;
  left: 13px;
  background: rgba(255, 249, 245, 0.94);
  color: var(--wine);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: var(--r-pill);
}

.post__b {
  padding: 24px 24px 22px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.post__meta {
  display: flex;
  gap: 14px;
  font-size: 11px;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  color: var(--ink-40);
}

.post__meta span {
  display: flex;
  align-items: center;
  gap: 6px;
}

.post__meta i {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--rose);
  display: block;
}

.post h3 {
  font-size: 1.28rem;
  margin: 12px 0 10px;
  line-height: 1.3;
}

.post p {
  color: var(--ink-60);
  font-size: 0.92rem;
}

.post__go {
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 11.5px;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--wine);
}

.post__go svg {
  width: 14px;
  height: 14px;
  stroke: currentColor;
  stroke-width: 1.8;
  fill: none;
  transition: transform 0.5s var(--ease);
}

.post:hover .post__go svg {
  transform: translateX(5px);
}

/* ==========================================================================
FOOTER
========================================================================== */
.ftr {
  background: linear-gradient(200deg, var(--plum), #2e1223);
  color: var(--cream);
  padding-top: 80px;
  position: relative;
  overflow: hidden;
}

.ftr::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    var(--gold),
    var(--rose),
    transparent
  );
}

.news {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 44px;
  align-items: center;
  padding-bottom: 58px;
  border-bottom: 1px solid rgba(255, 249, 245, 0.13);
}

.news h3 {
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  color: #fff;
}

.news h3 em {
  font-style: italic;
  color: var(--rose-soft);
}

.news p {
  color: rgba(255, 249, 245, 0.58);
  margin-top: 12px;
  font-size: 0.94rem;
}

.news__form {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.news__form input {
  flex: 1 1 240px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 249, 245, 0.24);
  border-radius: var(--r-pill);
  padding: 15px 22px;
  color: #fff;
  font-size: 0.94rem;
  transition: 0.35s;
}

.news__form input::placeholder {
  color: rgba(255, 249, 245, 0.4);
}

.news__form input:focus {
  outline: none;
  border-color: var(--rose-soft);
}

.ftr__cols {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 40px;
  padding: 58px 0;
}

.ftr__brand .logo {
  color: #fff;
}

.ftr__brand p {
  color: rgba(255, 249, 245, 0.55);
  margin: 16px 0 22px;
  max-width: 32ch;
  font-size: 0.92rem;
}

.soc {
  display: flex;
  gap: 10px;
}

.soc a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(255, 249, 245, 0.2);
  display: grid;
  place-items: center;
  transition: 0.4s var(--ease);
}

.soc a:hover {
  background: var(--rose);
  border-color: var(--rose);
  transform: translateY(-3px);
}

.soc svg {
  width: 16px;
  height: 16px;
  stroke: currentColor;
  stroke-width: 1.4;
  fill: none;
}

.ftr__cols h4 {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-family: var(--f-body);
  font-weight: 500;
  color: var(--rose-soft);
  margin-bottom: 20px;
}

.ftr__cols li {
  margin-bottom: 11px;
}

.ftr__cols li a {
  color: rgba(255, 249, 245, 0.6);
  font-size: 0.92rem;
  transition:
    color 0.3s,
    padding 0.35s var(--ease);
}

.ftr__cols li a:hover {
  color: #fff;
  padding-left: 6px;
}

.ftr__bot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  padding: 24px 0 28px;
  border-top: 1px solid rgba(255, 249, 245, 0.13);
  font-size: 12.5px;
  color: rgba(255, 249, 245, 0.45);
}

.pay {
  display: flex;
  gap: 8px;
}

.pay span {
  padding: 5px 11px;
  border-radius: 6px;
  border: 1px solid rgba(255, 249, 245, 0.18);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.toast {
  position: fixed;
  left: 50%;
  bottom: 26px;
  transform: translate(-50%, 150%);
  z-index: 120;
  background: var(--plum);
  color: var(--cream);
  padding: 15px 26px;
  border-radius: var(--r-pill);
  box-shadow: var(--sh-3);
  font-size: 13.5px;
  transition: transform 0.55s var(--ease);
  display: flex;
  align-items: center;
  gap: 10px;
}

.toast.on {
  transform: translate(-50%, 0);
}

.toast svg {
  width: 16px;
  height: 16px;
  stroke: var(--rose-soft);
  stroke-width: 2.2;
  fill: none;
}

/* ==========================================================================
RESPONSIVE
========================================================================== */
@media (max-width: 1180px) {
  .rack__grid {
    grid-template-columns: repeat(3, 1fr);
    row-gap: 40px;
  }

  .grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .bgrid {
    grid-template-columns: 1fr;
  }

  .post {
    flex-direction: row;
  }

  .post__m {
    flex: 0 0 38%;
    aspect-ratio: auto;
  }

  .rgrid {
    grid-template-columns: 1fr;
    max-width: 600px;
    margin-inline: auto;
  }

  .ftr__cols {
    grid-template-columns: 1fr 1fr;
  }

  .tb-l {
    display: none;
  }
}

@media (max-width: 1024px) {
  .card__title--desktop {
    display: none !important;
  }

  .card__title--mobile {
    display: -webkit-box !important;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: normal;
    font-size: 11px;
  }

  .hdr__main {
    height: 70px;
    gap: 16px;
  }

  .search {
    display: none;
  }

  .hdr__nav {
    display: none;
  }

  .burger {
    display: grid;
  }

  .act__t {
    display: none;
  }

  .act {
    padding: 10px;
  }

  .act--cart {
    padding: 10px 14px;
  }

  .pip {
    left: 24px;
  }

  .slide__in {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 44px 22px 290px;
    gap: 34px;
  }

  .slide__txt {
    margin-inline: auto;
  }

  .slide__p {
    margin-inline: auto;
  }

  .slide__cta {
    justify-content: center;
  }

  .slide__art {
    order: -1;
  }

  .arch {
    width: min(78%, 320px);
    border-radius: 180px 180px 20px 20px;
  }

  .seal {
    width: 88px;
    height: 88px;
    font-size: 9px;
    right: -4px;
  }

  .float-card {
    left: -10px;
    bottom: 20px;
  }

  .hero {
    display: flex !important;
    flex-direction: column !important;
  }

  .hero__slides {
    order: 1 !important;
    width: 100%;
  }

  .hero__ctrl {
    order: 3 !important;
    position: relative !important;
    bottom: auto !important;
    left: 0 !important;
    right: 0 !important;
    z-index: 10;
    width: 100%;
    margin: 8px auto 28px !important;
    display: flex !important;
    justify-content: center !important;
  }

  .hero__ctrl .wrap {
    width: auto !important;
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    gap: 16px !important;
  }

  .hero__ctrl .arrows {
    margin-left: 0 !important;
  }

  .slide__in {
    padding-bottom: 24px !important;
  }

  .slide__txt .eyebrow {
    display: none !important;
  }

  .slide__cta {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    gap: 8px !important;
    width: 100%;
    justify-content: center;
  }

  .slide__cta .btn {
    flex: 1 1 0% !important;
    padding: 12px 8px !important;
    font-size: 0.85rem !important;
    text-align: center !important;
    white-space: nowrap !important;
    justify-content: center;
  }

  .mini {
    order: 2 !important;
    position: relative !important;
    left: 0 !important;
    right: 0 !important;
    transform: none !important;
    width: 100%;
    max-width: var(--wrap);
    margin-inline: auto !important;
    padding: 0 16px;
    margin-top: 50px !important;
    margin-bottom: -20px !important;
  }

  .mini__card {
    grid-template-columns: 1fr;
    gap: 16px;
    position: relative;
  }

  .mini__nav {
    position: absolute;
    top: 20px;
    right: 20px;
    margin: 0;
  }

  .modal {
    padding: 14px;
    place-items: center;
  }

  .modal__box {
    grid-template-columns: 1fr;
    width: 100%;
    max-height: 88vh;
    border-radius: 20px;
    box-shadow: 0 -8px 30px rgba(43, 16, 30, 0.35);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    display: flex;
    flex-direction: column;
  }

  .mv {
    padding: 12px 14px;
    display: flex;
    flex-direction: row;
    gap: 12px;
    align-items: center;
    background: #fff;
    border-bottom: 1px solid var(--line);
    flex-shrink: 0;
  }

  .mv__main {
    width: 80px;
    height: 120px;
    flex: none;
    aspect-ratio: auto;
    border-radius: 10px;
    overflow: hidden;
  }

  .mv__thumbs {
    display: flex;
    flex-direction: row;
    gap: 6px;
    flex: 1;
    overflow-x: auto;
    max-height: 104px;
    align-items: center;
  }

  .mv__thumbs .ph {
    width: 40px;
    height: 60px;
    flex: none;
    border-radius: 8px;
  }

  .mb {
    padding: 14px 16px 18px;
    display: flex;
    flex-direction: column;
    gap: 4px;
  }

  .mb h3 {
    font-size: 1.2rem;
    line-height: 1.3;
    margin: 0 0 2px;
  }

  .mb__price {
    margin: 4px 0 8px;
    gap: 8px;
  }

  .mb__price b {
    font-size: 1.4rem;
  }

  .mb__desc, .mb__meta, .mb__tax {
    display: none !important;
  }

  .opt {
    margin-bottom: 10px;
  }

  .opt__h {
    margin-bottom: 4px;
  }

  .colors button {
    width: 30px;
    height: 30px;
  }

  .sizes button {
    min-width: 38px;
    height: 36px;
    font-size: 13px;
    padding: 0 8px;
    border-radius: 8px;
  }

  .mb__acts {
    margin-top: 8px;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
  }

  .mb__acts .btn {
    padding: 12px 10px;
    font-size: 12px;
  }

  .wiz__body {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .wiz__art {
    order: -1;
    min-height: 170px;
    max-height: 200px;
  }

  .wiz__cap {
    left: 14px;
    bottom: 14px;
    font-size: 10px;
    padding: 6px 12px;
  }

  .panel {
    padding: 24px 20px;
  }

  .panel__no {
    font-size: 1.8rem;
    margin-bottom: 4px;
  }

  .panel h3 {
    font-size: 1.4rem;
    margin: 4px 0 10px;
  }

  .panel p {
    font-size: 0.92rem;
    margin-bottom: 14px;
  }

  .panel ul {
    margin-top: 14px;
    gap: 9px;
  }

  .panel li {
    font-size: 0.88rem;
    gap: 8px;
  }

  .wiz__nav {
    padding-top: 20px;
    margin-top: 20px;
  }

  .faq__in {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .news {
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .rail {
    grid-template-columns: repeat(4, 1fr);
    gap: 6px;
    padding: 14px 14px 8px;
  }

  .step {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 8px 4px;
    gap: 5px;
    border-radius: 12px;
  }

  .step__d {
    width: 32px;
    height: 32px;
    border-radius: 10px;
    font-size: 11px;
  }

  .step__d svg {
    width: 14px;
    height: 14px;
  }

  .step__t small {
    display: none;
  }

  .step__t b {
    font-size: 11.5px;
    line-height: 1.15;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }
}

@media (max-width: 760px) {
  .section {
    padding: 74px 0;
  }

  .tb-r .hide-s {
    display: none;
  }

  .grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px 14px;
  }

  .rack__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
    row-gap: 36px;
  }

  .card__add {
    padding: 6px 7px;
    font-size: 11px;
    gap: 4px;
  }

  .post {
    flex-direction: column;
  }

  .post__m {
    flex: auto;
    aspect-ratio: 16/10;
  }

  .ftr__cols {
    grid-template-columns: 1fr;
  }

  .ftr__bot {
    flex-direction: column;
    text-align: center;
  }

  .mb__acts {
    grid-template-columns: 1fr 1fr;
  }

  .rev__sum {
    gap: 28px;
  }

  .mini {
    left: 0 !important;
    right: 0 !important;
    transform: none !important;
    margin-top: 45px !important;
    margin-bottom: -20px !important;
    padding: 0 12px;
  }

  .hero__ctrl {
    bottom: auto !important;
    margin: 8px auto 24px !important;
  }

  .acc__a p {
    padding-right: 16px;
  }

  .tab {
    padding: 9px 16px;
    font-size: 12px;
  }
}

@media (max-width: 430px) {
  .rail {
    grid-template-columns: repeat(4, 1fr);
    gap: 4px;
    padding: 10px 8px 6px;
  }

  .step {
    padding: 6px 2px;
  }

  .step__d {
    width: 28px;
    height: 28px;
    font-size: 10.5px;
  }

  .step__t b {
    font-size: 10px;
  }

  .wiz__bar {
    padding: 12px 14px;
    gap: 8px;
  }

  .wiz__prog {
    min-width: 100%;
    margin-top: 4px;
  }

  .mini__item {
    flex: 0 0 162px;
  }

  .mini {
    left: 0 !important;
    right: 0 !important;
    transform: none !important;
    margin-top: 12px !important;
    margin-bottom: 16px !important;
    padding: 0 8px;
  }

  .hero__ctrl {
    bottom: auto !important;
    margin: 6px auto 20px !important;
  }

  .mini {
    display: none !important;
    left: 0 !important;
    right: 0 !important;
    transform: none !important;
    margin-top: 16px;
    margin-bottom: 24px;
    padding: 0 8px;
  }

  .arch {
    width: 80%;
  }
}

/* ===== SEPET ÇEKMECESİ (CART SIDEBAR & DRAWER) ===== */
.cart-overlay {
  position: fixed;
  inset: 0;
  background: rgba(26, 11, 20, 0.65);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  z-index: 10050;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}
.cart-overlay.on {
  opacity: 1;
  pointer-events: auto;
}
.cart-sidebar {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  max-width: 440px;
  background: var(--cream, #fdfbf7);
  z-index: 10051;
  display: flex;
  flex-direction: column;
  box-shadow: -12px 0 40px rgba(26, 11, 20, 0.25);
  transform: translate3d(100%, 0, 0);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.cart-sidebar.on {
  transform: translate3d(0, 0, 0);
}
.cart-sidebar__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  border-bottom: 1px solid var(--line, rgba(56, 24, 42, 0.08));
  background: #fff;
}
.cs-title {
  display: flex;
  align-items: center;
  gap: 12px;
}
.cs-title h3 {
  font-family: var(--f-serif, serif);
  font-size: 20px;
  font-weight: 600;
  color: var(--wine, #38182a);
  margin: 0;
}
.cs-count {
  background: var(--rose-light, #fceef2);
  color: var(--rose-deep, #b32d56);
  font-size: 12px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: var(--r-pill, 999px);
}
.cs-close {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid var(--line, rgba(56, 24, 42, 0.08));
  background: var(--cream, #fdfbf7);
  color: var(--wine, #38182a);
  display: grid;
  place-content: center;
  cursor: pointer;
  transition: all 0.25s ease;
}
.cs-close:hover {
  background: var(--rose, #d6567f);
  color: #fff;
  border-color: var(--rose, #d6567f);
  transform: rotate(90deg);
}
.cart-sidebar__body {
  flex: 1;
  overflow-y: auto;
  padding: 20px 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.cart-sidebar__body::-webkit-scrollbar {
  width: 6px;
}
.cart-sidebar__body::-webkit-scrollbar-thumb {
  background: var(--line-2, rgba(56, 24, 42, 0.18));
  border-radius: 999px;
}
.cs-empty {
  margin: auto;
  text-align: center;
  padding: 40px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  color: var(--ink-60, rgba(56, 24, 42, 0.6));
}
.cs-empty svg {
  opacity: 0.45;
}
.cs-empty p {
  font-size: 15px;
  max-width: 240px;
  margin: 0;
}
.cs-item {
  display: flex;
  gap: 16px;
  padding: 14px;
  border-radius: 16px;
  background: #fff;
  border: 1px solid var(--line, rgba(56, 24, 42, 0.08));
  box-shadow: 0 4px 12px rgba(56, 24, 42, 0.03);
  position: relative;
  transition: all 0.25s ease;
}
.cs-item:hover {
  border-color: rgba(214, 86, 127, 0.35);
  box-shadow: 0 8px 24px rgba(56, 24, 42, 0.06);
}
.cs-item__img {
  width: 76px;
  height: 98px;
  border-radius: 10px;
  object-fit: cover;
  flex-shrink: 0;
  background: var(--cream, #fdfbf7);
}
.cs-item__info {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-width: 0;
}
.cs-item__top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 8px;
}
.cs-item__title {
  font-size: 14px;
  font-weight: 600;
  color: var(--wine, #38182a);
  margin: 0 0 4px 0;
  line-height: 1.3;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.cs-item__var {
  font-size: 12px;
  color: var(--ink-60, rgba(56, 24, 42, 0.6));
  background: var(--cream, #fdfbf7);
  padding: 2px 8px;
  border-radius: 6px;
  display: inline-block;
  margin-bottom: 8px;
  width: fit-content;
}
.cs-item__del {
  background: transparent;
  border: none;
  color: var(--ink-40, rgba(56, 24, 42, 0.4));
  padding: 4px;
  cursor: pointer;
  transition: color 0.2s ease;
}
.cs-item__del:hover {
  color: #dc3545;
}
.cs-item__bot {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cs-item__price {
  font-size: 15px;
  font-weight: 700;
  color: var(--wine, #38182a);
}
.cs-qty {
  display: flex;
  align-items: center;
  border: 1px solid var(--line, rgba(56, 24, 42, 0.12));
  border-radius: 8px;
  background: #fff;
  overflow: hidden;
  height: 30px;
}
.cs-qty button {
  width: 28px;
  height: 100%;
  border: none;
  background: transparent;
  color: var(--wine, #38182a);
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  transition: background 0.2s;
}
.cs-qty button:hover {
  background: var(--cream, #fdfbf7);
}
.cs-qty span {
  padding: 0 8px;
  font-size: 13px;
  font-weight: 600;
  min-width: 24px;
  text-align: center;
}
.cart-sidebar__foot {
  padding: 20px 24px;
  border-top: 1px solid var(--line, rgba(56, 24, 42, 0.08));
  background: #fff;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.cs-note {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12.5px;
  color: var(--wine, #38182a);
  background: var(--rose-light, #fceef2);
  padding: 10px 14px;
  border-radius: 10px;
  border: 1px dashed rgba(214, 86, 127, 0.3);
}
.cs-note svg {
  color: var(--rose-deep, #b32d56);
  flex-shrink: 0;
}
.cs-summary {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.cs-row {
  display: flex;
  justify-content: space-between;
  font-size: 14px;
  color: var(--ink-60, rgba(56, 24, 42, 0.6));
}
.cs-row.cs-total {
  font-size: 17px;
  font-weight: 700;
  color: var(--wine, #38182a);
  border-top: 1px solid var(--line, rgba(56, 24, 42, 0.08));
  padding-top: 10px;
  margin-top: 2px;
}
.cs-acts {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 10px;
}
.cs-acts .btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 14px 10px;
  font-size: 14px;
  border-radius: 12px;
}
@media (max-width: 480px) {
  .cart-sidebar {
    max-width: 100%;
  }
  .cart-sidebar__top,
  .cart-sidebar__body,
  .cart-sidebar__foot {
    padding-left: 16px;
    padding-right: 16px;
  }
  .cs-acts {
    grid-template-columns: 1fr;
  }
  .toast {
    left: 12px;
    right: 12px;
    bottom: 16px;
    width: auto;
    max-width: none;
    padding: 12px 16px;
    font-size: 12px;
    border-radius: var(--r-md);
    justify-content: center;
    text-align: center;
    transform: translateY(150%);
  }
  .toast.on {
    transform: translateY(0);
  }
  .toast svg {
    width: 14px;
    height: 14px;
    flex: none;
  }
}

/* =========================================================
   YETKİLENDİRME (GİRİŞ / KAYIT) MODALI
========================================================= */
/* =========================================================================
   AUTH MODAL — Giriş & Kayıt
   ========================================================================= */
.auth-modal {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.35s ease, visibility 0.35s ease;
}
.auth-modal.on {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.auth-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(43, 22, 32, 0.6);
  backdrop-filter: blur(12px) saturate(1.4);
  -webkit-backdrop-filter: blur(12px) saturate(1.4);
}
.auth-modal__box {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 480px;
  background: #ffffff;
  border-radius: 24px;
  box-shadow: 0 30px 60px -15px rgba(43, 22, 32, 0.3), 0 0 0 1px rgba(43,22,32,0.04);
  overflow: hidden;
  transform: translateY(24px) scale(0.95);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.auth-modal.on .auth-modal__box {
  transform: translateY(0) scale(1);
}
.auth-modal__x {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 10;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: none;
  background: rgba(255,255,255,0.15);
  color: rgba(255,249,245,0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.25s ease;
}
.auth-modal__x:hover {
  background: rgba(255,255,255,0.3);
  color: #fff;
  transform: rotate(90deg);
}
.auth-modal__x svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.2;
  stroke-linecap: round;
}

/* Dekoratif Banner */
.auth-modal__banner {
  background: linear-gradient(135deg, var(--plum) 0%, #5a2240 50%, var(--wine) 100%);
  padding: 28px 28px 22px;
  position: relative;
  overflow: hidden;
}
.auth-modal__banner::before {
  content: '';
  position: absolute;
  top: -30px;
  right: -20px;
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background: rgba(214,86,127,0.15);
}
.auth-modal__banner::after {
  content: '';
  position: absolute;
  bottom: -40px;
  left: -30px;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: rgba(240,168,104,0.1);
}
.auth-modal__brand {
  position: relative;
  z-index: 1;
}
.auth-modal__logo {
  font-family: var(--f-display);
  font-size: 1.5rem;
  color: #fff;
  letter-spacing: 0.04em;
  display: block;
}
.auth-modal__logo em {
  color: var(--rose-soft);
  font-style: normal;
}
.auth-modal__slogan {
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,249,245,0.55);
  display: block;
  margin-top: 4px;
}

/* Sekmeler */
.auth-modal__tabs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: #faf7f8;
  border-bottom: 1px solid rgba(43, 22, 32, 0.06);
  padding: 0;
}
.auth-tab {
  padding: 15px 10px;
  font-family: var(--f-body);
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--ink-40);
  background: transparent;
  border: none;
  cursor: pointer;
  transition: all 0.25s ease;
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  letter-spacing: 0.03em;
}
.auth-tab svg {
  stroke-linecap: round;
  stroke-linejoin: round;
  flex: none;
}
.auth-tab:hover {
  color: var(--ink);
  background: rgba(214,86,127,0.04);
}
.auth-tab.on {
  color: var(--rose-deep);
  background: #fff;
}
.auth-tab.on::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  height: 2.5px;
  background: linear-gradient(90deg, var(--rose), var(--rose-deep));
  border-radius: 2px 2px 0 0;
}

/* Body */
.auth-modal__body {
  padding: 26px 28px 28px;
}
.auth-alert {
  padding: 12px 16px;
  border-radius: 12px;
  font-size: 0.86rem;
  margin-bottom: 18px;
  line-height: 1.45;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 10px;
}
.auth-alert--error {
  background: #FFF0F2;
  color: #C62828;
  border: 1px solid rgba(198, 40, 40, 0.15);
}
.auth-alert--success {
  background: #EEF8F2;
  color: #2E7D32;
  border: 1px solid rgba(46, 125, 50, 0.15);
}
.auth-form {
  display: none;
  flex-direction: column;
}
.auth-form.on {
  display: flex;
}
.auth-form__h {
  font-family: var(--f-display);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--ink);
  margin: 0 0 6px;
}
.auth-form__p {
  font-size: 0.86rem;
  color: var(--ink-40);
  margin: 0 0 22px;
  line-height: 1.45;
}

/* Field Row (2-column) */
.auth-field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

/* Field */
.auth-field {
  margin-bottom: 14px;
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.auth-field label {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--ink);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Input Wrapper with Icon */
.auth-input-wrap {
  position: relative;
  display: flex;
  align-items: center;
}
.auth-input-icon {
  position: absolute;
  left: 13px;
  top: 50%;
  transform: translateY(-50%);
  width: 16px;
  height: 16px;
  stroke: var(--ink-40);
  stroke-width: 1.8;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
  pointer-events: none;
  z-index: 1;
}
.auth-input-wrap input {
  width: 100%;
  padding: 13px 14px 13px 38px;
  font-family: var(--f-body);
  font-size: 0.92rem;
  color: var(--ink);
  background: #fafafa;
  border: 1.5px solid rgba(43, 22, 32, 0.1);
  border-radius: 12px;
  transition: all 0.25s ease;
}
.auth-input-wrap input:focus {
  outline: none;
  background: #ffffff;
  border-color: var(--rose);
  box-shadow: 0 0 0 3px rgba(214, 86, 127, 0.1);
}
.auth-input-wrap input:focus + .auth-input-icon,
.auth-input-wrap input:focus ~ .auth-input-icon {
  stroke: var(--rose);
}

/* Password Toggle */
.auth-pass-toggle {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  width: 34px;
  height: 34px;
  border-radius: 8px;
  border: none;
  background: transparent;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
  z-index: 1;
}
.auth-pass-toggle:hover {
  background: rgba(43,22,32,0.06);
}
.auth-pass-toggle svg {
  width: 17px;
  height: 17px;
  stroke: var(--ink-40);
  stroke-width: 1.8;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* Submit Button */
.auth-form__sub {
  margin-top: 6px;
  width: 100%;
  padding: 15px;
  font-size: 0.92rem;
  font-weight: 600;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  letter-spacing: 0.04em;
}
.auth-form__sub:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}
.auth-form__sub svg {
  flex: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* Terms Checkbox */
.auth-terms {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.8rem;
  color: var(--ink-60);
  line-height: 1.4;
  margin-bottom: 14px;
  cursor: pointer;
}
.auth-terms input[type="checkbox"] {
  width: 18px;
  height: 18px;
  border-radius: 5px;
  accent-color: var(--rose);
  margin-top: 1px;
  flex: none;
}
.auth-terms a {
  color: var(--rose-deep);
  font-weight: 500;
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* Footer */
.auth-form__foot {
  margin-top: 18px;
  text-align: center;
  font-size: 0.86rem;
  color: var(--ink-40);
  border-top: 1px solid rgba(43, 22, 32, 0.06);
  padding-top: 16px;
}
.auth-form__foot a {
  color: var(--rose);
  font-weight: 600;
  text-decoration: none;
  margin-left: 4px;
  transition: color 0.2s;
}
.auth-form__foot a:hover {
  color: var(--rose-deep);
  text-decoration: underline;
}

@media (max-width: 520px) {
  .auth-modal {
    padding: 10px;
  }
  .auth-modal__box {
    max-width: 100%;
    border-radius: 20px;
  }
  .auth-modal__banner {
    padding: 22px 20px 18px;
  }
  .auth-modal__body {
    padding: 20px 18px 22px;
  }
  .auth-field-row {
    grid-template-columns: 1fr;
    gap: 0;
  }
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto;
  }

  [data-reveal] {
    opacity: 1;
    transform: none;
  }
}
