/* شوکو کیکری — استایل صفحات فروشگاه */
:root {
  --pink-soft: #fce4ec;
  --pink-mid: #f8bbd9;
  --pink-accent: #e91e8c;
  --pink-deep: #c2185b;
  --cream: #fffbf5;
  --white: #ffffff;
  --chocolate: #4e342e;
  --chocolate-light: #6d4c41;
  --chocolate-dark: #3e2723;
  --text-muted: rgba(62, 39, 35, 0.72);
  --glass: rgba(255, 255, 255, 0.72);
  --shadow-card: 0 20px 60px rgba(78, 52, 46, 0.1), 0 4px 20px rgba(233, 30, 140, 0.06);
  --radius-lg: 28px;
  --radius-md: 18px;
  --radius-sm: 12px;
  --radius-pill: 999px;
  --nav-height: 70px;
  --top-drip-height: clamp(82px, 9.8vw, 126px);
  --pin-ease: cubic-bezier(0.22, 1, 0.36, 1);
  --pin-ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "IRANSansXFaNum", system-ui, sans-serif;
  background: linear-gradient(180deg, #fff9fc 0%, #fff6fb 45%, #fffdf9 100%);
  color: var(--chocolate-dark);
  overflow-x: hidden;
  min-height: 100vh;
}

.global-hearts {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 3;
  overflow: hidden;
}

.global-hearts span {
  position: absolute;
  width: 7px;
  height: 7px;
  background: linear-gradient(145deg, #ffb4db, #ec4f98);
  transform: rotate(45deg);
  border-radius: 2px;
  opacity: 0;
  box-shadow: 0 0 10px rgba(236, 79, 152, 0.45);
  animation: pinterestHeartFloat linear infinite;
  will-change: transform, opacity;
}

.global-hearts span::before,
.global-hearts span::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: inherit;
  border-radius: 50%;
}

.global-hearts span::before {
  top: -50%;
  left: 0;
}

.global-hearts span::after {
  left: -50%;
  top: 0;
}

@keyframes pinterestHeartFloat {
  0% {
    transform: translate3d(0, 10px, 0) rotate(45deg) scale(0.7);
    opacity: 0;
  }
  18% {
    opacity: 0.62;
  }
  65% {
    opacity: 0.28;
  }
  100% {
    transform: translate3d(var(--drift-x, 0px), -58px, 0) rotate(45deg) scale(1.12);
    opacity: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  .global-hearts {
    display: none;
  }
}

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

img {
  max-width: 100%;
  height: auto;
}

/* نوار شکلات بالا */
.site-top-drip {
  width: 100%;
  line-height: 0;
  background: transparent;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1400;
  pointer-events: none;
}

.site-top-drip__row {
  display: flex;
  direction: ltr;
  width: 100%;
  height: var(--top-drip-height);
  gap: 0;
}

.site-top-drip__cell {
  flex: 1 1 0;
  min-width: 0;
  margin: 0;
  padding: 0;
}

.site-top-drip__cell img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: fill;
  object-position: top center;
}

/* هدر فروشگاه — چسبان */
.shop-header-wrap {
  position: sticky;
  top: 30px;
  z-index: 100;
  padding: clamp(10px, 1.8vw, 18px) clamp(10px, 2vw, 28px);
  padding-left: max(10px, env(safe-area-inset-left));
  padding-right: max(10px, env(safe-area-inset-right));
  background: linear-gradient(180deg, rgba(255, 251, 245, 0.92) 0%, rgba(255, 251, 245, 0) 100%);
}

.shop-nav {
  max-width: min(1480px, 100%);
  margin-inline: auto;
  min-height: var(--nav-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px clamp(14px, 2.4vw, 32px);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.58) 0%, rgba(255, 251, 245, 0.48) 100%);
  backdrop-filter: blur(24px) saturate(165%);
  -webkit-backdrop-filter: blur(24px) saturate(165%);
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.78);
  box-shadow: 0 10px 40px rgba(78, 52, 46, 0.1);
}

.shop-nav__menu {
  display: flex;
  align-items: center;
  gap: clamp(10px, 1.6vw, 26px);
}

.shop-nav__link {
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--chocolate-light);
  transition: color 0.25s;
}

.shop-nav__link:hover,
.shop-nav__link.is-active {
  color: var(--pink-accent);
}

.shop-nav__brand {
  display: block;
  line-height: 0;
}

.shop-nav__logo {
  width: clamp(92px, 13vw, 128px);
  height: clamp(92px, 13vw, 128px);
  object-fit: contain;
  margin-block: clamp(-22px, -3.2vw, -30px);
  filter: drop-shadow(0 6px 18px rgba(78, 52, 46, 0.12));
}

.shop-nav__icons {
  display: flex;
  align-items: center;
  gap: 8px;
}

.shop-nav__icon-btn {
  width: 48px;
  height: 48px;
  border: 1px solid rgba(233, 30, 140, 0.2);
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.96);
  color: #8d2f5e;
  cursor: pointer;
  display: grid;
  place-items: center;
  box-shadow: 0 8px 20px rgba(233, 30, 140, 0.16);
  transition: transform 0.3s var(--pin-ease), background 0.3s, color 0.3s;
}

.shop-nav__icon-btn:hover,
.shop-nav__icon-btn.is-active {
  background: var(--white);
  color: #d12b7a;
  border-color: rgba(233, 30, 140, 0.34);
  transform: translateY(-2px);
}

.shop-nav__icon-btn svg {
  width: 24px;
  height: 24px;
  stroke-width: 2.2;
}

.shop-nav__action {
  position: relative;
}

.shop-dropdown {
  position: absolute;
  top: calc(100% + 12px);
  inset-inline-start: 0;
  width: min(340px, calc(100vw - 32px));
  padding: clamp(18px, 2.4vw, 22px);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.97);
  border: 1px solid rgba(255, 255, 255, 0.9);
  box-shadow: 0 20px 56px rgba(78, 52, 46, 0.14);
  backdrop-filter: blur(24px);
  z-index: 130;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: opacity 0.32s var(--pin-ease-out), transform 0.32s var(--pin-ease-out), visibility 0.32s;
  pointer-events: none;
}

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

.shop-dropdown__title {
  font-size: 1rem;
  font-weight: 800;
  margin-bottom: 14px;
}

.shop-dropdown__close {
  position: absolute;
  top: 12px;
  inset-inline-end: 12px;
  width: 32px;
  height: 32px;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9);
  cursor: pointer;
  font-size: 1.2rem;
}

.shop-search__field {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 4px 4px 4px 14px;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(233, 30, 140, 0.18);
  background: var(--white);
}

.shop-search__field input {
  flex: 1;
  border: none;
  background: transparent;
  font-family: inherit;
  font-size: 0.95rem;
  outline: none;
}

.shop-search__submit {
  width: 40px;
  height: 40px;
  border: none;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--pink-accent), var(--pink-deep));
  color: var(--white);
  cursor: pointer;
  display: grid;
  place-items: center;
}

.shop-auth__tabs {
  display: flex;
  gap: 6px;
  padding: 4px;
  border-radius: var(--radius-pill);
  background: rgba(252, 228, 236, 0.5);
  margin-bottom: 14px;
}

.shop-auth__tab {
  flex: 1;
  padding: 8px;
  border: none;
  border-radius: var(--radius-pill);
  font-family: inherit;
  font-weight: 700;
  font-size: 0.86rem;
  cursor: pointer;
  background: transparent;
  color: var(--chocolate-light);
}

.shop-auth__tab.is-active {
  background: var(--white);
  color: var(--pink-deep);
}

.shop-auth__field {
  margin-bottom: 12px;
}

.shop-auth__field label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: 6px;
  color: var(--chocolate-light);
}

.shop-auth__field input {
  width: 100%;
  padding: 11px 14px;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(78, 52, 46, 0.12);
  font-family: inherit;
}

.shop-auth__submit {
  width: 100%;
  padding: 12px;
  border: none;
  border-radius: var(--radius-pill);
  background: linear-gradient(135deg, var(--chocolate-dark), var(--chocolate));
  color: var(--white);
  font-family: inherit;
  font-weight: 700;
  cursor: pointer;
}

.shop-auth__panel[hidden] {
  display: none;
}

/* سایدبار سبد */
.cart-drawer {
  position: fixed;
  inset: 0;
  z-index: 250;
  pointer-events: none;
}

.cart-drawer.is-open {
  pointer-events: auto;
}

.cart-drawer__backdrop {
  position: absolute;
  inset: 0;
  border: none;
  width: 100%;
  height: 100%;
  background: rgba(62, 39, 35, 0.45);
  opacity: 0;
  cursor: pointer;
  transition: opacity 0.35s;
}

.cart-drawer.is-open .cart-drawer__backdrop {
  opacity: 1;
}

.cart-drawer__panel {
  position: absolute;
  top: 0;
  inset-inline-end: 0;
  width: min(400px, 92vw);
  height: 100%;
  max-height: 100dvh;
  display: flex;
  flex-direction: column;
  background: linear-gradient(180deg, #fffdfb, #fff8fc);
  box-shadow: -8px 0 48px rgba(78, 52, 46, 0.18);
  transform: translateX(-105%);
  transition: transform 0.42s var(--pin-ease-out);
  padding-bottom: env(safe-area-inset-bottom, 0px);
}

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

.cart-drawer__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 22px;
  border-bottom: 1px solid rgba(78, 52, 46, 0.08);
}

.cart-drawer__title {
  font-size: 1.1rem;
  font-weight: 800;
}

.cart-drawer__close {
  width: 40px;
  height: 40px;
  border: none;
  border-radius: 50%;
  background: var(--pink-soft);
  cursor: pointer;
  font-size: 1.3rem;
}

.cart-drawer__body {
  flex: 1;
  overflow-y: auto;
  padding: 18px 22px;
}

.cart-drawer__foot {
  padding: 18px 22px 24px;
  border-top: 1px solid rgba(78, 52, 46, 0.08);
}

.cart-drawer__row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 14px;
}

.cart-drawer__checkout {
  display: block;
  width: 100%;
  padding: 14px;
  border: none;
  border-radius: var(--radius-pill);
  background: linear-gradient(135deg, var(--pink-accent), var(--pink-deep));
  color: var(--white);
  font-family: inherit;
  font-weight: 700;
  cursor: pointer;
  text-align: center;
  text-decoration: none;
  transition: transform 0.3s var(--pin-ease), filter 0.3s;
}

.cart-drawer__checkout:hover {
  transform: translateY(-2px);
  filter: brightness(1.05);
  color: var(--white);
}

body.is-cart-open,
body.is-shop-panel-open,
body.is-shop-mobile-nav-open {
  overflow: hidden;
}

