/* Darion-inspired landing — tokens */
:root {
  --black: #000000;
  --white: #ffffff;
  --gray-soft: #f5f5f5;
  --gray-mid: #6e6e6e;
  --gray-text: #454545;
  --radius-lg: 26px;
  --radius-md: 20px;
  --radius-pill: 999px;
  --ease-out-expo: cubic-bezier(0.22, 1, 0.36, 1);
  --font-body: "Heebo", "Segoe UI", system-ui, sans-serif;
  --header-offset: 28px;
  --container: min(1400px, calc(100% - 48px));
}

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

html {
  scroll-behavior: smooth;
  font-size: 130%;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1.2rem;
  font-weight: 700;
  font-style: normal;
  color: var(--black);
  background: var(--white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

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

button {
  font: inherit;
  color: inherit;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ——— Header ——— */
.site-header {
  position: absolute;
  top: var(--header-offset);
  left: 0;
  right: 0;
  z-index: 50;
  display: flex;
  justify-content: center;
  padding: 0 24px;
}

.nav-pill {
  display: flex;
  align-items: center;
  gap: clamp(16px, 3vw, 40px);
  width: min(1180px, 100%);
  padding: 14px 28px;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-radius: var(--radius-pill);
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.06);
  animation: nav-drop-in 0.9s var(--ease-out-expo) both;
  transition:
    box-shadow 0.45s var(--ease-out-expo),
    transform 0.45s var(--ease-out-expo);
}

.nav-pill:hover {
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.12);
  transform: translateY(-3px);
}

@keyframes nav-drop-in {
  from {
    opacity: 0;
    transform: translateY(-22px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.logo {
  font-family: var(--font-body);
  font-size: clamp(1.55rem, 2.8vw, 1.95rem);
  letter-spacing: 0.14em;
  flex-shrink: 0;
  display: inline-block;
  animation: logo-glow 8s ease-in-out infinite;
  transition:
    transform 0.4s var(--ease-out-expo),
    filter 0.4s var(--ease-out-expo);
}

.logo:hover {
  transform: scale(1.06);
  filter: drop-shadow(0 8px 24px rgba(0, 0, 0, 0.16));
  animation-play-state: paused;
}

@keyframes logo-glow {
  0%,
  100% {
    letter-spacing: 0.14em;
    filter: drop-shadow(0 0 0 transparent);
  }

  50% {
    letter-spacing: 0.17em;
    filter: drop-shadow(0 3px 18px rgba(0, 0, 0, 0.14));
  }
}

.nav-links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(10px, 2vw, 26px);
  flex: 1;
}

.nav-links .nav-trigger {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--black);
  opacity: 0.88;
  text-decoration: none;
  position: relative;
  transition:
    opacity 0.3s,
    color 0.3s,
    letter-spacing 0.45s var(--ease-out-expo),
    text-shadow 0.35s;
}

.nav-links .nav-trigger:hover {
  opacity: 1;
  letter-spacing: 0.07em;
  text-shadow: 0 3px 18px rgba(0, 0, 0, 0.14);
}

.nav-links .nav-trigger::after {
  content: "";
  position: absolute;
  bottom: -6px;
  inset-inline: 0;
  height: 2px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.4s var(--ease-out-expo);
}

.nav-links .nav-trigger:hover::after,
.nav-links .nav-trigger:focus-visible::after {
  transform: scaleX(1);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-shrink: 0;
}

.icon-btn {
  position: relative;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--black);
  opacity: 0.85;
  transition:
    transform 0.35s var(--ease-out-expo),
    background 0.25s,
    opacity 0.25s;
}

.icon-btn:hover,
a.icon-btn:hover {
  opacity: 1;
  background: rgba(0, 0, 0, 0.04);
  transform: scale(1.08);
}

.icon-btn.has-badge .badge {
  position: absolute;
  top: 6px;
  inset-inline-end: 4px;
  min-width: 16px;
  height: 16px;
  padding: 0 4px;
  font-size: 11px;
  font-weight: 700;
  line-height: 16px;
  text-align: center;
  background: var(--black);
  color: var(--white);
  border-radius: var(--radius-pill);
}

@media (max-width: 960px) {
  .nav-links {
    display: none;
  }

  .nav-pill {
    justify-content: space-between;
  }
}

@media (max-width: 520px) {
  .site-header {
    top: 16px;
  }

  .nav-pill {
    padding: 12px 18px;
  }

  .icon-btn {
    width: 38px;
    height: 38px;
  }
}

/* ——— Hero ——— */
.hero {
  position: relative;
  min-height: min(88vh, 820px);
  /* visible so hero-title letters can scale up on hover without clipping */
  overflow: visible;
}

.hero-slider {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1s ease;
  z-index: 0;
  pointer-events: none;
}

.hero-slide.active {
  opacity: 1;
  z-index: 1;
  pointer-events: auto;
}

.hero-slide-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.07);
  transition:
    transform 8s cubic-bezier(0.22, 1, 0.36, 1),
    filter 0.85s var(--ease-out-expo);
}

.hero-slide.active .hero-slide-img {
  transform: scale(1);
}

.hero:hover .hero-slide.active .hero-slide-img {
  filter: brightness(1.07) saturate(1.06);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.12) 0%,
    rgba(0, 0, 0, 0.25) 45%,
    rgba(0, 0, 0, 0.35) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 3;
  min-height: inherit;
  display: grid;
  place-items: center;
  padding: 120px 24px 80px;
}

.hero-headline-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(0.65rem, 2vw, 1rem);
  max-width: min(30ch, 100%);
  text-align: center;
}

.hero-title {
  margin: 0;
  max-width: none;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: clamp(2.4rem, 6vw, 4rem);
  letter-spacing: 0.02em;
  line-height: 1.22;
  color: var(--white);
  text-align: center;
  overflow: visible;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.28em;
  animation:
    hero-title-in 1s cubic-bezier(0.22, 1, 0.36, 1) 0.15s both,
    hero-text-glow 5.5s ease-in-out 1s infinite;
  transition: text-shadow 0.55s var(--ease-out-expo), letter-spacing 0.55s var(--ease-out-expo);
}

.hero-title-line {
  display: block;
  width: max-content;
  max-width: 100%;
  text-align: center;
}

.hero-title-char {
  display: inline-block;
  position: relative;
  z-index: 0;
  overflow: visible;
  color: var(--white);
  transition:
    color 0.72s cubic-bezier(0.22, 1, 0.36, 1),
    text-shadow 0.72s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.72s cubic-bezier(0.22, 1, 0.36, 1),
    filter 0.72s cubic-bezier(0.22, 1, 0.36, 1);
}

.hero-title-char--space {
  width: 0.35em;
}

.hero-title-char:hover {
  transition-duration: 0.22s;
  transition-timing-function: ease-out;
  transition-property: color, background, background-position, transform, filter;
  z-index: 5;
  color: transparent;
  -webkit-text-fill-color: transparent;
  background-image: linear-gradient(
      112deg,
      #4a2f1f 0%,
      #7a4e30 14%,
      #c4a06a 28%,
      #8b5e3c 42%,
      #e6d2b5 56%,
      #6b4423 70%,
      #b8926a 86%,
      #3d2618 100%
    ),
    repeating-linear-gradient(
      -62deg,
      rgba(60, 38, 24, 0.45) 0 1px,
      transparent 1px 5px,
      rgba(255, 245, 230, 0.12) 5px 6px,
      transparent 6px 11px
    );
  background-size: 220% 220%, 10px 14px;
  background-position: 72% 52%, 48% 50%;
  -webkit-background-clip: text;
  background-clip: text;
  transform: translateY(-2px) scale(1.07);
  filter:
    brightness(1.1) saturate(1.14) drop-shadow(0 1px 0 rgba(30, 16, 10, 0.45))
    drop-shadow(0 3px 9px rgba(55, 32, 18, 0.32));
}

.hero-title-char--space:hover {
  animation: none;
  transform: none;
  filter: none;
  color: rgba(255, 255, 255, 0.45);
  -webkit-text-fill-color: rgba(255, 255, 255, 0.45);
  background: none;
}

.hero-catalog-link {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: clamp(1rem, 2.4vw, 1.28rem);
  letter-spacing: 0.06em;
  color: rgba(255, 255, 255, 0.88);
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.38);
  padding-bottom: 2px;
  display: inline-block;
  transition:
    color 0.28s var(--ease-out-expo),
    border-color 0.28s var(--ease-out-expo),
    text-shadow 0.28s var(--ease-out-expo),
    transform 0.32s var(--ease-out-expo);
}

.hero-catalog-link:hover {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.72);
  text-shadow: 0 0 20px rgba(255, 240, 190, 0.35);
  transform: translateY(-2px);
}

.hero-content:hover .hero-title {
  letter-spacing: 0.03em;
  text-shadow:
    0 6px 36px rgba(0, 0, 0, 0.45),
    0 0 50px rgba(255, 255, 255, 0.35);
}

.hero-catalog-link:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.9);
  outline-offset: 5px;
  border-radius: 2px;
}

@keyframes hero-text-glow {
  0%,
  100% {
    text-shadow:
      0 4px 32px rgba(0, 0, 0, 0.35),
      0 0 0 rgba(255, 255, 255, 0);
  }

  50% {
    text-shadow:
      0 8px 44px rgba(0, 0, 0, 0.45),
      0 0 52px rgba(255, 255, 255, 0.22);
  }
}