.shop-nav__toggle {
  display: none;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 0;
  flex-shrink: 0;
  border: none;
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.75);
  color: var(--chocolate-dark);
  cursor: pointer;
  margin-inline-start: -2px;
  box-shadow: 0 2px 12px rgba(78, 52, 46, 0.06);
  transition: background 0.25s, color 0.25s;
}

.shop-nav__toggle:hover {
  background: var(--white);
  color: var(--pink-accent);
}

.shop-nav__toggle-bar {
  display: block;
  width: 18px;
  height: 2px;
  border-radius: var(--radius-pill);
  background: currentColor;
  transition: transform 0.3s var(--pin-ease-out), opacity 0.25s;
}

.shop-nav.is-mobile-menu-open .shop-nav__toggle-bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.shop-nav.is-mobile-menu-open .shop-nav__toggle-bar:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.shop-nav.is-mobile-menu-open .shop-nav__toggle-bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* محتوای صفحه */
.shop-page {
  padding-bottom: 0;
}

.shop-page--watermark::after {
  content: "";
  position: fixed;
  left: 14px;
  bottom: 14px;
  width: clamp(132px, 15vw, 188px);
  height: clamp(132px, 15vw, 188px);
  background: url("../IMG_0254.png") center / contain no-repeat;
  opacity: 0.42;
  filter: saturate(1) contrast(1) drop-shadow(0 8px 20px rgba(126, 37, 78, 0.28));
  transform: rotate(-10deg);
  pointer-events: none;
  z-index: 1200;
}

.product-page-main {
  width: 100%;
}

.shop-breadcrumb {
  max-width: min(1140px, 100%);
  margin: 0 auto;
  padding: 20px clamp(18px, 3vw, 40px) 0;
  font-size: 0.82rem;
  color: var(--text-muted);
}

.shop-breadcrumb a:hover {
  color: var(--pink-accent);
}

.shop-breadcrumb span {
  margin-inline: 8px;
  opacity: 0.5;
}

.shop-hero {
  max-width: min(1360px, 100%);
  margin: 0 auto;
  padding: clamp(24px, 4vw, 48px) clamp(18px, 3vw, 48px);
  text-align: center;
}

.shop-hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border-radius: var(--radius-pill);
  background: rgba(252, 228, 236, 0.7);
  color: var(--pink-deep);
  font-size: 0.82rem;
  font-weight: 700;
  margin-bottom: 16px;
}

.shop-hero__title {
  font-family: "IRANSansXFaNum", system-ui, sans-serif;
  font-size: clamp(2rem, 4.5vw, 3rem);
  font-weight: 700;
  color: var(--chocolate-dark);
  margin-bottom: 12px;
}

.shop-hero__title em {
  font-style: italic;
  color: var(--pink-accent);
}

.shop-hero__intro {
  max-width: 52ch;
  margin: 0 auto;
  font-size: 1rem;
  line-height: 1.8;
  color: var(--text-muted);
}

.home-hero-split {
  max-width: min(1520px, 100%);
  margin: 0 auto;
  padding: clamp(10px, 2vw, 22px) clamp(12px, 2vw, 24px) 0;
}

.home-hero-split__inner {
  min-height: 100vh;
  border-radius: 0 0 26px 26px;
  overflow: hidden;
  display: flex;
  align-items: center;
  background-image:
    linear-gradient(90deg, rgba(255, 249, 252, 0.97) 0%, rgba(255, 245, 250, 0.9) 34%, rgba(255, 245, 250, 0.35) 56%, rgba(255, 245, 250, 0) 72%),
    url("hero-choco.png");
  background-size: cover;
  background-position: right center;
  background-repeat: no-repeat;
  border: 1px solid rgba(233, 30, 140, 0.1);
  box-shadow: 0 20px 56px rgba(233, 30, 140, 0.12);
}

.home-hero-split__content {
  width: min(56%, 760px);
  padding: clamp(24px, 5vw, 62px) clamp(18px, 4vw, 64px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 16px;
}

.home-hero-split__badge {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  padding: 8px 14px;
  border-radius: var(--radius-pill);
  background: #ffeaf3;
  color: #d63282;
  font-size: 0.85rem;
  font-weight: 700;
}

.home-hero-split__title {
  font-size: clamp(2rem, 5vw, 3.4rem);
  line-height: 1.15;
  margin: 0;
}

.home-hero-split__title em {
  color: var(--pink-accent);
  font-style: normal;
}

.home-hero-split__text {
  max-width: 40ch;
  color: var(--text-muted);
  font-size: clamp(0.95rem, 1.3vw, 1.15rem);
  line-height: 1.95;
}

.home-hero-split__visual {
  display: none;
}

.home-trust-strip {
  width: min(1400px, 94%);
  margin: clamp(-24px, -2vw, -16px) auto clamp(28px, 3.8vw, 44px);
  padding: 14px clamp(10px, 2vw, 24px);
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(233, 30, 140, 0.12);
  box-shadow: 0 14px 34px rgba(233, 30, 140, 0.1);
}

.home-trust-strip__item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 10px;
  border-radius: 14px;
}

.home-trust-strip__icon {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #ffeaf3;
  font-size: 1.2rem;
}

.home-trust-strip__item strong {
  display: block;
  font-size: 0.9rem;
}

.home-trust-strip__item p {
  margin: 2px 0 0;
  font-size: 0.78rem;
  color: var(--text-muted);
}

/* Home full-width mode */
.home-main .home-hero-split {
  max-width: 100%;
  margin: 0;
  padding: 0;
  background-color: #fdeff6;
  background-image: url("hero-choco.png");
  background-size: 82% auto;
  background-position: right top;
  background-repeat: no-repeat;
}

.home-page .home-main .home-hero-split {
  margin-top: -118px;
}

.home-main .home-hero-split__inner {
  max-width: min(1280px, 94%);
  margin: 0 auto;
  background: transparent;
  direction: ltr;
  justify-content: flex-start;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.home-main .home-hero-split__content {
  margin-left: 0;
  margin-right: auto;
  direction: rtl;
  text-align: right;
  background: rgba(255, 255, 255, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 24px;
  box-shadow: 0 14px 32px rgba(233, 30, 140, 0.16);
  backdrop-filter: blur(14px) saturate(132%);
  -webkit-backdrop-filter: blur(14px) saturate(132%);
}

.home-main .home-trust-strip {
  position: relative;
  width: min(1280px, 94%);
  margin: clamp(-78px, -7vw, -56px) auto clamp(26px, 3.5vw, 42px);
  border: 1px solid rgba(233, 30, 140, 0.16);
  border-radius: 22px;
  box-shadow: 0 12px 30px rgba(233, 30, 140, 0.14);
  background: rgba(255, 255, 255, 0.92);
  padding: 16px clamp(12px, 2.2vw, 28px);
  z-index: 6;
}

.home-main .home-trust-strip::before {
  display: none;
}

.home-main .home-trust-strip__item {
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.62);
  border: 1px solid rgba(233, 30, 140, 0.12);
  padding: 12px 14px;
}

.home-main .home-trust-strip__icon {
  width: 70px;
  height: 70px;
  font-size: 1.95rem;
  color: #ca2b77;
  background: radial-gradient(circle at 35% 30%, #fff 0%, #ffe8f3 36%, #ffd2e8 100%);
  box-shadow: 0 8px 18px rgba(233, 30, 140, 0.2);
}

.home-main .home-trust-strip__item strong {
  font-size: 1rem;
  font-weight: 800;
}

.home-main .home-trust-strip__item p {
  margin-top: 4px;
  font-size: 0.9rem;
  font-weight: 600;
}

.home-main .home-ref-banner {
  max-width: min(1280px, 94%);
  margin: 0 auto clamp(24px, 3vw, 36px);
  padding: 0;
}

.home-main .home-ref-banner img {
  border-radius: 0;
  box-shadow: none;
}

.home-main .page-content,
.home-main .home-about-l-wrap {
  max-width: min(1180px, 94%);
  margin: 0 auto;
  padding: 0 0 clamp(30px, 4vw, 48px);
}

.home-main .home-about-l {
  gap: clamp(16px, 2.5vw, 30px);
}

.home-main .home-about-l__card {
  border: 0;
  border-radius: 0;
  box-shadow: none;
  background: linear-gradient(180deg, rgba(255, 247, 252, 0.92), rgba(255, 238, 246, 0.78));
  padding: clamp(22px, 4vw, 56px);
}

.home-main .home-about-l__visual {
  border-radius: 0;
  box-shadow: none;
}

.home-moments {
  position: relative;
  padding: clamp(34px, 4vw, 54px) 0 clamp(30px, 4vw, 48px);
  background: linear-gradient(180deg, rgba(255, 245, 250, 0.88), rgba(255, 250, 253, 0.92));
}

.home-moments__inner {
  width: min(1240px, 94%);
  margin: 0 auto;
  text-align: center;
}

.home-moments__badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: var(--radius-pill);
  background: #ffeaf3;
  color: #d63282;
  font-size: 0.84rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.home-moments__title {
  font-size: clamp(1.75rem, 3.5vw, 2.8rem);
  margin-bottom: 8px;
}

.home-moments__intro {
  color: var(--text-muted);
  max-width: 54ch;
  margin: 0 auto 24px;
  line-height: 1.9;
}

.home-moments__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  perspective: 1200px;
}

.moment-card {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background:
    radial-gradient(circle at 18% 12%, rgba(255, 255, 255, 0.86), rgba(255, 255, 255, 0) 48%),
    linear-gradient(165deg, rgba(255, 255, 255, 0.95), rgba(255, 241, 248, 0.9));
  border: 1px solid rgba(233, 30, 140, 0.15);
  border-radius: 22px;
  padding: 12px 12px 16px;
  text-align: center;
  box-shadow: 0 12px 28px rgba(233, 30, 140, 0.12);
  transform: translateY(18px) scale(0.96);
  opacity: 0;
  animation: momentCardIn 0.75s var(--pin-ease-out) forwards;
  transition:
    transform 0.45s var(--pin-ease),
    box-shadow 0.45s var(--pin-ease),
    border-color 0.35s ease,
    background 0.35s ease;
}

.moment-card::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  background: linear-gradient(125deg, rgba(255, 180, 216, 0.38), rgba(255, 255, 255, 0) 36%, rgba(240, 104, 169, 0.2));
  opacity: 0.4;
  z-index: -2;
  transition: opacity 0.35s ease;
}

.moment-card::after {
  content: "";
  position: absolute;
  width: 120px;
  height: 120px;
  top: -56px;
  left: -42px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.78), rgba(255, 255, 255, 0));
  opacity: 0.55;
  filter: blur(1px);
  z-index: -1;
  transition: transform 0.45s var(--pin-ease), opacity 0.35s ease;
}

.moment-card:hover {
  transform: translateY(-10px) rotateX(4deg) scale(1.02);
  box-shadow: 0 26px 44px rgba(233, 30, 140, 0.2);
  border-color: rgba(233, 30, 140, 0.3);
}