.hero-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 4;
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  color: rgba(255, 255, 255, 0.55);
  transition:
    color 0.25s,
    background 0.25s,
    transform 0.35s var(--ease-out-expo),
    box-shadow 0.35s;
  border-radius: 50%;
}

.hero-arrow:hover {
  color: var(--white);
  background: rgba(255, 255, 255, 0.12);
  transform: translateY(-50%) scale(1.12);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.25);
}

.hero-prev {
  inset-inline-start: clamp(12px, 4vw, 48px);
}

.hero-next {
  inset-inline-end: clamp(12px, 4vw, 48px);
}

[dir="rtl"] .hero-prev svg {
  transform: scaleX(-1);
}

[dir="rtl"] .hero-next svg {
  transform: scaleX(-1);
}

.hero-dots {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 4;
  display: flex;
  gap: 8px;
}

.hero-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.35);
  border: none;
  padding: 0;
  cursor: pointer;
  transition:
    background 0.35s var(--ease-out-expo),
    transform 0.35s var(--ease-out-expo);
}

.hero-dot:hover {
  transform: scale(1.35);
  background: rgba(255, 255, 255, 0.65);
}

.hero-dot[aria-selected="true"] {
  background: var(--white);
  transform: scale(1.25);
  box-shadow: 0 0 14px rgba(255, 255, 255, 0.65);
}

.scroll-hint {
  position: absolute;
  bottom: 96px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 4;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  pointer-events: none;
  animation: scroll-hint-float 3.2s ease-in-out infinite;
}

@keyframes scroll-hint-float {
  0%,
  100% {
    transform: translateX(-50%) translateY(0);
  }

  50% {
    transform: translateX(-50%) translateY(-12px);
  }
}

.scroll-hint-text {
  text-transform: uppercase;
}

.scroll-hint-mouse {
  width: 22px;
  height: 34px;
  border-radius: 12px;
  border: 2px solid rgba(255, 255, 255, 0.55);
  display: flex;
  justify-content: center;
  padding-top: 7px;
}

.scroll-hint-wheel {
  width: 4px;
  height: 8px;
  border-radius: 2px;
  background: rgba(255, 255, 255, 0.85);
  animation: scroll-wheel 2s ease-in-out infinite;
}

@keyframes scroll-wheel {
  0% {
    opacity: 1;
    transform: translateY(0);
  }
  70% {
    opacity: 0.15;
    transform: translateY(10px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes hero-title-in {
  from {
    opacity: 0;
    transform: translate3d(0, 24px, 0) scale(0.98);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
  }
}

/* ——— Trust bar ——— */
.trust-bar {
  background: var(--black);
  color: var(--white);
  padding: 22px 24px;
}

.trust-inner {
  width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  align-items: center;
}

.trust-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-align: center;
  padding: 8px 12px;
  border-radius: var(--radius-md);
  transition:
    transform 0.35s var(--ease-out-expo),
    background 0.35s;
}

.trust-item:hover {
  transform: translateY(-4px);
  background: rgba(255, 255, 255, 0.06);
}

.trust-icon {
  width: 30px;
  height: 30px;
  flex-shrink: 0;
  opacity: 0.95;
  transition: transform 0.45s var(--ease-out-expo);
}

.trust-item:hover .trust-icon {
  transform: scale(1.12);
}

.trust-item span {
  transition: text-shadow 0.35s var(--ease-out-expo);
}

.trust-item:hover span {
  text-shadow: 0 2px 16px rgba(255, 255, 255, 0.42);
}

@media (max-width: 900px) {
  .trust-inner {
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
  }
}

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

  .trust-item {
    justify-content: flex-start;
  }
}

/* ——— Sections ——— */
.section {
  padding: clamp(48px, 8vw, 96px) 24px;
}

.category-grid {
  width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(14px, 2vw, 22px);
}

.category-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 3 / 4;
  background: var(--gray-soft);
  transition:
    transform 0.5s var(--ease-out-expo),
    box-shadow 0.5s var(--ease-out-expo);
}

.category-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 28px 56px rgba(0, 0, 0, 0.22);
}

.category-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition:
    transform 0.85s var(--ease-out-expo),
    filter 0.55s var(--ease-out-expo);
}

.category-card:hover img {
  transform: scale(1.1);
  filter: brightness(1.09) saturate(1.14) contrast(1.02);
}

.category-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.65) 0%,
    rgba(0, 0, 0, 0.08) 45%,
    transparent 70%
  );
  pointer-events: none;
}

.category-meta {
  position: absolute;
  inset-inline-start: 22px;
  bottom: 22px;
  z-index: 2;
  color: var(--white);
}

.category-name {
  display: block;
  font-size: 1.45rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  transition:
    transform 0.45s var(--ease-out-expo),
    letter-spacing 0.45s var(--ease-out-expo),
    text-shadow 0.45s;
}

.category-count {
  display: block;
  margin-top: 6px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  opacity: 0.82;
  transition: letter-spacing 0.45s var(--ease-out-expo), opacity 0.35s;
}

.category-card:hover .category-name {
  transform: translateY(-5px);
  letter-spacing: 0.06em;
  text-shadow: 0 4px 22px rgba(0, 0, 0, 0.5);
}

.category-card:hover .category-count {
  opacity: 1;
  letter-spacing: 0.2em;
}

@media (max-width: 1024px) {
  .category-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 540px) {
  .category-grid {
    grid-template-columns: 1fr;
    max-width: 420px;
  }
}

/* Promo */
.promo-grid {
  width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
  gap: clamp(28px, 5vw, 52px);
  align-items: center;
}

.promo-visual {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4 / 5;
  max-height: min(72vh, 540px);
  box-shadow: 0 28px 60px rgba(20, 18, 16, 0.14);
  background: var(--gray-soft);
}

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

.promo-kicker {
  margin: 0 0 14px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--gray-mid);
  transition: color 0.35s, letter-spacing 0.4s var(--ease-out-expo);
}

.promo-title {
  margin: 0 0 18px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: clamp(1.95rem, 3.6vw, 2.75rem);
  letter-spacing: -0.02em;
  line-height: 1.25;
  transition:
    transform 0.45s var(--ease-out-expo),
    text-shadow 0.45s,
    letter-spacing 0.45s var(--ease-out-expo);
}

.promo-text {
  margin: 0 0 28px;
  color: var(--gray-text);
  font-size: 17px;
  line-height: 1.7;
  max-width: 46ch;
  transition: color 0.35s, transform 0.4s var(--ease-out-expo);
}

.promo-copy:hover .promo-kicker {
  color: var(--black);
  letter-spacing: 0.12em;
}

.promo-copy:hover .promo-title {
  transform: translateY(-4px);
  letter-spacing: 0.01em;
  text-shadow: 0 10px 32px rgba(0, 0, 0, 0.08);
}

.promo-copy:hover .promo-text {
  color: #2d2d2d;
  transform: translateY(-2px);
}

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

  .promo-visual {
    order: -1;
    max-height: none;
    aspect-ratio: 16 / 10;
  }
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 36px;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.06em;
  border-radius: var(--radius-pill);
  transition:
    transform 0.35s var(--ease-out-expo),
    box-shadow 0.35s var(--ease-out-expo),
    background 0.25s,
    color 0.25s,
    letter-spacing 0.4s var(--ease-out-expo),
    filter 0.3s;
}

.btn:hover {
  letter-spacing: 0.12em;
}

.btn-primary {
  position: relative;
  overflow: hidden;
  background: var(--black);
  color: var(--white);
}

.btn-primary::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    transparent 38%,
    rgba(255, 255, 255, 0.22) 50%,
    transparent 62%
  );
  transform: translateX(-120%);
  transition: transform 0.65s var(--ease-out-expo);
  pointer-events: none;
}

.btn-primary:hover::after {
  transform: translateX(120%);
}

.btn-primary:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow:
    0 16px 36px rgba(0, 0, 0, 0.28),
    0 0 0 1px rgba(255, 255, 255, 0.06) inset;
}

/* Bestseller */
.bestseller {
  background: var(--black);
  color: var(--white);
}

.bestseller-head {
  width: var(--container);
  margin: 0 auto 40px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.bestseller-title {
  margin: 0;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: clamp(2rem, 3.4vw, 2.65rem);
  letter-spacing: -0.02em;
  transition:
    letter-spacing 0.45s var(--ease-out-expo),
    text-shadow 0.45s,
    transform 0.45s var(--ease-out-expo);
}

.bestseller-sub {
  margin: 8px 0 0;
  font-size: 16px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.78);
  transition: color 0.35s, letter-spacing 0.4s var(--ease-out-expo);
}

.bestseller-head:hover .bestseller-title {
  letter-spacing: 0.02em;
  text-shadow: 0 6px 36px rgba(255, 255, 255, 0.28);
  transform: translateY(-3px);
}

.bestseller-head:hover .bestseller-sub {
  color: rgba(255, 255, 255, 0.98);
  letter-spacing: 0.04em;
}

.btn-outline-light {
  border: 1px solid rgba(255, 255, 255, 0.45);
  color: var(--white);
  padding-inline: 26px;
  transition:
    transform 0.35s var(--ease-out-expo),
    box-shadow 0.35s,
    background 0.25s,
    color 0.25s,
    border-color 0.25s;
}

.btn-outline-light:hover {
  background: var(--white);
  color: var(--black);
  border-color: var(--white);
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.35);
}

.product-grid {
  width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(14px, 2vw, 22px);
}