.moment-card:hover::before {
  opacity: 0.72;
}

.moment-card:hover::after {
  transform: translate3d(10px, 8px, 0) scale(1.08);
  opacity: 0.75;
}

.moment-card__media {
  position: relative;
  height: 145px;
  border-radius: 14px;
  margin-bottom: 10px;
  background-image: url("home-occasions-ref.png");
  background-size: cover;
  background-repeat: no-repeat;
  box-shadow: 0 10px 24px rgba(233, 30, 140, 0.2);
  transition: transform 0.45s var(--pin-ease), filter 0.35s ease, box-shadow 0.35s ease;
}

.moment-card__media::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 46%, rgba(88, 31, 52, 0.22) 100%);
  opacity: 0.72;
  transition: opacity 0.3s ease;
}

.moment-card:hover .moment-card__media {
  transform: translateY(-2px) scale(1.035);
  filter: saturate(1.1) contrast(1.03);
  box-shadow: 0 16px 32px rgba(233, 30, 140, 0.28);
}

.moment-card:hover .moment-card__media::after {
  opacity: 0.5;
}

.moment-card__media--1 { background-position: 0% 18%; }
.moment-card__media--2 { background-position: 14% 22%; }
.moment-card__media--3 { background-position: 30% 28%; }
.moment-card__media--4 { background-position: 48% 26%; }
.moment-card__media--5 { background-position: 62% 68%; }
.moment-card__media--6 { background-position: 77% 66%; }
.moment-card__media--7 { background-position: 88% 66%; }
.moment-card__media--8 { background-position: 100% 68%; }

.moment-card h3 {
  margin: 0 0 6px;
  font-size: 1.08rem;
  font-weight: 800;
  color: #8e1f59;
  letter-spacing: -0.01em;
  transition: color 0.25s ease, transform 0.35s var(--pin-ease);
}

.moment-card p {
  margin: 0;
  color: #7e4a59;
  font-size: 0.88rem;
  font-weight: 600;
  line-height: 1.75;
  transition: color 0.3s ease;
}

.moment-card:hover h3 {
  color: #c12772;
  transform: translateY(-1px);
}

.moment-card:hover p {
  color: #6d3d4c;
}

.home-moments__grid .moment-card:nth-child(1) { animation-delay: 0.03s; }
.home-moments__grid .moment-card:nth-child(2) { animation-delay: 0.08s; }
.home-moments__grid .moment-card:nth-child(3) { animation-delay: 0.13s; }
.home-moments__grid .moment-card:nth-child(4) { animation-delay: 0.18s; }
.home-moments__grid .moment-card:nth-child(5) { animation-delay: 0.23s; }
.home-moments__grid .moment-card:nth-child(6) { animation-delay: 0.28s; }
.home-moments__grid .moment-card:nth-child(7) { animation-delay: 0.33s; }
.home-moments__grid .moment-card:nth-child(8) { animation-delay: 0.38s; }

@keyframes momentCardIn {
  0% {
    opacity: 0;
    transform: translateY(18px) scale(0.96);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@media (prefers-reduced-motion: reduce) {
  .moment-card {
    animation: none;
    opacity: 1;
    transform: none;
    transition: none;
  }

  .moment-card:hover,
  .moment-card:hover .moment-card__media,
  .moment-card:hover h3 {
    transform: none;
  }
}

.home-showcase-carousel {
  width: 100%;
  padding: clamp(28px, 4vw, 56px) 0 clamp(34px, 4.2vw, 58px);
  background:
    radial-gradient(circle at 8% 14%, rgba(255, 233, 245, 0.85), rgba(255, 233, 245, 0) 36%),
    radial-gradient(circle at 92% 82%, rgba(255, 219, 237, 0.6), rgba(255, 219, 237, 0) 38%),
    linear-gradient(180deg, #fff7fb 0%, #fff1f8 48%, #fff6fb 100%);
}

.home-showcase-carousel__inner {
  width: min(1240px, 94%);
  margin: 0 auto;
}

.home-showcase-carousel__head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 16px;
}

.home-showcase-carousel__badge {
  display: inline-flex;
  padding: 8px 14px;
  border-radius: var(--radius-pill);
  background: #ffe9f4;
  color: #be2f72;
  font-size: 0.84rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.home-showcase-carousel__title {
  font-size: clamp(1.65rem, 3.4vw, 2.6rem);
  line-height: 1.2;
  margin-bottom: 8px;
}

.home-showcase-carousel__intro {
  color: #764554;
  line-height: 1.85;
  max-width: 56ch;
}

.home-showcase-carousel__nav {
  display: flex;
  gap: 8px;
  flex-shrink: 0;
}

.home-showcase-carousel__btn {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1px solid rgba(233, 30, 140, 0.22);
  background: rgba(255, 255, 255, 0.92);
  color: #a72868;
  font-size: 1.2rem;
  cursor: pointer;
  box-shadow: 0 8px 18px rgba(233, 30, 140, 0.14);
  transition: transform 0.25s var(--pin-ease), background 0.25s ease;
}

.home-showcase-carousel__btn:hover {
  transform: translateY(-2px);
  background: #fff;
}

.home-showcase-carousel__track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: calc((100% - 42px) / 4);
  gap: 14px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: 8px;
}

.home-showcase-carousel__track::-webkit-scrollbar {
  height: 8px;
}

.home-showcase-carousel__track::-webkit-scrollbar-thumb {
  background: rgba(233, 30, 140, 0.24);
  border-radius: 999px;
}

.showcase-card {
  scroll-snap-align: start;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.95), rgba(255, 245, 250, 0.92));
  border: 1px solid rgba(233, 30, 140, 0.16);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 12px 30px rgba(233, 30, 140, 0.14);
  transition: transform 0.35s var(--pin-ease), box-shadow 0.35s var(--pin-ease);
}

.showcase-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 36px rgba(233, 30, 140, 0.2);
}

.showcase-card__media {
  height: 210px;
  overflow: hidden;
  background: #fff4fa;
}

.showcase-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.45s var(--pin-ease);
}

.showcase-card:hover .showcase-card__media img {
  transform: scale(1.06);
}

.showcase-card__body {
  padding: 14px 14px 16px;
}

.showcase-card__tag {
  display: inline-flex;
  padding: 5px 11px;
  border-radius: var(--radius-pill);
  background: #ffe9f4;
  color: #b92f70;
  font-size: 0.74rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.showcase-card h3 {
  font-size: 1.02rem;
  margin-bottom: 6px;
}

.showcase-card p {
  color: var(--text-muted);
  font-size: 0.84rem;
  line-height: 1.8;
}

.showcase-card__link {
  display: inline-flex;
  margin-top: 10px;
  font-size: 0.84rem;
  font-weight: 700;
  color: #b12e6d;
}

.showcase-card__link:hover {
  color: #8f2358;
}

.home-about-pastel {
  width: 100%;
  padding: clamp(34px, 4vw, 56px) 0;
  background: linear-gradient(180deg, #fff7fb 0%, #fffafb 100%);
}

.home-about-pastel__inner {
  width: min(1240px, 94%);
  margin: 0 auto;
}

.home-about-pastel__head {
  text-align: center;
  max-width: 74ch;
  margin: 0 auto clamp(20px, 3vw, 28px);
}

.home-about-pastel__badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 14px;
  border-radius: var(--radius-pill);
  background: #ffeaf3;
  color: #c92777;
  font-size: 0.84rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.home-about-pastel__head h2 {
  font-size: clamp(1.7rem, 3.4vw, 2.8rem);
  margin-bottom: 8px;
}

.home-about-pastel__head h2 em {
  color: var(--pink-accent);
  font-style: normal;
}

.home-about-pastel__head p {
  color: var(--text-muted);
  line-height: 1.9;
}

.home-about-pastel__kpis {
  margin-top: 14px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

.home-about-pastel__kpi {
  padding: 12px 10px;
  border-radius: 16px;
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.95), rgba(255, 240, 248, 0.86));
  border: 1px solid rgba(233, 30, 140, 0.16);
  box-shadow: 0 8px 22px rgba(233, 30, 140, 0.12);
  text-align: center;
}

.home-about-pastel__kpi strong {
  display: inline-flex;
  align-items: baseline;
  justify-content: center;
  gap: 2px;
  font-size: clamp(1.25rem, 2.6vw, 1.75rem);
  line-height: 1.2;
  color: #b5296d;
}

.home-about-pastel__kpi p {
  margin: 6px 0 0;
  font-size: 0.82rem;
  font-weight: 700;
  color: #7b4a59;
}

.home-about-pastel__grid {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: clamp(16px, 2.5vw, 30px);
  align-items: stretch;
}

.home-about-pastel__copy {
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(233, 30, 140, 0.14);
  border-radius: 24px;
  padding: clamp(20px, 3vw, 30px);
}

.home-about-pastel__copy h3 {
  font-size: clamp(1.15rem, 2.4vw, 1.55rem);
  margin-bottom: 10px;
}

.home-about-pastel__copy p {
  color: var(--text-muted);
  line-height: 1.9;
  margin-bottom: 16px;
}

.home-about-pastel__bullets {
  display: grid;
  gap: 10px;
}

.home-about-pastel__bullet {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 12px;
  padding: 10px 14px;
  border-radius: 14px;
  background: #fff9fc;
  border: 1px solid rgba(233, 30, 140, 0.16);
}

.home-about-pastel__bullet strong {
  color: #9b245d;
  font-size: 0.9rem;
}

.home-about-pastel__bullet span {
  color: var(--text-muted);
  font-size: 0.84rem;
}

.home-about-pastel__visual-stack {
  display: grid;
  gap: 12px;
  grid-template-columns: 0.9fr 1fr;
  grid-template-areas:
    "top main"
    "left main"
    "bottom main";
}

.about-main-box {
  grid-area: main;
  border-radius: 24px;
  overflow: hidden;
  min-height: 420px;
  border: 1px solid rgba(233, 30, 140, 0.22);
  box-shadow: 0 18px 44px rgba(233, 30, 140, 0.16);
}

.about-main-box img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
  display: block;
}

.about-mini-box {
  display: grid;
  place-items: center;
  text-align: center;
  border-radius: 18px;
  border: 1px solid rgba(233, 30, 140, 0.18);
  background: linear-gradient(145deg, #fff, #fff3f9);
  color: #a62666;
  font-weight: 700;
  box-shadow: 0 10px 24px rgba(233, 30, 140, 0.12);
  min-height: 120px;
  padding: 10px;
}

.about-mini-box--top { grid-area: top; }
.about-mini-box--left { grid-area: left; }
.about-mini-box--bottom { grid-area: bottom; }

.home-masonry {
  width: 100%;
  padding: clamp(26px, 4vw, 50px) 0;
  background: linear-gradient(180deg, #fff9fc 0%, #fff5fa 100%);
}

.home-masonry__inner {
  width: min(1240px, 94%);
  margin: 0 auto;
}

.home-masonry__head {
  margin-bottom: 16px;
  text-align: center;
}

.home-masonry__badge {
  display: inline-flex;
  padding: 8px 14px;
  border-radius: var(--radius-pill);
  background: #ffeef5;
  color: #c92777;
  font-size: 0.84rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.home-masonry__title {
  font-size: clamp(1.5rem, 3.1vw, 2.4rem);
}

.home-masonry__grid {
  column-count: 3;
  column-gap: 14px;
}

.home-masonry__item {
  break-inside: avoid;
  margin-bottom: 14px;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(233, 30, 140, 0.12);
  background: #fff;
  box-shadow: 0 12px 30px rgba(233, 30, 140, 0.12);
}

.home-masonry__item img {
  width: 100%;
  display: block;
  object-fit: cover;
}

.home-masonry__item--lg img {
  min-height: 420px;
}

.home-masonry__item--sm img {
  min-height: 210px;
}

.home-ajax-products {
  width: 100vw;
  position: relative;
  isolation: isolate;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  padding: clamp(30px, 4.5vw, 58px) 0 clamp(34px, 4.8vw, 62px);
  background-color: #fdf0f7;
  background-image:
    linear-gradient(180deg, rgba(253, 240, 247, 0.84), rgba(252, 231, 243, 0.8) 52%, rgba(255, 243, 250, 0.86)),
    url("products-soft-bg-full.png");
  background-size: 100% auto;
  background-position: top center;
  background-repeat: no-repeat;
}

.home-ajax-products::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: radial-gradient(circle at 12% 18%, rgba(255, 255, 255, 0.42), rgba(255, 255, 255, 0) 42%);
  pointer-events: none;
}

.home-ajax-products__inner {
  width: min(1240px, 94%);
  margin: 0 auto;
}

.home-ajax-products__head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 16px;
}

.home-ajax-products__badge {
  display: inline-flex;
  padding: 8px 14px;
  border-radius: var(--radius-pill);
  background: #ffeaf3;
  color: #c92777;
  font-size: 0.84rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.home-ajax-products__title {
  font-size: clamp(1.62rem, 3.35vw, 2.75rem);
  margin: 0 0 7px;
  line-height: 1.2;
}

.home-ajax-products__intro {
  max-width: 58ch;
  color: #734353;
  line-height: 1.85;
}

.home-ajax-products__nav {
  display: flex;
  gap: 8px;
}

.home-ajax-products__btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(233, 30, 140, 0.24);
  background: rgba(255, 255, 255, 0.9);
  color: #a72868;
  font-size: 1.12rem;
  cursor: pointer;
  box-shadow: 0 8px 18px rgba(233, 30, 140, 0.12);
  transition: transform 0.24s var(--pin-ease), background 0.24s ease;
}

.home-ajax-products__btn:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.98);
}

.home-ajax-products__categories {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 16px;
}

.home-ajax-products__cat {
  border: 1px solid rgba(233, 30, 140, 0.22);
  background: rgba(255, 255, 255, 0.82);
  color: #7d3a52;
  border-radius: var(--radius-pill);
  padding: 10px 16px;
  font-family: inherit;
  font-size: 0.85rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s ease;
}

.home-ajax-products__cat:hover {
  border-color: rgba(233, 30, 140, 0.4);
}

.home-ajax-products__cat.is-active {
  background: linear-gradient(135deg, #df4f96, #b93272);
  color: #fff;
  border-color: transparent;
}

.home-ajax-products__loading {
  font-size: 0.88rem;
  color: #9e2d67;
  margin-bottom: 11px;
  font-weight: 700;
}

.home-ajax-products__track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(230px, 1fr);
  gap: 14px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: 10px;
}

.home-ajax-products__track::-webkit-scrollbar {
  height: 8px;
}

.home-ajax-products__track::-webkit-scrollbar-thumb {
  background: rgba(233, 30, 140, 0.24);
  border-radius: 999px;
}

.ajax-product-card {
  scroll-snap-align: start;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(255, 246, 251, 0.92));
  border: 1px solid rgba(233, 30, 140, 0.18);
  border-radius: 20px;
  padding: 12px 12px 16px;
  box-shadow: 0 14px 30px rgba(233, 30, 140, 0.15);
}

.ajax-product-card__image {
  height: 180px;
  border-radius: 14px;
  background-size: cover;
  background-position: center;
  margin-bottom: 10px;
}

.ajax-product-card__cat {
  font-size: 0.75rem;
  color: #ab2f6d;
  margin-bottom: 5px;
  font-weight: 700;
}

.ajax-product-card h3 {
  font-size: 1rem;
  margin: 0 0 4px;
}

.ajax-product-card p {
  margin: 0 0 10px;
  color: var(--text-muted);
  font-size: 0.84rem;
}

.ajax-product-card strong {
  display: block;
  margin-bottom: 10px;
  color: #a72868;
}

.home-ajax-products__empty {
  display: grid;
  place-items: center;
  min-height: 180px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px dashed rgba(233, 30, 140, 0.24);
  border-radius: 20px;
  color: #8a5466;
}

.home-faq-rules {
  width: 100%;
  padding: clamp(30px, 4vw, 56px) 0 clamp(40px, 5vw, 64px);
  background: linear-gradient(180deg, #fff8fb 0%, #fffdfb 100%);
}

.home-faq-rules__inner {
  width: min(1240px, 94%);
  margin: 0 auto;
}

.home-faq-rules__head {
  text-align: center;
  margin-bottom: 16px;
}

.home-faq-rules__badge {
  display: inline-flex;
  padding: 8px 14px;
  border-radius: var(--radius-pill);
  background: #fff0f7;
  color: #be2f72;
  font-size: 0.84rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.home-faq-rules__title {
  font-size: clamp(1.45rem, 3vw, 2.3rem);
}

.home-faq-rules__grid {
  display: grid;
  grid-template-columns: 1.25fr 0.95fr;
  gap: 16px;
}

.home-faq-rules__faqs {
  display: grid;
  gap: 10px;
}

.faq-card {
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(233, 30, 140, 0.14);
  border-radius: 16px;
  padding: 14px;
}

.faq-card summary {
  cursor: pointer;
  font-weight: 700;
  color: #733949;
  list-style: none;
}

.faq-card summary::-webkit-details-marker {
  display: none;
}

.faq-card p {
  margin-top: 8px;
  color: var(--text-muted);
  line-height: 1.85;
  font-size: 0.9rem;
}

.home-faq-rules__rules {
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(233, 30, 140, 0.16);
  border-radius: 18px;
  padding: 16px;
  display: grid;
  gap: 10px;
}

.home-faq-rules__rules h3 {
  margin: 0 0 10px;
  font-size: 1.15rem;
}

.home-faq-rules__rules .rules-card {
  margin: 0;
  background: rgba(255, 250, 253, 0.95);
  border-color: rgba(233, 30, 140, 0.18);
}

.home-faq-rules__rules .rules-card summary {
  font-size: 0.93rem;
}

.home-faq-rules__rules .rules-card p {
  margin-top: 7px;
  font-size: 0.88rem;
}

.home-happy-moments {
  width: 100%;
  padding: clamp(34px, 4.2vw, 60px) 0 clamp(42px, 5vw, 66px);
  background:
    radial-gradient(circle at 9% 20%, rgba(255, 229, 241, 0.85), rgba(255, 229, 241, 0) 40%),
    radial-gradient(circle at 90% 75%, rgba(255, 214, 233, 0.65), rgba(255, 214, 233, 0) 40%),
    linear-gradient(180deg, #fff7fb 0%, #fff2f8 46%, #fff9fc 100%);
}

.home-happy-moments__inner {
  width: min(1240px, 94%);
  margin: 0 auto;
}

.home-happy-moments__head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 16px;
}

.home-happy-moments__badge {
  display: inline-flex;
  padding: 8px 14px;
  border-radius: var(--radius-pill);
  background: #ffeaf3;
  color: #c92777;
  font-size: 0.84rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.home-happy-moments__title {
  font-size: clamp(1.6rem, 3.25vw, 2.55rem);
  margin: 0 0 6px;
  line-height: 1.2;
}

.home-happy-moments__intro {
  max-width: 58ch;
  color: #704253;
  line-height: 1.85;
}

.home-happy-moments__nav {
  display: flex;
  gap: 8px;
}

.home-happy-moments__btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(233, 30, 140, 0.24);
  background: rgba(255, 255, 255, 0.92);
  color: #a72868;
  font-size: 1.12rem;
  cursor: pointer;
  box-shadow: 0 8px 18px rgba(233, 30, 140, 0.12);
  transition: transform 0.24s var(--pin-ease), background 0.24s ease;
}

.home-happy-moments__btn:hover {
  transform: translateY(-2px);
  background: #fff;
}

.home-happy-moments__track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: calc((100% - 28px) / 3);
  gap: 14px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: 8px;
}

.home-happy-moments__track::-webkit-scrollbar {
  height: 8px;
}

.home-happy-moments__track::-webkit-scrollbar-thumb {
  background: rgba(233, 30, 140, 0.24);
  border-radius: 999px;
}

.happy-moment-card {
  position: relative;
  scroll-snap-align: start;
  border-radius: 20px;
  padding: 18px 16px 16px;
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.95), rgba(255, 244, 250, 0.9));
  border: 1px solid rgba(233, 30, 140, 0.15);
  box-shadow: 0 12px 30px rgba(233, 30, 140, 0.14);
  transition: transform 0.35s var(--pin-ease), box-shadow 0.35s var(--pin-ease);
}

.happy-moment-card::before {
  content: "❝";
  position: absolute;
  top: 8px;
  inset-inline-start: 12px;
  font-size: 1.5rem;
  color: rgba(201, 39, 119, 0.35);
}

.happy-moment-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 38px rgba(233, 30, 140, 0.2);
}

.happy-moment-card__quote {
  margin: 0 0 14px;
  padding-top: 12px;
  color: #653a49;
  line-height: 1.95;
  font-size: 0.9rem;
}

.happy-moment-card__meta {
  display: grid;
  gap: 2px;
}

.happy-moment-card__meta strong {
  font-size: 0.92rem;
  color: #8f2459;
}

.happy-moment-card__meta span {
  font-size: 0.8rem;
  color: #9d687a;
}

.home-main {
  position: relative;
  overflow: clip;
  isolation: isolate;
}

.home-main > section {
  position: relative;
  z-index: 2;
}

.section-hearts {
  position: absolute;
  inset: 0;
  z-index: 4;
  pointer-events: none;
  overflow: hidden;
}