.product-card {
  position: relative;
  display: block;
  background: var(--gray-soft);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition:
    transform 0.45s var(--ease-out-expo),
    box-shadow 0.45s var(--ease-out-expo);
  text-decoration: none;
  color: inherit;
}

.product-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 22px 44px rgba(0, 0, 0, 0.18);
}

.product-card:hover .product-img-wrap img {
  transform: scale(1.08);
  filter: brightness(1.06) contrast(1.06) saturate(1.05);
}

.product-badge {
  position: absolute;
  top: 14px;
  inset-inline-start: 14px;
  z-index: 2;
  padding: 8px 12px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
  border-radius: 8px;
}

.product-badge.sale {
  background: #c41e3a;
  color: var(--white);
}

.product-badge.oos {
  background: var(--black);
  color: var(--white);
}

.product-img-wrap {
  padding: 28px 20px 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 260px;
}

.product-img-wrap img {
  max-height: 220px;
  width: auto;
  object-fit: contain;
  mix-blend-mode: multiply;
  transition:
    transform 0.55s var(--ease-out-expo),
    filter 0.45s var(--ease-out-expo);
}

.product-info {
  padding: 12px 22px 26px;
}

.product-name {
  margin: 0 0 8px;
  font-size: 17px;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--black);
  transition:
    letter-spacing 0.35s var(--ease-out-expo),
    text-shadow 0.35s,
    color 0.35s,
    transform 0.35s var(--ease-out-expo);
}

.product-price {
  margin: 0;
  font-size: 16px;
  font-weight: 700;
  color: var(--black);
  transition: color 0.35s, text-shadow 0.35s, transform 0.35s var(--ease-out-expo);
}

.product-card:hover .product-name {
  letter-spacing: 0.03em;
  text-shadow: 0 4px 18px rgba(0, 0, 0, 0.12);
  transform: translateY(-2px);
}

.product-card:hover .product-price {
  color: #111;
  transform: translateY(-1px);
}

.bestseller .product-card:hover .product-name {
  text-shadow: 0 4px 22px rgba(255, 255, 255, 0.35);
}

.bestseller .product-card:hover .product-price {
  color: rgba(255, 255, 255, 0.98);
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.35);
}

.price-old {
  text-decoration: line-through;
  color: var(--gray-mid);
  font-weight: 700;
  margin-inline-end: 8px;
}

@media (max-width: 1024px) {
  .product-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

[id] {
  scroll-margin-top: 1.25rem;
}

.section-tint {
  background: linear-gradient(
    135deg,
    #faf7f2 0%,
    #f5efe6 35%,
    #efe8dd 70%,
    #faf7f2 100%
  );
  background-size: 280% 280%;
  animation: tint-flow 18s ease infinite;
}

@keyframes tint-flow {
  0% {
    background-position: 0% 40%;
  }

  50% {
    background-position: 100% 60%;
  }

  100% {
    background-position: 0% 40%;
  }
}

.section-eyebrow {
  margin: 0 0 12px;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--gray-mid);
  transition: color 0.35s, letter-spacing 0.45s var(--ease-out-expo);
}

.section-heading {
  margin: 0 0 16px;
  font-size: clamp(1.95rem, 3.6vw, 2.65rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.2;
  transition:
    transform 0.45s var(--ease-out-expo),
    text-shadow 0.45s,
    letter-spacing 0.45s var(--ease-out-expo);
}

.section-lead {
  margin: 0;
  font-size: 1.12rem;
  font-weight: 700;
  color: var(--gray-text);
  line-height: 1.65;
  max-width: 52ch;
  transition: color 0.35s, transform 0.4s var(--ease-out-expo);
}

.section-heading:hover {
  transform: translateY(-2px);
  text-shadow: 0 5px 20px rgba(0, 0, 0, 0.06);
}

.section-lead:hover {
  transform: translateY(-1px);
  color: #323232;
}

.section-eyebrow:hover {
  color: #555;
  letter-spacing: 0.11em;
}

.shop-intro:hover .section-eyebrow,
.catalog-head:hover .section-eyebrow,
.blog-head:hover .section-eyebrow {
  color: var(--black);
  letter-spacing: 0.14em;
}

.shop-intro:hover .section-heading,
.catalog-head:hover .section-heading,
.blog-head:hover .section-heading {
  transform: translateY(-3px);
  text-shadow: 0 8px 26px rgba(0, 0, 0, 0.09);
}

.shop-intro:hover .section-lead,
.catalog-head:hover .section-lead {
  color: #353535;
}

/* About */
.about-inner--single {
  width: var(--container);
  margin: 0 auto;
  display: block;
  max-width: min(42rem, 100%);
}

.about-list {
  margin: 0 0 28px;
  padding-inline-start: 1.25rem;
  font-size: 16px;
  font-weight: 700;
  color: var(--gray-text);
  line-height: 1.7;
}

.about-copy .section-eyebrow {
  transition: color 0.35s, letter-spacing 0.4s var(--ease-out-expo);
}

.about-inner:hover .about-copy .section-eyebrow {
  color: var(--black);
  letter-spacing: 0.14em;
}

.about-inner:hover .about-copy .section-lead {
  color: #353535;
}

.about-copy .section-heading {
  display: inline-block;
  max-width: 100%;
  transform-origin: 50% 50%;
  transition: transform 0.4s var(--ease-out-expo);
}

.about-copy .section-heading:hover {
  transform: translateY(-4px) scale(1.045);
}

.about-copy .section-eyebrow:hover {
  color: #7a4e30;
  letter-spacing: 0.13em;
}

.about-copy .section-lead:hover {
  transform: translateY(-2px);
  color: #2a2a2a;
  text-shadow: 0 2px 14px rgba(122, 78, 48, 0.12);
}

.about-list li {
  margin-bottom: 8px;
  transition: color 0.3s, transform 0.3s var(--ease-out-expo);
}

.about-inner:hover .about-list li {
  color: #444;
}

.about-inner:hover .about-list li:hover {
  transform: translateY(-3px);
}

/* Shop toolbar */
.shop-inner {
  width: var(--container);
  margin: 0 auto;
}

.shop-intro {
  margin-bottom: 28px;
}

.shop-lead {
  max-width: 60ch;
}

.shop-search-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: stretch;
  margin-bottom: 22px;
}

.shop-search-input {
  flex: 1;
  min-width: 220px;
  padding: 16px 22px;
  font: inherit;
  font-weight: 700;
  border: 2px solid #e8e4de;
  border-radius: var(--radius-pill);
  background: var(--white);
  outline: none;
  transition:
    border-color 0.3s,
    box-shadow 0.3s,
    transform 0.35s var(--ease-out-expo),
    letter-spacing 0.35s;
}

.shop-search-input:hover {
  transform: scale(1.01);
  letter-spacing: 0.02em;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
}

.shop-search-input:focus {
  border-color: var(--black);
  box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.06);
}

.shop-search-btn {
  flex-shrink: 0;
}

.shop-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.shop-chip {
  display: inline-flex;
  align-items: center;
  padding: 10px 18px;
  font-size: 14px;
  font-weight: 700;
  border-radius: var(--radius-pill);
  background: var(--black);
  color: var(--white);
  text-decoration: none;
  transition:
    transform 0.35s var(--ease-out-expo),
    box-shadow 0.35s,
    letter-spacing 0.4s var(--ease-out-expo),
    filter 0.3s;
}

.shop-chip:hover {
  transform: translateY(-4px) scale(1.03);
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.22);
  letter-spacing: 0.06em;
  filter: brightness(1.08);
}

.shop-chip-ghost {
  background: var(--white);
  color: var(--black);
  border: 2px solid var(--black);
}

/* Featured editorial */
.section-featured {
  background: linear-gradient(155deg, #101010 0%, #1c1c1c 55%, #141414 100%);
  color: var(--white);
  padding-top: clamp(56px, 10vw, 100px);
  padding-bottom: clamp(56px, 10vw, 100px);
}

.featured-inner {
  width: var(--container);
  margin: 0 auto;
}

.featured-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.featured-eyebrow {
  color: rgba(255, 255, 255, 0.5);
  transition: color 0.35s, letter-spacing 0.4s var(--ease-out-expo);
}

.featured-title-light {
  color: var(--white);
  transition:
    letter-spacing 0.45s var(--ease-out-expo),
    text-shadow 0.45s,
    transform 0.45s var(--ease-out-expo);
}

.featured-sub {
  margin: 12px 0 0;
  max-width: 48ch;
  font-size: 16px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.66);
  line-height: 1.65;
  transition: color 0.35s, letter-spacing 0.35s;
}

.featured-inner:hover .featured-eyebrow {
  color: rgba(255, 255, 255, 0.85);
  letter-spacing: 0.14em;
}

.featured-inner:hover .featured-title-light {
  letter-spacing: 0.04em;
  text-shadow: 0 8px 36px rgba(0, 0, 0, 0.45);
  transform: translateY(-3px);
}

.featured-inner:hover .featured-sub {
  color: rgba(255, 255, 255, 0.92);
}

.featured-play {
  margin-top: 8px;
}

.room-game {
  position: relative;
  width: 100%;
  min-height: min(68vh, 620px);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background-color: #f3efe9;
  background-image: url("images/room-game-background.png");
  background-size: cover;
  background-position: center;
  touch-action: pan-y;
}

.room-game__layer {
  position: absolute;
  inset: 0;
}

.room-piece {
  position: absolute;
  cursor: grab;
  touch-action: none;
  user-select: none;
  -webkit-user-drag: none;
  background: none;
  transition: transform 0.2s var(--ease-out-expo);
}

.room-piece:focus-visible {
  outline: 3px solid rgba(95, 72, 58, 0.55);
  outline-offset: 6px;
  border-radius: 0;
}

.room-piece.is-dragging {
  cursor: grabbing;
  transform: scale(1.04);
  z-index: 30;
  transition: none;
}

.room-piece.is-dragging img {
  filter: drop-shadow(0 18px 22px rgba(20, 14, 10, 0.35));
}

.room-piece img {
  display: block;
  width: min(30vw, 200px);
  height: auto;
  border-radius: 0;
  box-shadow: none;
  pointer-events: none;
  mix-blend-mode: normal;
  filter: drop-shadow(0 14px 18px rgba(25, 18, 14, 0.28));
}

.room-piece--wardrobe img {
  width: min(46vw, 310px);
}

.room-piece--tall img {
  width: min(28vw, 150px);
}

.room-piece--lamp img {
  width: min(56vw, 300px);
}

.room-piece--wide img {
  width: min(42vw, 260px);
}

.room-game__hint {
  position: absolute;
  left: 50%;
  bottom: 14px;
  transform: translateX(-50%);
  margin: 0;
  padding: 8px 16px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: rgba(42, 34, 30, 0.92);
  background: rgba(255, 252, 248, 0.72);
  border-radius: var(--radius-pill);
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.45);
  box-shadow: 0 6px 20px rgba(45, 35, 28, 0.12);
  pointer-events: none;
}

@media (max-width: 600px) {
  .room-game {
    min-height: 56vh;
  }

  .room-piece img {
    width: min(44vw, 160px);
  }

  .room-piece--wardrobe img {
    width: min(68vw, 264px);
  }

  .room-piece--tall img {
    width: min(36vw, 120px);
  }

  .room-piece--lamp img {
    width: min(72vw, 240px);
  }

  .room-piece--wide img {
    width: min(58vw, 200px);
  }
}

/* Catalog strip */
.catalog-head {
  width: var(--container);
  margin: 0 auto 36px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.catalog-grid {
  width: var(--container);
  margin: 0 auto;
  grid-template-columns: repeat(3, 1fr);
}

@media (max-width: 1024px) {
  .catalog-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

/* Blog — ספר דיגיטלי עם דפדוף */
.blog-book-section {
  position: relative;
  overflow: hidden;
  background: linear-gradient(
    125deg,
    #e8f4fc 0%,
    #fce4ec 28%,
    #fff8e6 55%,
    #e3f9f1 78%,
    #ede7ff 100%
  );
  background-size: 320% 320%;
  animation: blog-book-bg 22s ease infinite;
}

@keyframes blog-book-bg {
  0%,
  100% {
    background-position: 0% 40%;
  }

  50% {
    background-position: 100% 60%;
  }
}

.blog-book-eyebrow {
  background: linear-gradient(90deg, #6c5ce7, #fd79a8);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}

.blog-book-heading {
  background: linear-gradient(105deg, #2d3436 0%, #636e72 40%, #2d3436 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  transition: filter 0.35s ease;
}

.blog-head:hover .blog-book-heading {
  transform: none;
  text-shadow: none;
}

.blog-head .blog-book-heading:hover {
  filter: brightness(1.12);
}

.blog-book-lead {
  margin: 12px 0 0;
  max-width: 52ch;
  font-size: 16px;
  font-weight: 700;
  color: #4a4a4a;
  line-height: 1.65;
  transition: transform 0.35s var(--ease-out-expo), color 0.35s ease;
}

.blog-book-lead:hover {
  transform: translateY(-2px);
  color: #333;
}

.blog-head {
  width: var(--container);
  margin: 0 auto 36px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.blog-book-wrap {
  width: var(--container);
  margin: 0 auto;
  padding: 8px 0 12px;
  animation: blog-book-float 7s ease-in-out infinite;
}

@keyframes blog-book-float {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-6px);
  }
}

.blog-book {
  position: relative;
}

.blog-book__row {
  display: flex;
  align-items: stretch;
  gap: clamp(8px, 1.5vw, 14px);
}

.blog-book__spine {
  width: 14px;
  flex-shrink: 0;
  border-radius: 6px;
  background: linear-gradient(
    90deg,
    rgba(0, 0, 0, 0.35) 0%,
    rgba(255, 255, 255, 0.45) 45%,
    rgba(0, 0, 0, 0.28) 100%
  );
  box-shadow: inset -2px 0 6px rgba(0, 0, 0, 0.15);
}

.blog-book__flip {
  flex-shrink: 0;
  width: 48px;
  min-height: 120px;
  align-self: center;
  border: none;
  border-radius: 14px;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
  color: var(--white);
  background: linear-gradient(160deg, #2d3436 0%, #000 100%);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.22);
  transition:
    transform 0.3s var(--ease-out-expo),
    box-shadow 0.3s,
    filter 0.3s;
}

.blog-book__flip:hover {
  transform: scale(1.06);
  filter: brightness(1.08);
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.28);
}

.blog-book__flip:focus-visible {
  outline: 3px solid #6c5ce7;
  outline-offset: 3px;
}

.blog-book__viewport {
  flex: 1;
  min-width: 0;
  position: relative;
  border-radius: var(--radius-lg);
  padding: 10px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.88) 100%);
  box-shadow:
    0 22px 50px rgba(0, 0, 0, 0.12),
    inset 0 0 0 1px rgba(255, 255, 255, 0.8),
    inset 0 0 0 2px rgba(0, 0, 0, 0.06);
}

.blog-book__stack {
  position: relative;
  min-height: min(52vw, 440px);
}

.blog-page {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: perspective(1100px) rotateY(-22deg) scale(0.94);
  transform-origin: center center;
  transition:
    opacity 0.45s ease,
    transform 0.55s cubic-bezier(0.22, 1, 0.36, 1),
    filter 0.45s ease;
  z-index: 0;
  pointer-events: none;
  filter: brightness(0.92) saturate(0.85);
}

.blog-page.is-active {
  opacity: 1;
  transform: perspective(1100px) rotateY(0deg) scale(1);
  z-index: 3;
  pointer-events: auto;
  filter: none;
}

.blog-page__card {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 0;
  min-height: 100%;
  border-radius: calc(var(--radius-lg) - 6px);
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  background: var(--white);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.1);
  border: 3px solid transparent;
  background-image:
    linear-gradient(var(--white), var(--white)),
    linear-gradient(135deg, var(--b), var(--b2));
  background-origin: border-box;
  background-clip: padding-box, border-box;
  transition:
    transform 0.45s var(--ease-out-expo),
    box-shadow 0.45s var(--ease-out-expo);
}

.blog-page__card:hover {
  transform: translateY(-4px);
  box-shadow: 0 26px 56px rgba(0, 0, 0, 0.16);
}

.blog-page__ribbon {
  position: absolute;
  top: 16px;
  inset-inline-end: 16px;
  z-index: 2;
  padding: 6px 14px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--white);
  border-radius: var(--radius-pill);
  background: linear-gradient(120deg, var(--b), var(--b2));
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.2);
}

.blog-page__media {
  position: relative;
  min-height: 220px;
  overflow: hidden;
}

.blog-page__media img {
  width: 100%;
  height: 100%;
  min-height: 220px;
  object-fit: cover;
  transition: transform 0.7s var(--ease-out-expo), filter 0.5s;
}

.blog-page__card:hover .blog-page__media img {
  transform: scale(1.06);
  filter: saturate(1.12) brightness(1.03);
}

.blog-page__body {
  padding: clamp(18px, 3vw, 26px);
  display: flex;
  flex-direction: column;
  gap: 10px;
  justify-content: center;
}

.blog-page__date {
  font-size: 13px;
  font-weight: 700;
  color: var(--gray-mid);
}

.blog-page__title {
  margin: 0;
  font-size: clamp(1.15rem, 2.4vw, 1.45rem);
  font-weight: 800;
  line-height: 1.25;
  color: #1a1a1a;
}

.blog-page__excerpt {
  margin: 0;
  font-size: 15px;
  font-weight: 700;
  color: var(--gray-text);
  line-height: 1.55;
}

.blog-page__cta {
  margin-top: 6px;
  align-self: flex-start;
  padding: 10px 18px;
  font-size: 14px;
  font-weight: 800;
  border-radius: var(--radius-pill);
  color: var(--white);
  background: linear-gradient(120deg, var(--b), var(--b2));
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.15);
  transition: transform 0.25s var(--ease-out-expo), letter-spacing 0.3s;
}

.blog-page__card:hover .blog-page__cta {
  transform: scale(1.03);
  letter-spacing: 0.04em;
}

.blog-book__dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 18px;
  flex-wrap: wrap;
}

.blog-book__dot {
  width: 11px;
  height: 11px;
  padding: 0;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  background: rgba(0, 0, 0, 0.2);
  transition:
    transform 0.25s var(--ease-out-expo),
    background 0.25s,
    box-shadow 0.25s;
}