.section-hearts span {
  position: absolute;
  width: 8px;
  height: 8px;
  background: linear-gradient(145deg, #ffb8d8, #f067a9);
  transform: rotate(45deg);
  border-radius: 2px;
  box-shadow: 0 0 8px rgba(255, 123, 179, 0.4);
  opacity: 0;
  animation: tinyHeartFloat 7s linear infinite;
}

.section-hearts span::before,
.section-hearts span::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: inherit;
  border-radius: 50%;
}

.section-hearts span::before {
  top: -50%;
  left: 0;
}

.section-hearts span::after {
  left: -50%;
  top: 0;
}

.section-hearts span:nth-child(3n) {
  width: 7px;
  height: 7px;
}

.section-hearts span:nth-child(4n) {
  width: 6px;
  height: 6px;
}

.section-hearts span:nth-child(1) { left: 4%; top: 14%; animation-delay: -0.4s; animation-duration: 7.4s; }
.section-hearts span:nth-child(2) { left: 12%; top: 35%; animation-delay: -2.1s; animation-duration: 6.8s; }
.section-hearts span:nth-child(3) { left: 18%; top: 68%; animation-delay: -3.2s; animation-duration: 8.1s; }
.section-hearts span:nth-child(4) { left: 26%; top: 22%; animation-delay: -1.5s; animation-duration: 7.2s; }
.section-hearts span:nth-child(5) { left: 33%; top: 52%; animation-delay: -4.4s; animation-duration: 6.7s; }
.section-hearts span:nth-child(6) { left: 39%; top: 80%; animation-delay: -2.8s; animation-duration: 8.5s; }
.section-hearts span:nth-child(7) { left: 48%; top: 30%; animation-delay: -3.6s; animation-duration: 7.1s; }
.section-hearts span:nth-child(8) { left: 53%; top: 58%; animation-delay: -0.8s; animation-duration: 6.6s; }
.section-hearts span:nth-child(9) { left: 59%; top: 18%; animation-delay: -4.9s; animation-duration: 8s; }
.section-hearts span:nth-child(10) { left: 64%; top: 73%; animation-delay: -1.9s; animation-duration: 7.8s; }
.section-hearts span:nth-child(11) { left: 71%; top: 42%; animation-delay: -2.5s; animation-duration: 7.3s; }
.section-hearts span:nth-child(12) { left: 76%; top: 86%; animation-delay: -5.1s; animation-duration: 8.3s; }
.section-hearts span:nth-child(13) { left: 82%; top: 26%; animation-delay: -3.8s; animation-duration: 7.5s; }
.section-hearts span:nth-child(14) { left: 86%; top: 62%; animation-delay: -1.3s; animation-duration: 6.9s; }
.section-hearts span:nth-child(15) { left: 90%; top: 46%; animation-delay: -4.2s; animation-duration: 8.4s; }
.section-hearts span:nth-child(16) { left: 7%; top: 88%; animation-delay: -5.5s; animation-duration: 7.9s; }
.section-hearts span:nth-child(17) { left: 44%; top: 8%; animation-delay: -2.7s; animation-duration: 7s; }
.section-hearts span:nth-child(18) { left: 95%; top: 78%; animation-delay: -3.4s; animation-duration: 8.6s; }

@keyframes tinyHeartFloat {
  0% {
    transform: translate3d(0, 4px, 0) scale(0.75);
    opacity: 0;
  }
  20% {
    opacity: 0.48;
  }
  70% {
    opacity: 0.2;
  }
  100% {
    transform: translate3d(0, -18px, 0) scale(1.15);
    opacity: 0;
  }
}

/* آرشیو */
.shop-archive {
  max-width: min(1360px, 100%);
  margin: 0 auto;
  padding: 0 clamp(18px, 3vw, 48px) clamp(56px, 6vw, 80px);
}

.shop-toolbar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: clamp(24px, 3vw, 36px);
}

.shop-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.shop-filter {
  padding: 10px 18px;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(233, 30, 140, 0.2);
  background: rgba(255, 255, 255, 0.7);
  font-family: inherit;
  font-size: 0.86rem;
  font-weight: 600;
  color: var(--chocolate);
  cursor: pointer;
  transition: background 0.25s, border-color 0.25s, color 0.25s;
}

.shop-filter:hover {
  border-color: rgba(233, 30, 140, 0.4);
}

.shop-filter.is-active {
  background: linear-gradient(135deg, var(--pink-accent), var(--pink-deep));
  border-color: transparent;
  color: var(--white);
}

.shop-count {
  font-size: 0.88rem;
  color: var(--text-muted);
}

.shop-archive-search {
  display: flex;
  max-width: 360px;
  margin-bottom: 24px;
  padding: 4px 4px 4px 16px;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(233, 30, 140, 0.18);
  background: rgba(255, 255, 255, 0.85);
}

.shop-archive-search input {
  flex: 1;
  border: none;
  background: transparent;
  font-family: inherit;
  font-size: 0.92rem;
  padding: 10px 8px;
  outline: none;
  min-width: 0;
}

.shop-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(16px, 2vw, 24px);
}

/* کارت محصول */
.product-card {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.98);
  box-shadow: var(--shadow-card);
  overflow: hidden;
  transition: transform 0.5s var(--pin-ease), box-shadow 0.5s var(--pin-ease);
}

.product-card:hover {
  transform: translateY(-7px) scale(1.02);
  box-shadow: 0 24px 58px rgba(78, 52, 46, 0.13);
}

.product-card__link {
  display: flex;
  flex-direction: column;
  flex: 1;
  color: inherit;
}

.product-card__media {
  position: relative;
  aspect-ratio: 1;
  background: linear-gradient(145deg, #fff5f9, #fce4ec);
}

.product-card__img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.7s var(--pin-ease);
}

.product-card:hover .product-card__img {
  transform: scale(1.06);
}

.product-card__img-el {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--pin-ease);
}

.product-card:hover .product-card__img-el {
  transform: scale(1.06);
}

.shop-category-copy {
  margin-top: 28px;
  padding-top: 8px;
}

.shop-category-copy__inner {
  background: linear-gradient(135deg, #fff9fc, #fffdfb);
  border: 1px solid rgba(194, 24, 91, 0.12);
  border-radius: 18px;
  padding: 22px 24px;
  max-width: 820px;
}

.shop-category-copy__title {
  margin: 0 0 10px;
  font-size: 1.15rem;
  color: var(--chocolate, #4e342e);
}

.shop-category-copy__text {
  margin: 0;
  line-height: 1.9;
  color: rgba(62, 39, 35, 0.82);
  font-size: 0.95rem;
}

.product-card__badge {
  position: absolute;
  top: 10px;
  inset-inline-start: 10px;
  padding: 5px 10px;
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.92);
  font-size: 0.72rem;
  font-weight: 800;
  color: var(--pink-deep);
}

.product-card__body {
  padding: 16px 18px 18px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.product-card__cat {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--pink-accent);
  margin-bottom: 6px;
}

.product-card__title {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 6px;
  line-height: 1.35;
}

.product-card__desc {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.55;
  margin-bottom: 10px;
  flex: 1;
}

.product-card__price {
  font-size: 1.05rem;
  font-weight: 800;
  margin-bottom: 12px;
}

.product-card__price small {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--chocolate-light);
}

.product-card__add {
  width: 100%;
  padding: 12px;
  border: none;
  border-radius: 14px;
  font-family: inherit;
  font-size: 0.86rem;
  font-weight: 700;
  color: var(--white);
  cursor: pointer;
  background: linear-gradient(135deg, var(--pink-accent), var(--pink-deep));
  transition: filter 0.2s, transform 0.2s;
}

.product-card__add:hover {
  filter: brightness(1.05);
  transform: translateY(-1px);
}

.shop-empty {
  grid-column: 1 / -1;
  text-align: center;
  padding: 48px 20px;
  color: var(--text-muted);
}

/* صفحه تک‌محصول */
#productSingle {
  width: 100%;
}

.product-single {
  width: 100%;
  max-width: min(1140px, 100%);
  margin: 0 auto;
  padding: clamp(8px, 2vw, 16px) clamp(18px, 3vw, 40px) clamp(48px, 5vw, 72px);
}

.product-single__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
  gap: clamp(32px, 4.5vw, 56px);
  align-items: start;
}

.product-single__media {
  min-width: 0;
}

.product-single__aside {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: clamp(20px, 2.5vw, 28px);
}

.product-gallery {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--white);
  box-shadow: var(--shadow-card);
  border: 1px solid rgba(255, 255, 255, 0.95);
}

@media (min-width: 901px) {
  .product-single__media .product-gallery {
    position: sticky;
    top: calc(var(--nav-height) + 24px);
  }
}

.product-gallery__main {
  width: 100%;
  aspect-ratio: 1;
  min-height: 280px;
  max-height: min(520px, 52vh);
  background: #fff;
}

.product-gallery__main-img,
.product-gallery__main-fallback {
  width: 100%;
  height: 100%;
  display: block;
}

.product-gallery__main-img {
  object-fit: cover;
  object-position: center;
}

.product-gallery__main-fallback {
  background-size: cover;
  background-position: center;
}

.product-gallery__badge {
  position: absolute;
  top: 16px;
  inset-inline-start: 16px;
  padding: 8px 14px;
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.94);
  font-weight: 800;
  font-size: 0.8rem;
  color: var(--pink-deep);
}

.product-info {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.product-info__cat {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--pink-accent);
}

.product-info__cat a:hover {
  color: var(--pink-deep);
}

.product-info__title {
  font-family: "IRANSansXFaNum", system-ui, sans-serif;
  font-size: clamp(1.65rem, 2.8vw, 2.25rem);
  font-weight: 700;
  line-height: 1.22;
  letter-spacing: -0.02em;
  max-width: 18ch;
}

.product-info__desc {
  font-size: 0.98rem;
  line-height: 1.85;
  color: var(--text-muted);
  max-width: 48ch;
}

.product-purchase {
  padding: clamp(18px, 2.5vw, 24px);
  border-radius: var(--radius-md);
  background: var(--white);
  border: 1px solid rgba(233, 30, 140, 0.1);
  box-shadow: 0 12px 40px rgba(78, 52, 46, 0.06);
}

.product-purchase__row {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  gap: 16px 20px;
  margin-top: 16px;
}

.product-info__price {
  font-size: clamp(1.45rem, 2.5vw, 1.9rem);
  font-weight: 800;
  margin: 0;
}

.product-info__price small {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--chocolate-light);
}

.product-qty {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  flex: 0 0 auto;
}

.product-qty__label {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--chocolate-light);
}

.product-qty__ctrl {
  display: flex;
  align-items: center;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(78, 52, 46, 0.12);
  background: var(--white);
  overflow: hidden;
}

.product-qty__btn {
  width: 44px;
  height: 44px;
  border: none;
  background: transparent;
  font-size: 1.2rem;
  cursor: pointer;
  color: var(--chocolate);
}