.blog-book__dot[aria-selected="true"] {
  background: linear-gradient(135deg, #6c5ce7, #fd79a8);
  transform: scale(1.25);
  box-shadow: 0 4px 14px rgba(108, 92, 231, 0.45);
}

.blog-book__dot:hover {
  background: rgba(0, 0, 0, 0.45);
}

@media (max-width: 900px) {
  .blog-page__card {
    grid-template-columns: 1fr;
  }

  .blog-page__ribbon {
    top: 12px;
    inset-inline-end: 12px;
  }

  .blog-book__stack {
    min-height: 520px;
  }

  .blog-book__flip {
    width: 42px;
    min-height: 100px;
    font-size: 24px;
  }
}

/* Newsletter */
.section-newsletter {
  padding-block: clamp(48px, 8vw, 80px);
}

.newsletter-inner {
  width: var(--container);
  margin: 0 auto;
  padding: clamp(28px, 5vw, 44px);
  border-radius: var(--radius-lg);
  background: var(--black);
  color: var(--white);
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.08);
  animation: newsletter-glow 5s ease-in-out infinite;
}

@keyframes newsletter-glow {
  0%,
  100% {
    box-shadow:
      0 0 0 1px rgba(255, 255, 255, 0.08),
      0 12px 40px rgba(0, 0, 0, 0.25);
  }

  50% {
    box-shadow:
      0 0 0 1px rgba(255, 255, 255, 0.18),
      0 18px 52px rgba(0, 0, 0, 0.35),
      0 0 48px rgba(255, 255, 255, 0.06);
  }
}

.newsletter-title {
  margin: 0 0 10px;
  font-size: clamp(1.45rem, 2.8vw, 2rem);
  font-weight: 700;
  transition: text-shadow 0.45s, letter-spacing 0.45s var(--ease-out-expo);
}

.newsletter-text {
  margin: 0;
  max-width: 42ch;
  font-size: 16px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.68);
  line-height: 1.6;
  transition: color 0.35s, letter-spacing 0.35s;
}

.newsletter-inner:hover .newsletter-title {
  letter-spacing: 0.03em;
  text-shadow: 0 4px 36px rgba(255, 255, 255, 0.35);
}

.newsletter-inner:hover .newsletter-text {
  color: rgba(255, 255, 255, 0.92);
}

.newsletter-form {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.newsletter-input {
  min-width: 240px;
  padding: 14px 20px;
  font: inherit;
  font-weight: 700;
  border: none;
  border-radius: var(--radius-pill);
  outline: none;
  transition:
    transform 0.35s var(--ease-out-expo),
    box-shadow 0.35s;
}

.newsletter-input:hover {
  transform: scale(1.02);
  box-shadow: 0 6px 22px rgba(0, 0, 0, 0.25);
}

.newsletter-input:focus-visible {
  box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.45);
}

.newsletter-submit {
  flex-shrink: 0;
}

/* צור קשר — קטע עם תמונה (במקום סל דמו) */
.section-contact-cta {
  padding-block: clamp(40px, 7vw, 72px);
}

.contact-cta-inner {
  width: var(--container);
  margin: 0 auto;
  display: block;
  max-width: min(920px, 100%);
}

.contact-cta-inner .cart-panel {
  width: 100%;
  margin: 0;
}

.contact-cta-panel .section-eyebrow {
  margin: 0 0 10px;
}

.cart-panel {
  padding: clamp(28px, 4vw, 40px);
  border-radius: var(--radius-lg);
  border: 2px dashed #d6d1c9;
  background: #fdfcfa;
  transition:
    border-color 0.45s var(--ease-out-expo),
    box-shadow 0.45s var(--ease-out-expo),
    transform 0.45s var(--ease-out-expo);
}

.cart-panel:hover {
  border-color: #bfae98;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.08);
  transform: translateY(-4px);
}

.cart-panel .section-heading,
.cart-panel .section-lead {
  transition: text-shadow 0.4s, letter-spacing 0.4s var(--ease-out-expo);
}

.cart-panel:hover .section-heading {
  letter-spacing: 0.02em;
  text-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
}

.cart-steps {
  list-style: none;
  margin: 26px 0 28px;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(12px, 2vw, 18px);
}

.cart-steps__item {
  min-height: 0;
}

.cart-step-card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  height: 100%;
  padding: clamp(22px, 3.5vw, 28px) clamp(14px, 2vw, 18px) clamp(18px, 2.5vw, 22px);
  border-radius: clamp(14px, 2vw, 18px);
  text-decoration: none;
  color: inherit;
  background: linear-gradient(165deg, #ffffff 0%, #faf7f3 48%, #f3ebe4 100%);
  border: 1px solid rgba(122, 78, 48, 0.14);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.85) inset,
    0 14px 36px rgba(45, 35, 28, 0.06);
  transition:
    transform 0.45s var(--ease-out-expo),
    box-shadow 0.45s var(--ease-out-expo),
    border-color 0.35s ease,
    background 0.45s ease;
}

.cart-step-card:hover {
  transform: translateY(-8px);
  border-color: rgba(122, 78, 48, 0.35);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.9) inset,
    0 22px 48px rgba(45, 35, 28, 0.14);
}

.cart-step-card:focus-visible {
  outline: 3px solid rgba(122, 78, 48, 0.45);
  outline-offset: 4px;
}

.cart-step-card__badge {
  position: absolute;
  top: 12px;
  inset-inline-end: 12px;
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.02em;
  color: var(--white);
  border-radius: 10px;
  background: linear-gradient(135deg, #2d2d2d 0%, #111 100%);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.22);
}

.cart-step-card__icon-wrap {
  display: grid;
  place-items: center;
  width: clamp(56px, 12vw, 64px);
  height: clamp(56px, 12vw, 64px);
  margin-bottom: 14px;
  border-radius: 50%;
  color: #5c4030;
  background: linear-gradient(145deg, #fffefb 0%, #ebe4d9 100%);
  border: 1px solid rgba(122, 78, 48, 0.12);
  box-shadow: 0 10px 26px rgba(122, 78, 48, 0.12);
  transition:
    transform 0.55s var(--ease-out-expo),
    box-shadow 0.45s ease,
    color 0.35s ease;
}

.cart-step-card:hover .cart-step-card__icon-wrap {
  transform: scale(1.08) rotate(-5deg);
  color: #3d2a1f;
  box-shadow: 0 14px 32px rgba(122, 78, 48, 0.22);
}

.cart-step-card__svg {
  flex-shrink: 0;
}

.cart-step-card__label {
  font-size: clamp(14px, 1.35vw, 16px);
  font-weight: 800;
  line-height: 1.45;
  color: var(--black);
  letter-spacing: 0.01em;
}

.cart-step-card__hint {
  margin-top: 8px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #7a4e30;
  opacity: 0.88;
  transition: letter-spacing 0.4s var(--ease-out-expo), opacity 0.35s ease;
}

.cart-step-card:hover .cart-step-card__hint {
  letter-spacing: 0.12em;
  opacity: 1;
}

@media (max-width: 720px) {
  .cart-steps {
    grid-template-columns: 1fr;
  }
}

.cart-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.btn-ghost {
  background: transparent;
  color: var(--black);
  border: 2px solid var(--black);
}

.btn-ghost:hover {
  background: var(--black);
  color: var(--white);
  transform: translateY(-3px);
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.18);
}

/* Contact */
.contact-inner {
  width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(28px, 4vw, 48px);
  align-items: start;
}

.contact-details {
  margin-top: 20px;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.85;
  color: var(--gray-text);
}

.contact-details a {
  color: var(--black);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.3s, text-shadow 0.3s;
}

.contact-details a:hover {
  color: #3d3d3d;
  text-shadow: 0 3px 16px rgba(0, 0, 0, 0.18);
}

.contact-map-card {
  padding: 28px;
  border-radius: var(--radius-lg);
  background: var(--white);
  border: 1px solid #e5e0d8;
  min-height: 200px;
}

.contact-map-label {
  margin: 0 0 16px;
  font-size: 14px;
  font-weight: 700;
  color: var(--gray-mid);
}

.contact-map-frame {
  position: relative;
  width: 100%;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: #e8e4dc;
  box-shadow: 0 2px 14px rgba(0, 0, 0, 0.06);
  transition:
    box-shadow 0.35s,
    transform 0.35s var(--ease-out-expo);
}

.contact-map-iframe {
  display: block;
  width: 100%;
  height: clamp(220px, 42vw, 320px);
  border: 0;
}

.contact-map-external {
  display: block;
  margin-top: 14px;
  padding: 14px 18px;
  text-align: center;
  font-weight: 700;
  font-size: 15px;
  border-radius: var(--radius-md);
  background: var(--gray-soft);
  color: var(--black);
  text-decoration: none;
  border: 1px solid #e5e0d8;
  transition:
    box-shadow 0.35s,
    letter-spacing 0.35s,
    transform 0.35s var(--ease-out-expo);
}

.contact-map-external:hover {
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.1);
  letter-spacing: 0.02em;
}

.contact-map-frame:hover {
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.12);
}

@media (max-width: 900px) {
  .contact-inner {
    grid-template-columns: 1fr;
  }
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 22px;
  justify-content: center;
  margin-bottom: 18px;
}

.footer-nav a {
  font-size: 14px;
  font-weight: 700;
  color: var(--gray-text);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition:
    color 0.3s,
    text-shadow 0.3s,
    letter-spacing 0.35s var(--ease-out-expo),
    transform 0.3s var(--ease-out-expo);
}

.footer-nav a:hover {
  color: var(--black);
  letter-spacing: 0.06em;
  text-shadow: 0 3px 14px rgba(0, 0, 0, 0.12);
  transform: translateY(-2px);
}

/* Footer */
.site-footer {
  padding: 48px 24px 56px;
  text-align: center;
  border-top: 1px solid #eee;
}

.footer-brand {
  margin: 0 0 10px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1.75rem;
  letter-spacing: 0.16em;
  display: inline-block;
  transition:
    letter-spacing 0.45s var(--ease-out-expo),
    transform 0.35s var(--ease-out-expo),
    text-shadow 0.35s;
}

.site-footer:hover .footer-brand {
  letter-spacing: 0.22em;
  transform: scale(1.03);
  text-shadow: 0 6px 22px rgba(0, 0, 0, 0.12);
}

.footer-copy {
  margin: 0;
  font-size: 15px;
  font-weight: 700;
  color: var(--gray-text);
  transition: color 0.35s;
}

.site-footer:hover .footer-copy {
  color: #555;
}

/* ——— באנר כניסה — מבצעים / קולקציה ——— */
.entry-promo {
  position: fixed;
  inset: 0;
  z-index: 240;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: max(12px, env(safe-area-inset-top)) max(14px, env(safe-area-inset-end)) max(20px, env(safe-area-inset-bottom))
    max(14px, env(safe-area-inset-start));
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition:
    opacity 0.55s var(--ease-out-expo),
    visibility 0.55s;
}

.entry-promo[hidden] {
  display: none !important;
}

.entry-promo:not([hidden]) {
  display: flex;
}

.entry-promo.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.entry-promo__backdrop {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: radial-gradient(ellipse 120% 80% at 50% 20%, rgba(108, 92, 231, 0.35) 0%, transparent 55%),
    radial-gradient(ellipse 90% 60% at 80% 90%, rgba(253, 121, 168, 0.22) 0%, transparent 45%),
    rgba(12, 14, 20, 0.62);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  cursor: pointer;
  opacity: 0;
  transition: opacity 0.6s var(--ease-out-expo);
}

.entry-promo.is-open .entry-promo__backdrop {
  opacity: 1;
}

.entry-promo__glow {
  position: absolute;
  inset: 10% 5%;
  z-index: 0;
  pointer-events: none;
  border-radius: 40%;
  background: radial-gradient(circle at 30% 40%, rgba(255, 234, 167, 0.45) 0%, transparent 42%),
    radial-gradient(circle at 70% 60%, rgba(108, 92, 231, 0.35) 0%, transparent 40%);
  filter: blur(48px);
  opacity: 0;
  transform: scale(0.85);
  transition:
    opacity 0.7s var(--ease-out-expo),
    transform 0.85s cubic-bezier(0.22, 1, 0.36, 1);
}

.entry-promo.is-open .entry-promo__glow {
  opacity: 1;
  transform: scale(1);
  animation: entry-promo-glow-drift 10s ease-in-out infinite;
}

@keyframes entry-promo-glow-drift {
  0%,
  100% {
    transform: scale(1) translate(0, 0);
  }

  50% {
    transform: scale(1.04) translate(-2%, 1.5%);
  }
}