.product-qty__btn:hover {
  background: var(--pink-soft);
}

.product-qty__val {
  min-width: 40px;
  text-align: center;
  font-weight: 700;
}

.product-actions {
  display: flex;
  flex: 1 1 220px;
  flex-direction: column;
  gap: 10px;
  min-width: min(100%, 220px);
}

.product-btn {
  width: 100%;
  min-width: 0;
  padding: 14px 22px;
  border-radius: var(--radius-pill);
  border: none;
  font-family: inherit;
  font-size: 0.95rem;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.3s var(--pin-ease), filter 0.3s;
}

.product-btn--primary {
  background: linear-gradient(135deg, var(--pink-accent), var(--pink-deep));
  color: var(--white);
  box-shadow: 0 10px 32px rgba(233, 30, 140, 0.28);
}

.product-btn--secondary {
  background: var(--white);
  color: var(--chocolate-dark);
  border: 1px solid rgba(78, 52, 46, 0.15);
}

.product-btn:hover {
  transform: translateY(-2px);
  filter: brightness(1.04);
}

.product-tabs {
  margin-top: clamp(28px, 4vw, 40px);
  padding: clamp(20px, 2.5vw, 28px);
  border-radius: var(--radius-md);
  background: var(--white);
  border: 1px solid rgba(78, 52, 46, 0.08);
  box-shadow: 0 8px 32px rgba(78, 52, 46, 0.05);
}

.product-tabs__nav {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 18px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(78, 52, 46, 0.08);
}

.product-tabs__btn {
  padding: 10px 18px;
  border: none;
  border-radius: var(--radius-pill);
  font-family: inherit;
  font-size: 0.88rem;
  font-weight: 700;
  cursor: pointer;
  background: transparent;
  color: var(--chocolate-light);
}

.product-tabs__btn.is-active {
  background: var(--pink-soft);
  color: var(--pink-deep);
}

.product-tabs__panel {
  font-size: 0.92rem;
  line-height: 1.85;
  color: var(--text-muted);
}

.product-tabs__panel[hidden] {
  display: none;
}

.product-hero-copy__eyebrow {
  margin: 0;
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--pink-deep);
}

.product-meta {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  width: 100%;
}

.product-meta__item {
  padding: 12px 14px;
  border-radius: var(--radius-sm);
  background: rgba(252, 228, 236, 0.35);
  border: 1px solid rgba(233, 30, 140, 0.1);
  font-size: 0.82rem;
}

.product-meta__item strong {
  display: block;
  font-size: 0.72rem;
  color: var(--chocolate-light);
  margin-bottom: 4px;
  font-weight: 600;
}

.product-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.product-highlights span {
  padding: 6px 12px;
  border-radius: var(--radius-pill);
  background: var(--white);
  border: 1px solid rgba(233, 30, 140, 0.15);
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--pink-deep);
}

.cart-drawer__item-thumb {
  background-size: cover;
  background-position: center;
}

@media (max-width: 900px) {
  .product-single__grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .product-gallery__main {
    max-height: min(400px, 70vw);
  }

  .product-info__title {
    max-width: none;
  }

  .product-purchase__row {
    flex-direction: column;
    align-items: stretch;
  }

  .product-actions {
    flex: 1 1 auto;
    min-width: 0;
  }
}

@media (max-width: 640px) {
  .product-meta {
    grid-template-columns: 1fr;
  }

  .product-single {
    padding-inline: 16px;
  }

  .signature-specs__row {
    grid-template-columns: 1fr;
    gap: 4px;
  }
}

.product-related {
  max-width: min(1360px, 100%);
  margin: 0 auto;
  padding: 0 clamp(18px, 3vw, 48px) clamp(56px, 6vw, 80px);
}

.product-related__title {
  font-size: 1.35rem;
  font-weight: 800;
  margin-bottom: 24px;
  text-align: center;
}

.product-not-found {
  text-align: center;
  padding: 80px 24px;
}

.product-not-found h1 {
  font-size: 1.5rem;
  margin-bottom: 16px;
}

.product-not-found a {
  display: inline-block;
  margin-top: 20px;
  padding: 12px 28px;
  border-radius: var(--radius-pill);
  background: linear-gradient(135deg, var(--pink-accent), var(--pink-deep));
  color: var(--white);
  font-weight: 700;
}

.signature-block {
  margin-top: clamp(24px, 3vw, 36px);
  padding: clamp(16px, 2vw, 24px);
  border-radius: var(--radius-md);
  border: 1px solid rgba(233, 30, 140, 0.16);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(252, 228, 236, 0.28));
}

.signature-block h2 {
  margin: 0 0 12px;
  font-size: clamp(1.12rem, 2vw, 1.4rem);
  color: var(--chocolate);
}

.signature-block p {
  margin: 0;
  line-height: 1.95;
  color: var(--text-muted);
}

.signature-specs {
  display: grid;
  gap: 8px;
}

.signature-specs__row {
  display: grid;
  grid-template-columns: minmax(120px, 160px) minmax(0, 1fr);
  gap: 10px;
  align-items: start;
  padding: 10px 12px;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(233, 30, 140, 0.1);
}

.signature-specs__row strong {
  font-size: 0.84rem;
  color: var(--pink-deep);
}

.signature-specs__row span {
  font-size: 0.9rem;
  color: var(--chocolate-dark);
}

.signature-layers {
  display: grid;
  gap: 10px;
}

.signature-layers__item {
  padding: 12px;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(233, 30, 140, 0.12);
  background: rgba(255, 255, 255, 0.86);
}

.signature-layers__item h4 {
  margin: 0 0 6px;
  color: var(--chocolate);
  font-size: 0.95rem;
}

.signature-layers__item p {
  margin: 0;
}

.signature-list {
  margin: 10px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 8px;
}

.signature-list li {
  position: relative;
  padding: 8px 34px 8px 10px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid rgba(233, 30, 140, 0.11);
  color: var(--chocolate-dark);
}

.signature-list li::before {
  content: "✓";
  position: absolute;
  inset-inline-start: 12px;
  top: 50%;
  transform: translateY(-50%);
  font-weight: 800;
  color: var(--pink-deep);
}

.signature-faq {
  display: grid;
  gap: 8px;
}

.signature-faq__item {
  border: 1px solid rgba(233, 30, 140, 0.12);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.86);
  padding: 10px 12px;
}

.signature-faq__item summary {
  cursor: pointer;
  font-weight: 700;
  color: var(--chocolate);
}

.signature-faq__item p {
  margin-top: 8px;
}

.signature-bottom-tagline {
  margin-top: 18px;
  font-weight: 700;
  color: var(--chocolate);
  text-align: center;
}

/* فوتر */
.site-footer {
  background: linear-gradient(165deg, #4a2f34 0%, #5a3842 55%, #6a4451 100%);
  color: rgba(255, 251, 245, 0.9);
  padding: clamp(48px, 5vw, 64px) clamp(18px, 3vw, 48px) 28px;
  border-top: 1px solid rgba(255, 214, 234, 0.2);
  border-top-left-radius: 26px;
  border-top-right-radius: 26px;
  box-shadow: 0 -10px 34px rgba(84, 42, 58, 0.16);
}

.site-footer__links a::before {
  content: "♥";
  font-size: 0.62rem;
  color: rgba(255, 186, 217, 0.95);
  margin-inline-end: 8px;
}

.site-footer__inner {
  max-width: min(1200px, 100%);
  margin: 0 auto;
}

.site-footer__top {
  display: grid;
  grid-template-columns: 1.2fr repeat(3, 1fr);
  gap: clamp(24px, 3vw, 40px);
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.site-footer__brand-name {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--white);
}

.site-footer__brand-tag {
  font-size: 0.82rem;
  color: rgba(248, 187, 217, 0.85);
  margin: 8px 0 12px;
}

.site-footer__about {
  max-width: 28ch;
  font-size: 0.84rem;
  line-height: 1.9;
  color: rgba(255, 251, 245, 0.76);
}

.site-footer__heading {
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 14px;
  color: var(--white);
}

.site-footer__links {
  list-style: none;
}

.site-footer__links a {
  display: block;
  padding: 5px 0;
  font-size: 0.88rem;
  color: rgba(255, 251, 245, 0.72);
  transition: color 0.2s;
}

.site-footer__links a:hover {
  color: var(--pink-mid);
}

.site-footer__social a {
  color: rgba(255, 233, 244, 0.9);
}

.site-footer__bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  padding-top: 24px;
  font-size: 0.82rem;
  color: rgba(255, 251, 245, 0.55);
}