.entry-promo__panel {
  position: relative;
  z-index: 1;
  width: min(1040px, calc(100vw - 28px));
  max-height: min(90vh, 640px);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  border-radius: clamp(22px, 3.5vw, 34px);
  background: linear-gradient(145deg, #ffffff 0%, #faf8f5 100%);
  color: var(--black);
  box-shadow:
    0 40px 100px rgba(0, 0, 0, 0.35),
    0 0 0 1px rgba(255, 255, 255, 0.55),
    inset 0 1px 0 rgba(255, 255, 255, 0.95);
  transform: perspective(1200px) rotateX(4deg) translateY(36px) scale(0.9);
  opacity: 0;
  filter: saturate(0.92) brightness(0.96);
  transition:
    transform 0.75s cubic-bezier(0.22, 1, 0.36, 1),
    opacity 0.65s var(--ease-out-expo),
    filter 0.65s ease;
}

.entry-promo.is-open .entry-promo__panel {
  transform: perspective(1200px) rotateX(0deg) translateY(0) scale(1);
  opacity: 1;
  filter: saturate(1) brightness(1);
}

.entry-promo__layout {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(0, 1fr);
  min-height: min(52vh, 440px);
  flex: 1;
  min-height: 0;
}

.entry-promo__visual {
  position: relative;
  min-height: 260px;
  background: #1c1917;
  overflow: hidden;
}

.entry-promo__photo {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.entry-promo__visual::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(135deg, rgba(45, 52, 54, 0.42) 0%, transparent 52%),
    linear-gradient(to bottom, transparent 38%, rgba(0, 0, 0, 0.62) 100%);
}

.entry-promo__shine {
  z-index: 2;
  position: absolute;
  inset: -40% -60%;
  background: linear-gradient(
    105deg,
    transparent 35%,
    rgba(255, 255, 255, 0.22) 48%,
    rgba(255, 255, 255, 0.38) 50%,
    rgba(255, 255, 255, 0.18) 52%,
    transparent 65%
  );
  transform: translateX(-100%) rotate(12deg);
  pointer-events: none;
}

.entry-promo.is-open .entry-promo__shine {
  animation: entry-promo-shine 1.35s cubic-bezier(0.22, 1, 0.36, 1) 0.35s both;
}

@keyframes entry-promo-shine {
  from {
    transform: translateX(-100%) rotate(12deg);
  }

  to {
    transform: translateX(120%) rotate(12deg);
  }
}

.entry-promo__tag {
  z-index: 2;
  position: absolute;
  top: clamp(16px, 3vw, 28px);
  inset-inline-start: clamp(16px, 3vw, 28px);
  padding: 10px 18px;
  font-size: clamp(13px, 1.5vw, 15px);
  font-weight: 800;
  letter-spacing: 0.04em;
  color: var(--white);
  border-radius: var(--radius-pill);
  background: linear-gradient(125deg, #e17055 0%, #d63031 100%);
  box-shadow: 0 10px 28px rgba(214, 48, 49, 0.45);
  opacity: 0;
  transform: translateY(14px) scale(0.94);
}

.entry-promo__tag--alt {
  top: auto;
  bottom: clamp(16px, 3vw, 28px);
  inset-inline-start: clamp(16px, 3vw, 28px);
  background: linear-gradient(125deg, #6c5ce7 0%, #a29bfe 100%);
  box-shadow: 0 10px 28px rgba(108, 92, 231, 0.45);
}

.entry-promo.is-open .entry-promo__tag {
  animation: entry-promo-tag-in 0.55s cubic-bezier(0.22, 1, 0.36, 1) 0.45s both;
}

.entry-promo.is-open .entry-promo__tag--alt {
  animation: entry-promo-tag-in 0.55s cubic-bezier(0.22, 1, 0.36, 1) 0.58s both;
}

@keyframes entry-promo-tag-in {
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.entry-promo__body {
  padding: clamp(24px, 4.5vw, 40px) clamp(22px, 4vw, 44px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0;
  overflow: auto;
  min-height: 0;
}

.entry-promo__close {
  position: absolute;
  top: clamp(12px, 2vw, 18px);
  inset-inline-end: clamp(12px, 2vw, 18px);
  z-index: 4;
  width: 48px;
  height: 48px;
  padding: 0;
  display: grid;
  place-items: center;
  border: none;
  border-radius: 14px;
  cursor: pointer;
  color: var(--white);
  background: rgba(0, 0, 0, 0.38);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
  transition:
    background 0.28s,
    transform 0.35s var(--ease-out-expo),
    box-shadow 0.28s;
}

.entry-promo__close:hover {
  background: rgba(0, 0, 0, 0.58);
  transform: scale(1.06) rotate(90deg);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.28);
}

.entry-promo__close:focus-visible {
  outline: 3px solid #ffeaa7;
  outline-offset: 3px;
}

.entry-promo__eyebrow {
  margin: 0 0 12px;
  font-size: clamp(12px, 1.4vw, 14px);
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #e17055;
  opacity: 0;
  transform: translateY(12px);
}

.entry-promo__title {
  margin: 0 0 14px;
  font-size: clamp(1.55rem, 3.2vw + 0.5rem, 2.35rem);
  font-weight: 800;
  line-height: 1.18;
  background: linear-gradient(102deg, #2d3436 0%, #636e72 38%, #2d3436 72%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  opacity: 0;
  transform: translateY(18px);
}

.entry-promo__lede {
  margin: 0 0 14px;
  font-size: clamp(1.05rem, 1.8vw, 1.25rem);
  font-weight: 800;
  line-height: 1.45;
  color: #353535;
  opacity: 0;
  transform: translateY(14px);
}

.entry-promo__text {
  margin: 0 0 26px;
  font-size: clamp(1rem, 1.5vw, 1.12rem);
  font-weight: 600;
  line-height: 1.7;
  color: var(--gray-text);
  max-width: 48ch;
  opacity: 0;
  transform: translateY(14px);
}

.entry-promo__text strong {
  color: #1a1a1a;
  font-weight: 800;
}

.entry-promo__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  opacity: 0;
  transform: translateY(16px);
}

.entry-promo.is-open .entry-promo__eyebrow {
  animation: entry-promo-line-in 0.6s cubic-bezier(0.22, 1, 0.36, 1) 0.12s forwards;
}

.entry-promo.is-open .entry-promo__title {
  animation: entry-promo-line-in 0.65s cubic-bezier(0.22, 1, 0.36, 1) 0.2s forwards;
}

.entry-promo.is-open .entry-promo__lede {
  animation: entry-promo-line-in 0.6s cubic-bezier(0.22, 1, 0.36, 1) 0.32s forwards;
}

.entry-promo.is-open .entry-promo__text {
  animation: entry-promo-line-in 0.6s cubic-bezier(0.22, 1, 0.36, 1) 0.4s forwards;
}

.entry-promo.is-open .entry-promo__actions {
  animation: entry-promo-line-in 0.65s cubic-bezier(0.22, 1, 0.36, 1) 0.52s forwards;
}

@keyframes entry-promo-line-in {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.entry-promo__btn {
  flex: 1 1 auto;
  min-width: 0;
  justify-content: center;
  text-align: center;
  padding-inline: 22px;
  min-height: 50px;
  font-size: clamp(15px, 1.4vw, 17px);
}

.entry-promo__btn--ghost {
  border-color: rgba(0, 0, 0, 0.16);
  background: rgba(255, 255, 255, 0.65);
}

@media (max-width: 820px) {
  .entry-promo__layout {
    grid-template-columns: 1fr;
    min-height: unset;
  }

  .entry-promo__visual {
    min-height: clamp(200px, 38vw, 280px);
  }

  .entry-promo__panel {
    max-height: min(92vh, 720px);
  }
}

@media (max-width: 420px) {
  .entry-promo__actions {
    flex-direction: column;
  }

  .entry-promo__btn {
    width: 100%;
  }
}

/* ——— צ׳אט צף (בוט אוטומטי) ——— */
.chat-widget {
  position: fixed;
  bottom: max(22px, env(safe-area-inset-bottom));
  inset-inline-end: max(18px, env(safe-area-inset-end));
  z-index: 200;
  font-family: var(--font-body);
}

.chat-toggle {
  display: grid;
  place-items: center;
  width: 64px;
  height: 64px;
  padding: 0;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  color: var(--white);
  background: var(--black);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.28);
  transition:
    transform 0.35s var(--ease-out-expo),
    box-shadow 0.35s var(--ease-out-expo);
}

.chat-toggle:hover {
  transform: scale(1.06);
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.35);
}

.chat-toggle:focus-visible {
  outline: 3px solid rgba(255, 255, 255, 0.65);
  outline-offset: 3px;
}

.chat-widget.is-open .chat-toggle {
  transform: scale(0.94);
}

.chat-panel {
  position: fixed;
  inset-inline-end: max(18px, env(safe-area-inset-end));
  bottom: calc(max(22px, env(safe-area-inset-bottom)) + 64px + 16px);
  width: min(460px, calc(100vw - 28px));
  min-height: min(440px, calc(100vh - env(safe-area-inset-top, 0px) - env(safe-area-inset-bottom, 0px) - 80px));
  min-height: min(440px, calc(100dvh - env(safe-area-inset-top, 0px) - env(safe-area-inset-bottom, 0px) - 80px));
  max-height: min(720px, calc(100vh - env(safe-area-inset-top, 0px) - env(safe-area-inset-bottom, 0px) - 80px));
  max-height: min(720px, calc(100dvh - env(safe-area-inset-top, 0px) - env(safe-area-inset-bottom, 0px) - 80px));
  display: flex;
  flex-direction: column;
  border-radius: var(--radius-lg);
  background: var(--white);
  color: var(--black);
  box-shadow:
    0 20px 50px rgba(0, 0, 0, 0.18),
    0 0 0 1px rgba(0, 0, 0, 0.06);
  overflow: hidden;
  opacity: 0;
  transform: translateY(12px) scale(0.96);
  pointer-events: none;
  transition:
    opacity 0.32s var(--ease-out-expo),
    transform 0.32s var(--ease-out-expo);
}

.chat-widget.is-open .chat-panel {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

.chat-panel[hidden] {
  display: none !important;
}

.chat-widget.is-open .chat-panel:not([hidden]) {
  display: flex !important;
}

.chat-panel__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 18px 20px;
  flex-shrink: 0;
  background: var(--black);
  color: var(--white);
}

.chat-panel__title {
  margin: 0;
  font-size: clamp(16px, 1.35vw, 18px);
  font-weight: 800;
  letter-spacing: 0.04em;
}

.chat-panel__close {
  width: 42px;
  height: 42px;
  padding: 0;
  border: none;
  border-radius: 12px;
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
  color: var(--white);
  background: rgba(255, 255, 255, 0.12);
  transition: background 0.25s;
}

.chat-panel__close:hover {
  background: rgba(255, 255, 255, 0.22);
}

.chat-panel__messages {
  flex: 1 1 auto;
  min-height: 0;
  overflow-y: auto;
  overscroll-behavior: contain;
  padding: 18px 18px 14px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  background: #f7f7f7;
}

.chat-msg {
  max-width: 94%;
  padding: 12px 16px;
  border-radius: 18px;
  font-size: clamp(15px, 1.25vw, 17px);
  font-weight: 700;
  line-height: 1.58;
}

.chat-msg p {
  margin: 0;
}

.chat-msg--bot {
  align-self: flex-end;
  background: var(--white);
  color: var(--black);
  border: 1px solid #e4e4e4;
  border-bottom-left-radius: 4px;
}

[dir="rtl"] .chat-msg--bot {
  border-bottom-left-radius: 16px;
  border-bottom-right-radius: 4px;
}

.chat-msg--user {
  align-self: flex-start;
  background: var(--black);
  color: var(--white);
  border-bottom-right-radius: 4px;
}

[dir="rtl"] .chat-msg--user {
  border-bottom-right-radius: 16px;
  border-bottom-left-radius: 4px;
}

.chat-panel__form {
  display: flex;
  gap: 10px;
  padding: 16px 18px;
  flex-shrink: 0;
  border-top: 1px solid #e8e8e8;
  background: var(--white);
}

.chat-panel__input {
  flex: 1;
  min-width: 0;
  padding: 14px 18px;
  font: inherit;
  font-size: clamp(15px, 1.2vw, 17px);
  font-weight: 700;
  border: 2px solid #e0e0e0;
  border-radius: var(--radius-pill);
  outline: none;
  transition: border-color 0.25s, box-shadow 0.25s;
}

.chat-panel__input:focus-visible {
  border-color: var(--black);
  box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.08);
}

.chat-panel__send {
  flex-shrink: 0;
  padding: 14px 22px;
  font: inherit;
  font-size: clamp(15px, 1.2vw, 17px);
  font-weight: 800;
  border: none;
  border-radius: var(--radius-pill);
  cursor: pointer;
  color: var(--white);
  background: var(--black);
  transition: transform 0.25s var(--ease-out-expo), box-shadow 0.25s;
}

.chat-panel__send:hover {
  transform: scale(1.03);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

/* ——— פטיפון צף: צמוד לדופן השמאלי של המסך, גובה ~שליש מהעליון ——— */
.audio-radio {
  position: fixed;
  top: calc(env(safe-area-inset-top, 0px) + clamp(22vh, 31vh, 38vh));
  left: env(safe-area-inset-left, 0px);
  right: auto;
  transform: translateY(-50%);
  bottom: auto;
  z-index: 120;
  font-family: var(--font-body);
}

.audio-radio__btn {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px 14px;
  margin: 0;
  border: none;
  cursor: pointer;
  color: var(--white);
  background: linear-gradient(145deg, #2a2a2a 0%, #0d0d0d 45%, #1a1a1a 100%);
  border-radius: 20px;
  box-shadow:
    0 10px 32px rgba(0, 0, 0, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.12);
  transition:
    transform 0.35s var(--ease-out-expo),
    box-shadow 0.35s;
}

.audio-radio__btn:hover {
  transform: scale(1.04);
  box-shadow:
    0 14px 40px rgba(0, 0, 0, 0.42),
    inset 0 1px 0 rgba(255, 255, 255, 0.18);
}

.audio-radio__btn:focus-visible {
  outline: 3px solid rgba(255, 255, 255, 0.55);
  outline-offset: 4px;
}

.audio-radio__visual-wrap {
  display: flex;
  align-items: flex-end;
  gap: 10px;
}

.audio-radio__gramophone {
  display: block;
  width: clamp(52px, 14vw, 76px);
  height: auto;
  flex-shrink: 0;
  pointer-events: none;
  user-select: none;
  -webkit-user-drag: none;
  transition:
    filter 0.45s var(--ease-out-expo),
    opacity 0.45s var(--ease-out-expo);
}

.audio-radio.is-playing .audio-radio__gramophone {
  filter: drop-shadow(0 0 14px rgba(255, 195, 110, 0.55));
  opacity: 1;
}

.audio-radio.is-off .audio-radio__gramophone {
  filter: grayscale(1) brightness(0.72) contrast(0.92);
  opacity: 0.82;
}

.audio-radio__waves {
  display: flex;
  align-items: flex-end;
  gap: 4px;
  height: 22px;
}

.audio-radio__wave {
  width: 4px;
  height: 100%;
  border-radius: 3px;
  background: linear-gradient(to top, rgba(255, 200, 140, 0.9), rgba(255, 240, 210, 1));
  transform-origin: bottom center;
  transform: scaleY(0.35);
  opacity: 0.85;
}

.audio-radio.is-playing .audio-radio__wave {
  animation: audio-wave-jump 0.55s ease-in-out infinite alternate;
}

.audio-radio.is-playing .audio-radio__wave:nth-child(2) {
  animation-delay: 0.12s;
}

.audio-radio.is-playing .audio-radio__wave:nth-child(3) {
  animation-delay: 0.24s;
}

.audio-radio.is-playing .audio-radio__wave:nth-child(4) {
  animation-delay: 0.36s;
}

@keyframes audio-wave-jump {
  0% {
    transform: scaleY(0.25);
    opacity: 0.6;
  }

  100% {
    transform: scaleY(1);
    opacity: 1;
  }
}

.audio-radio.is-off .audio-radio__waves {
  opacity: 0;
  width: 0;
  gap: 0;
  overflow: hidden;
  pointer-events: none;
}

.audio-radio__notes {
  position: absolute;
  inset-inline-end: 12px;
  bottom: calc(100% + 4px);
  width: 72px;
  height: 52px;
  pointer-events: none;
}

.audio-radio__note {
  position: absolute;
  font-size: 15px;
  font-weight: 700;
  color: rgba(255, 220, 170, 0.95);
  text-shadow: 0 0 10px rgba(255, 180, 80, 0.7);
  opacity: 0;
}

.audio-radio.is-playing .audio-radio__note {
  animation: audio-note-rise 2.4s ease-out infinite;
}

.audio-radio.is-playing .audio-radio__note:nth-child(1) {
  inset-inline-start: 4px;
  bottom: 0;
  animation-delay: 0s;
}

.audio-radio.is-playing .audio-radio__note:nth-child(2) {
  inset-inline-start: 22px;
  bottom: 4px;
  animation-delay: 0.5s;
  font-size: 13px;
}

.audio-radio.is-playing .audio-radio__note:nth-child(3) {
  inset-inline-start: 38px;
  bottom: 0;
  animation-delay: 1s;
}

.audio-radio.is-playing .audio-radio__note:nth-child(4) {
  inset-inline-start: 52px;
  bottom: 8px;
  animation-delay: 1.5s;
  font-size: 12px;
}

@keyframes audio-note-rise {
  0% {
    opacity: 0;
    transform: translateY(8px) rotate(-8deg) scale(0.85);
  }

  15% {
    opacity: 1;
  }

  100% {
    opacity: 0;
    transform: translateY(-42px) rotate(6deg) scale(1.05);
  }
}

.audio-radio.is-off .audio-radio__notes {
  display: none;
}

@media (prefers-reduced-motion: reduce) {
  .chat-panel {
    transition: none !important;
  }

  .room-piece.is-dragging {
    transform: none !important;
  }

  .audio-radio.is-playing .audio-radio__wave,
  .audio-radio.is-playing .audio-radio__note {
    animation: none !important;
  }

  .audio-radio.is-playing .audio-radio__wave {
    transform: scaleY(0.75);
    opacity: 1;
  }
}

/* ——— Scroll reveal (activated when html.reveal-js is set) ——— */
.reveal {
  transition:
    opacity 1.05s var(--ease-out-expo),
    transform 1.05s var(--ease-out-expo);
  will-change: opacity, transform;
}

html.reveal-js .reveal:not(.is-visible) {
  opacity: 0;
}

html.reveal-js .reveal-fade-up:not(.is-visible) {
  transform: translate3d(0, 40px, 0);
}

html.reveal-js .reveal-fade-up.is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

html.reveal-js .reveal-scale:not(.is-visible) {
  transform: scale(0.92);
}

html.reveal-js .reveal-scale.is-visible {
  opacity: 1;
  transform: scale(1);
}

html.reveal-js .reveal-slide-start:not(.is-visible) {
  transform: translate3d(-44px, 0, 0);
}

[dir="rtl"] html.reveal-js .reveal-slide-start:not(.is-visible) {
  transform: translate3d(44px, 0, 0);
}

html.reveal-js .reveal-slide-start.is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

html.reveal-js .reveal-slide-end:not(.is-visible) {
  transform: translate3d(44px, 0, 0);
}

[dir="rtl"] html.reveal-js .reveal-slide-end:not(.is-visible) {
  transform: translate3d(-44px, 0, 0);
}

html.reveal-js .reveal-slide-end.is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

html.reveal-js .reveal-lift:not(.is-visible) {
  transform: translate3d(0, 48px, 0);
}

html.reveal-js .reveal-lift.is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.trust-inner .reveal:nth-child(1) {
  transition-delay: 0ms;
}

.trust-inner .reveal:nth-child(2) {
  transition-delay: 90ms;
}

.trust-inner .reveal:nth-child(3) {
  transition-delay: 180ms;
}

.trust-inner .reveal:nth-child(4) {
  transition-delay: 270ms;
}

.category-grid .reveal:nth-child(1) {
  transition-delay: 0ms;
}

.category-grid .reveal:nth-child(2) {
  transition-delay: 100ms;
}

.category-grid .reveal:nth-child(3) {
  transition-delay: 200ms;
}

.category-grid .reveal:nth-child(4) {
  transition-delay: 300ms;
}

.cart-steps .cart-steps__item:nth-child(1) {
  transition-delay: 0ms;
}

.cart-steps .cart-steps__item:nth-child(2) {
  transition-delay: 110ms;
}

.cart-steps .cart-steps__item:nth-child(3) {
  transition-delay: 220ms;
}

.product-grid .reveal:nth-child(1) {
  transition-delay: 0ms;
}

.product-grid .reveal:nth-child(2) {
  transition-delay: 110ms;
}

.product-grid .reveal:nth-child(3) {
  transition-delay: 220ms;
}

.product-grid .reveal:nth-child(4) {
  transition-delay: 330ms;
}

.catalog-grid .reveal:nth-child(1) {
  transition-delay: 0ms;
}

.catalog-grid .reveal:nth-child(2) {
  transition-delay: 90ms;
}

.catalog-grid .reveal:nth-child(3) {
  transition-delay: 180ms;
}

.catalog-grid .reveal:nth-child(4) {
  transition-delay: 270ms;
}

.catalog-grid .reveal:nth-child(5) {
  transition-delay: 360ms;
}

.catalog-grid .reveal:nth-child(6) {
  transition-delay: 450ms;
}

.blog-book-wrap.reveal {
  transition-delay: 120ms;
}

@media (prefers-reduced-motion: reduce) {
  html.reveal-js .reveal {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
    will-change: auto !important;
  }

  .hero-title {
    animation: none !important;
  }

  .hero-title-char:hover {
    animation: none !important;
    transform: none !important;
    filter: none !important;
    color: #c4a574;
    -webkit-text-fill-color: #c4a574;
    background: none !important;
    text-shadow:
      0 1px 0 rgba(40, 22, 14, 0.65),
      0 0 14px rgba(196, 165, 116, 0.55);
  }

  .hero-title-char--space:hover {
    color: rgba(255, 255, 255, 0.45);
    -webkit-text-fill-color: rgba(255, 255, 255, 0.45);
    text-shadow: none;
  }

  .scroll-hint {
    animation: none !important;
  }

  .hero-catalog-link:hover {
    transform: none !important;
  }

  .hero-slide-img {
    transition: none !important;
  }

  .nav-pill,
  .logo,
  .section-tint,
  .newsletter-inner {
    animation: none !important;
  }

  .nav-pill:hover {
    transform: none;
  }

  .entry-promo,
  .entry-promo__panel,
  .entry-promo__backdrop {
    transition: none !important;
  }

  .entry-promo.is-open .entry-promo__glow {
    animation: none !important;
  }

  .entry-promo__shine {
    display: none !important;
  }

  .entry-promo.is-open .entry-promo__tag,
  .entry-promo.is-open .entry-promo__tag--alt,
  .entry-promo.is-open .entry-promo__eyebrow,
  .entry-promo.is-open .entry-promo__title,
  .entry-promo.is-open .entry-promo__lede,
  .entry-promo.is-open .entry-promo__text,
  .entry-promo.is-open .entry-promo__actions {
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
  }

  .entry-promo__close:hover {
    transform: none !important;
  }

  .trust-item:hover,
  .trust-item:hover .trust-icon,
  .category-card:hover,
  .category-card:hover img,
  .product-card:hover,
  .product-card:hover .product-img-wrap img,
  .hero:hover .hero-slide.active .hero-slide-img,
  .blog-book-section,
  .blog-book-wrap {
    animation: none !important;
  }

  .blog-page {
    transition: none !important;
    filter: none !important;
  }

  .product-card:hover .product-name,
  .product-card:hover .product-price,
  .blog-page__card:hover,
  .blog-page__card:hover .blog-page__media img,
  .cart-panel:hover,
  .cart-step-card:hover,
  .cart-step-card:hover .cart-step-card__icon-wrap,
  .logo:hover,
  .contact-map-frame:hover,
  .contact-map-external:hover,
  .newsletter-input:hover,
  .shop-search-input:hover,
  .site-footer:hover .footer-brand,
  .shop-chip:hover,
  .btn-ghost:hover {
    transform: none !important;
    filter: none !important;
  }

  .hero-content:hover .hero-title,
  .nav-links .nav-trigger:hover,
  .category-card:hover .category-name,
  .category-card:hover .category-count,
  .featured-inner:hover .featured-title-light,
  .bestseller-head:hover .bestseller-title,
  .site-footer:hover .footer-brand,
  .footer-nav a:hover,
  .btn:hover {
    letter-spacing: unset !important;
    text-shadow: none !important;
    transform: none !important;
  }

  .section-heading:hover,
  .section-lead:hover,
  .section-eyebrow:hover,
  .blog-book-lead:hover {
    transform: none !important;
  }

  .about-copy .section-heading:hover {
    transform: none !important;
  }

  .blog-head .blog-book-heading:hover {
    filter: none !important;
  }

  .btn-primary::after {
    display: none !important;
  }
}