@media (max-width: 1024px) {
  .shop-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

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

@media (max-width: 768px) {
  .shop-nav {
    flex-wrap: wrap;
    gap: 10px;
    padding: 10px max(12px, env(safe-area-inset-inline-end)) 10px
      max(12px, env(safe-area-inset-inline-start));
    align-items: center;
    min-height: 0;
  }

  .shop-nav__toggle {
    display: flex;
  }

  .shop-nav__brand {
    flex: 1;
    justify-content: center;
    display: flex;
    min-width: 0;
  }

  .shop-nav__icons {
    flex-shrink: 0;
    gap: 6px;
  }

  .shop-nav__logo {
    width: clamp(86px, 21vw, 112px);
    height: clamp(86px, 21vw, 112px);
  }

  .shop-nav__menu {
    order: 10;
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    padding-block: 0;
    justify-content: flex-start;
    flex-wrap: nowrap;
    border-top: 1px solid transparent;
    transition:
      max-height 0.4s var(--pin-ease-out),
      opacity 0.32s ease,
      visibility 0.32s,
      padding-block 0.35s ease;
  }

  .shop-nav.is-mobile-menu-open .shop-nav__menu {
    max-height: 320px;
    opacity: 1;
    visibility: visible;
    padding-block: 8px;
    gap: 4px;
    border-top-color: rgba(255, 255, 255, 0.58);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }

  .shop-nav__link {
    text-align: center;
    padding: 12px 10px;
    font-size: 0.93rem;
  }

  .shop-dropdown {
    position: fixed;
    top: auto;
    inset-inline-start: auto;
    inset-inline-end: auto;
    bottom: max(14px, env(safe-area-inset-bottom));
    left: max(12px, env(safe-area-inset-left));
    right: max(12px, env(safe-area-inset-right));
    width: auto;
    max-height: min(540px, 78vh);
    overflow-y: auto;
    overscroll-behavior: contain;
    transform: translateY(16px) scale(0.98);
    transform-origin: bottom center;
    z-index: 220;
  }

  .shop-dropdown.is-open {
    transform: translateY(0) scale(1);
  }

  .cart-drawer__panel {
    width: 100%;
    max-width: 100vw;
  }

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

  .shop-toolbar {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
  }

  .shop-filters {
    flex-wrap: nowrap;
    gap: 8px;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    padding-bottom: 6px;
    margin-inline: -2px;
    padding-inline: 2px;
  }

  .shop-filter {
    flex: 0 0 auto;
  }

  .shop-breadcrumb {
    padding-inline: max(14px, env(safe-area-inset-inline-start))
      max(14px, env(safe-area-inset-inline-end));
    font-size: 0.8rem;
  }

  .shop-hero,
  .shop-archive {
    padding-inline: max(14px, env(safe-area-inset-inline-start))
      max(14px, env(safe-area-inset-inline-end));
  }

  .shop-archive-search {
    max-width: none;
    width: 100%;
  }

  .shop-count {
    text-align: center;
    flex: none;
    width: 100%;
    order: 2;
  }
}

@media (max-width: 480px) {
  .shop-grid {
    grid-template-columns: 1fr;
  }

  .page-hero {
    padding-inline: max(14px, env(safe-area-inset-inline-start))
      max(14px, env(safe-area-inset-inline-end));
  }

  .page-content {
    padding-inline: max(14px, env(safe-area-inset-inline-start))
      max(14px, env(safe-area-inset-inline-end));
  }
}

/* صفحات استاتیک: درباره ما، تماس، تسویه */
.page-hero {
  max-width: min(1140px, 100%);
  margin: 0 auto;
  padding: clamp(16px, 3vw, 32px) clamp(18px, 3vw, 40px) clamp(28px, 4vw, 40px);
  text-align: center;
}

.page-hero--compact {
  padding-bottom: 16px;
}

.page-hero__badge {
  display: inline-flex;
  padding: 8px 16px;
  border-radius: var(--radius-pill);
  background: rgba(252, 228, 236, 0.75);
  color: var(--pink-deep);
  font-size: 0.82rem;
  font-weight: 700;
  margin-bottom: 14px;
}

.page-hero__title {
  font-family: "IRANSansXFaNum", system-ui, sans-serif;
  font-size: clamp(1.85rem, 4vw, 2.75rem);
  font-weight: 700;
  line-height: 1.2;
  color: var(--chocolate-dark);
  margin-bottom: 12px;
}

.page-hero__title em {
  font-style: italic;
  color: var(--pink-accent);
}

.page-hero__intro {
  max-width: 52ch;
  margin: 0 auto;
  font-size: 1rem;
  line-height: 1.85;
  color: var(--text-muted);
}

.page-content {
  max-width: min(1140px, 100%);
  margin: 0 auto;
  padding: 0 clamp(18px, 3vw, 40px) clamp(56px, 6vw, 80px);
}

.page-card {
  background: var(--white);
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.95);
  box-shadow: var(--shadow-card);
  padding: clamp(22px, 3vw, 32px);
}

.page-card h2 {
  font-size: 1.2rem;
  font-weight: 800;
  margin-bottom: 14px;
  color: var(--chocolate-dark);
}

.page-card p {
  font-size: 0.95rem;
  line-height: 1.85;
  color: var(--text-muted);
  margin-bottom: 12px;
}

.page-card p:last-child {
  margin-bottom: 0;
}

.page-about__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(24px, 3vw, 36px);
  align-items: stretch;
  margin-bottom: 28px;
}

.page-about__visual {
  min-height: 280px;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow-card);
}

.page-about__visual img {
  width: 100%;
  min-height: 280px;
  max-height: min(420px, 50vh);
  object-fit: cover;
  object-position: center;
  display: block;
}

.page-stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-bottom: 28px;
}

.page-stat {
  text-align: center;
  padding: 18px 12px;
  border-radius: var(--radius-sm);
  background: rgba(252, 228, 236, 0.45);
  border: 1px solid rgba(233, 30, 140, 0.1);
}

.page-stat strong {
  display: block;
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--pink-deep);
  margin-bottom: 4px;
}

.page-stat span {
  font-size: 0.82rem;
  color: var(--chocolate-light);
}

.page-list {
  list-style: none;
  margin: 0 0 20px;
}

.page-list li {
  padding: 12px 0;
  border-bottom: 1px solid rgba(78, 52, 46, 0.08);
  font-size: 0.92rem;
  line-height: 1.75;
  color: var(--text-muted);
}

.page-list li:last-child {
  border-bottom: none;
}

.page-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 8px;
}

.page-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  border-radius: var(--radius-pill);
  font-family: inherit;
  font-size: 0.92rem;
  font-weight: 700;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.3s var(--pin-ease), filter 0.3s;
}

.page-btn--primary {
  background: linear-gradient(135deg, var(--pink-accent), var(--pink-deep));
  color: var(--white);
  box-shadow: 0 8px 28px rgba(233, 30, 140, 0.25);
}

.page-btn--secondary {
  background: var(--white);
  color: var(--chocolate-dark);
  border: 1px solid rgba(78, 52, 46, 0.15);
}

.page-btn--full {
  width: 100%;
}

.page-btn:hover {
  transform: translateY(-2px);
  filter: brightness(1.04);
}

.page-contact__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(24px, 3vw, 32px);
  align-items: start;
}

.page-contact__list {
  list-style: none;
}

.page-contact__list li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 14px 0;
  border-bottom: 1px solid rgba(78, 52, 46, 0.08);
}

.page-contact__list li:last-child {
  border-bottom: none;
}

.page-contact__icon {
  font-size: 1.25rem;
  line-height: 1;
}

.page-contact__list strong {
  display: block;
  font-size: 0.82rem;
  color: var(--chocolate-light);
  margin-bottom: 4px;
}

.page-contact__list a {
  color: var(--pink-deep);
  font-weight: 600;
}

.page-form__row {
  display: grid;
  gap: 14px;
  margin-bottom: 14px;
}

.page-form__row--2 {
  grid-template-columns: 1fr 1fr;
}

.page-form__field {
  margin-bottom: 14px;
}

.page-form__field label {
  display: block;
  font-size: 0.86rem;
  font-weight: 600;
  margin-bottom: 6px;
  color: var(--chocolate);
}

.page-form__field .req {
  color: var(--pink-deep);
}

.page-form__field input,
.page-form__field select,
.page-form__field textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(78, 52, 46, 0.14);
  font-family: inherit;
  font-size: 0.92rem;
  background: var(--cream);
  color: var(--chocolate-dark);
  transition: border-color 0.2s, box-shadow 0.2s;
}

.page-form__field input:focus,
.page-form__field select:focus,
.page-form__field textarea:focus {
  outline: none;
  border-color: var(--pink-accent);
  box-shadow: 0 0 0 3px rgba(233, 30, 140, 0.12);
}

.page-form__hint {
  margin-top: 12px;
  font-size: 0.88rem;
  color: var(--text-muted);
}

.page-form__hint--ok {
  color: var(--pink-deep);
  font-weight: 600;
}

/* تسویه حساب */
.checkout-main {
  width: 100%;
}

.checkout-layout {
  max-width: min(1140px, 100%);
  margin: 0 auto;
  padding: 0 clamp(18px, 3vw, 40px) clamp(56px, 6vw, 80px);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 340px);
  gap: clamp(24px, 3vw, 32px);
  align-items: start;
}

.checkout-layout--simple {
  grid-template-columns: minmax(0, 1fr);
  max-width: min(860px, 100%);
}

.checkout-form {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.checkout-layout--simple .checkout-form {
  gap: 16px;
}

.checkout-section__title {
  font-size: 1.1rem;
  font-weight: 800;
  margin-bottom: 8px;
}

.checkout-section__intro {
  font-size: 0.88rem;
  line-height: 1.75;
  color: var(--text-muted);
  margin-bottom: 18px;
}

.checkout-items {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.checkout-item {
  display: grid;
  grid-template-columns: 88px minmax(0, 1fr);
  gap: 16px;
  padding: 16px;
  border-radius: var(--radius-sm);
  background: rgba(252, 228, 236, 0.25);
  border: 1px solid rgba(233, 30, 140, 0.1);
}

.checkout-item__thumb {
  width: 88px;
  height: 88px;
  border-radius: var(--radius-sm);
  background-size: cover;
  background-position: center;
}

.checkout-item__name {
  font-weight: 700;
  font-size: 0.95rem;
  margin-bottom: 4px;
}

.checkout-item__meta {
  font-size: 0.82rem;
  color: var(--chocolate-light);
  margin-bottom: 10px;
}

.checkout-item__note-label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--chocolate);
  margin-bottom: 6px;
}

.checkout-item__note {
  width: 100%;
  min-height: 72px;
  padding: 10px 12px;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(78, 52, 46, 0.14);
  font-family: inherit;
  font-size: 0.88rem;
  line-height: 1.6;
  resize: vertical;
  background: var(--white);
}

.checkout-item__note:focus {
  outline: none;
  border-color: var(--pink-accent);
  box-shadow: 0 0 0 3px rgba(233, 30, 140, 0.1);
}

.checkout-terms {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.86rem;
  line-height: 1.65;
  color: var(--text-muted);
  margin: 8px 0 16px;
  cursor: pointer;
}

.checkout-terms input {
  margin-top: 4px;
  flex-shrink: 0;
}

.checkout-terms a {
  color: var(--pink-deep);
  font-weight: 600;
}

.checkout-summary {
  position: sticky;
  top: calc(var(--nav-height) + 20px);
}

.checkout-summary__title {
  font-size: 1.05rem;
  font-weight: 800;
  margin-bottom: 16px;
}

.checkout-summary__list {
  list-style: none;
  margin: 0 0 16px;
  padding: 0 0 16px;
  border-bottom: 1px solid rgba(78, 52, 46, 0.08);
}

.checkout-summary__list li {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 8px 0;
  font-size: 0.86rem;
  color: var(--text-muted);
}

.checkout-summary__list strong {
  color: var(--chocolate-dark);
  font-weight: 700;
  white-space: nowrap;
}

.checkout-summary__row {
  display: flex;
  justify-content: space-between;
  padding: 6px 0;
  font-size: 0.9rem;
}

.checkout-summary__row--total {
  margin-top: 8px;
  padding-top: 12px;
  border-top: 1px dashed rgba(78, 52, 46, 0.15);
  font-size: 1rem;
  font-weight: 800;
}

.checkout-summary__note {
  margin-top: 14px;
  font-size: 0.78rem;
  line-height: 1.65;
  color: var(--chocolate-light);
}

.checkout-empty,
.checkout-success {
  max-width: min(560px, 100%);
  margin: 0 auto clamp(48px, 6vw, 72px);
  padding: clamp(18px, 3vw, 40px);
  text-align: center;
}

.checkout-success__icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 16px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--pink-accent), var(--pink-deep));
  color: var(--white);
  font-size: 1.5rem;
  font-weight: 800;
  display: grid;
  place-items: center;
}

.checkout-success__text {
  margin: 12px 0 20px;
  color: var(--text-muted);
}

@media (max-width: 900px) {
  .home-hero-split__inner {
    min-height: 78vh;
    border-radius: 20px;
    background-image: none;
  }

  .home-hero-split__content {
    width: 100%;
  }

  .home-trust-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-top: 14px;
  }

  .home-main .home-hero-split__inner,
  .home-main .home-trust-strip {
    border-radius: 0;
  }

  .home-main .home-hero-split {
    background-image: url("hero-choco.png");
    background-position: right top;
    background-size: 100% auto;
  }

  .home-page .home-main .home-hero-split {
    margin-top: -104px;
  }

  .site-top-drip {
    top: 0;
  }

  .shop-header-wrap {
    top: 30px;
  }

  .home-main .home-trust-strip {
    width: min(1180px, 94%);
    margin-top: -34px;
    border-radius: 18px;
  }

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

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

  .home-about-pastel__kpis {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .home-about-pastel__visual-stack {
    grid-template-columns: 1fr;
    grid-template-areas:
      "main"
      "top"
      "left"
      "bottom";
  }

  .about-main-box,
  .about-main-box img {
    min-height: 300px;
  }

  .home-masonry__grid {
    column-count: 2;
  }

  .home-ajax-products__head {
    flex-direction: column;
    align-items: stretch;
  }

  .home-happy-moments__head {
    flex-direction: column;
    align-items: stretch;
  }

  .home-happy-moments__track {
    grid-auto-columns: calc((100% - 14px) / 2);
  }

  .home-showcase-carousel__head {
    flex-direction: column;
    align-items: stretch;
  }

  .home-showcase-carousel__track {
    grid-auto-columns: calc((100% - 14px) / 2);
  }

  .home-ajax-products__track {
    grid-auto-columns: minmax(240px, 70vw);
  }

  .home-faq-rules__grid {
    grid-template-columns: 1fr;
  }

  .page-about__grid,
  .page-contact__grid,
  .checkout-layout {
    grid-template-columns: 1fr;
  }

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

  .checkout-summary {
    position: relative;
    top: auto;
  }

  .page-form__row--2 {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .home-trust-strip {
    grid-template-columns: 1fr;
  }

  .home-moments__grid {
    grid-template-columns: 1fr;
  }

  .home-masonry__grid {
    column-count: 1;
  }

  .home-happy-moments__track {
    grid-auto-columns: 100%;
  }

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

  .home-showcase-carousel__track {
    grid-auto-columns: 100%;
  }

  .page-stats {
    grid-template-columns: 1fr;
  }

  .checkout-item {
    grid-template-columns: 1fr;
  }

  .checkout-item__thumb {
    width: 100%;
    height: 120px;
  }
}

/* ——— مقالات ——— */
.articles-page__hero {
  margin-bottom: 8px;
}

.articles-page__inner,
.article-page__inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px 56px;
}

.articles-featured {
  margin-bottom: 28px;
}

.articles-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
  padding: 8px 0 16px;
}

.articles-grid--compact {
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 18px;
}

.articles-empty {
  text-align: center;
  padding: 48px 20px;
  color: rgba(62, 39, 35, 0.7);
  font-size: 1.05rem;
}

.article-card {
  display: flex;
  flex-direction: column;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(194, 24, 91, 0.1);
  background: #fff;
  text-decoration: none;
  color: inherit;
  box-shadow: 0 4px 18px rgba(78, 52, 46, 0.06);
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.article-card:hover {
  transform: translateY(-6px);
  border-color: rgba(194, 24, 91, 0.22);
  box-shadow: 0 16px 36px rgba(194, 24, 91, 0.14);
}

.article-card--featured {
  flex-direction: row;
  min-height: 280px;
}

.article-card--featured .article-card__media {
  flex: 1.1;
  min-height: 280px;
  height: auto;
}

.article-card--featured .article-card__body {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 28px 32px;
}

.article-card--featured .article-card__body h2 {
  font-size: 1.45rem;
}

.article-card--featured .article-card__excerpt {
  font-size: 1rem;
  -webkit-line-clamp: 4;
}

.article-card__media {
  height: 180px;
  background-size: cover;
  background-position: center;
  position: relative;
}

.article-card__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(78, 52, 46, 0.08));
  pointer-events: none;
}

.article-card__media--gradient::after {
  background: linear-gradient(180deg, transparent 40%, rgba(255, 255, 255, 0.15));
}

.article-card__body {
  padding: 18px 20px 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.article-card__badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--article-accent, #c2185b);
  background: var(--article-soft, #fce4ec);
  padding: 5px 12px;
  border-radius: 999px;
  width: fit-content;
}

.article-card__body h2 {
  margin: 12px 0 8px;
  font-size: 1.12rem;
  line-height: 1.45;
  color: #3e2723;
}

.article-card__excerpt {
  margin: 0 0 14px;
  font-size: 0.92rem;
  line-height: 1.65;
  color: rgba(62, 39, 35, 0.72);
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  flex: 1;
}

.article-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: auto;
  padding-top: 8px;
  border-top: 1px solid rgba(194, 24, 91, 0.08);
}

.article-card__meta {
  font-size: 0.8rem;
  color: rgba(62, 39, 35, 0.6);
}

.article-card__cta {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--article-accent, #c2185b);
}

.article-card:hover .article-card__cta i {
  transform: translateX(-4px);
}

.article-card__cta i {
  font-size: 1.2rem;
  transition: transform 0.2s ease;
}

/* صفحه تک مقاله */
.article-detail-page {
  background: linear-gradient(180deg, #fff9fc 0%, #fffdfb 42%, #fff6fb 100%);
}

.article-detail-page .article-page__inner {
  max-width: 860px;
  padding-top: 8px;
  padding-bottom: 64px;
}

.article-page__breadcrumb {
  margin: 0 0 20px;
  padding: 0;
}

.article-single {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.article-single__hero {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  min-height: clamp(220px, 42vw, 380px);
  box-shadow: 0 18px 48px rgba(78, 52, 46, 0.14);
}

.article-single__hero img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  display: block;
}

.article-single__hero-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(62, 39, 35, 0.05) 0%,
    rgba(62, 39, 35, 0.35) 55%,
    rgba(62, 39, 35, 0.78) 100%
  );
  pointer-events: none;
}

.article-single__hero-text {
  position: absolute;
  right: 0;
  left: 0;
  bottom: 0;
  padding: clamp(20px, 4vw, 36px);
  color: #fff;
  z-index: 1;
}

.article-single__hero-text h1 {
  margin: 12px 0 8px;
  font-size: clamp(1.35rem, 4vw, 2rem);
  line-height: 1.35;
  font-weight: 800;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.25);
}

.article-single__hero-text .article-single__badge {
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.25);
}

.article-single__hero-text .article-single__meta {
  color: rgba(255, 255, 255, 0.88);
  margin: 0;
}

.article-single__sheet {
  margin-top: -28px;
  position: relative;
  z-index: 2;
  background: #fff;
  border-radius: 24px;
  border: 1px solid rgba(194, 24, 91, 0.1);
  box-shadow: 0 12px 40px rgba(194, 24, 91, 0.08);
  padding: clamp(24px, 4vw, 40px) clamp(22px, 4vw, 44px);
}

.article-single:not(:has(.article-single__hero)) .article-single__sheet {
  margin-top: 0;
}

.article-single__head--plain {
  padding: 0 0 8px;
}

.article-single__head--plain h1 {
  margin: 14px 0 8px;
  font-size: clamp(1.45rem, 4vw, 2rem);
  line-height: 1.35;
  color: #3e2723;
}

.article-single__badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--article-soft, #fce4ec);
  color: var(--article-accent, #c2185b);
  padding: 6px 14px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.88rem;
}

.article-single__meta {
  font-size: 0.88rem;
  color: rgba(62, 39, 35, 0.55);
  margin: 0;
}

.article-single__lead {
  margin: 0 0 28px;
  padding: 16px 20px;
  border-radius: 16px;
  background: var(--article-soft, #fce4ec);
  border-right: 4px solid var(--article-accent, #c2185b);
  font-size: 1.06rem;
  line-height: 1.75;
  color: rgba(62, 39, 35, 0.85);
  font-weight: 500;
}

.article-single__content {
  line-height: 1.95;
  font-size: 1.03rem;
  color: #4e342e;
}

.article-not-found {
  text-align: center;
  padding: 64px 20px;
  background: #fff;
  border-radius: 20px;
  border: 1px solid rgba(194, 24, 91, 0.1);
}

.article-not-found h1 {
  margin-bottom: 12px;
}

.page-btn--soft {
  background: var(--article-soft, #fce4ec);
  color: var(--article-accent, #c2185b);
  border: 1px solid rgba(194, 24, 91, 0.15);
}

.article-block__p {
  margin: 0 0 1.1em;
}

.article-block__h {
  margin: 1.6em 0 0.6em;
  color: var(--article-accent, #c2185b);
  font-size: 1.2rem;
}

.article-block__ul {
  margin: 0 0 1.2em;
  padding-right: 1.4em;
}

.article-block__ul li {
  margin-bottom: 0.45em;
}

.article-single__foot {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 36px;
  padding-top: 24px;
  border-top: 1px dashed rgba(194, 24, 91, 0.18);
}

.article-single__back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  color: var(--article-accent, #c2185b);
  text-decoration: none;
}

.article-single__back:hover {
  text-decoration: underline;
}

.article-more {
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px dashed rgba(194, 24, 91, 0.15);
}

.article-more__title {
  margin: 0 0 20px;
  font-size: 1.25rem;
  color: #3e2723;
}

.article-block__tip {
  display: flex;
  gap: 12px;
  padding: 16px 18px;
  border-radius: 16px;
  background: var(--article-soft, #fce4ec);
  margin: 20px 0;
  border: 1px solid rgba(194, 24, 91, 0.1);
}

.article-block__tip i {
  font-size: 1.25rem;
  color: var(--article-accent, #c2185b);
  flex-shrink: 0;
}

.article-block__figure {
  margin: 24px 0;
}

.article-block__figure img {
  width: 100%;
  border-radius: 16px;
  display: block;
}

.article-block__figure figcaption {
  margin-top: 8px;
  font-size: 0.88rem;
  color: rgba(62, 39, 35, 0.6);
  text-align: center;
}

@media (max-width: 768px) {
  .article-card--featured {
    flex-direction: column;
    min-height: 0;
  }

  .article-card--featured .article-card__media {
    min-height: 200px;
    height: 200px;
  }

  .article-card--featured .article-card__body {
    padding: 20px;
  }

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

  .article-single__sheet {
    margin-top: -18px;
    padding: 22px 18px;
    border-radius: 20px;
  }

  .article-single__hero {
    border-radius: 18px;
    min-height: 200px;
  }

  .article-single__hero-text h1 {
    font-size: 1.25rem;
  }

  .article-single__lead {
    padding: 14px 16px;
    font-size: 0.98rem;
  }
}
