/* ——— بخش فروشگاه (زیر هیرو) ——— */
.brand-hero + .store-home {
  margin-top: 0.15rem;
}

.store-home {
  width: 100%;
  max-width: var(--content-max);
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  gap: var(--store-block-gap);
}

.store-section {
  min-width: 0;
}

.store-promo {
  margin: 0;
  padding: 0;
}

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

.store-promo + .store-section > .section-head {
  margin-bottom: 0.45rem;
}

.section-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 0.5rem;
}

.section-head__title {
  margin: 0;
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.section-head__link {
  flex-shrink: 0;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--y-core);
  text-decoration: none;
  white-space: nowrap;
}

.section-head__link:hover {
  color: var(--y-hot);
}

/* عنوان وسط + خط تزئینی دو طرف (مثل درخشش فوتر) */
.section-head--center {
  justify-content: center;
  gap: clamp(0.65rem, 3vw, 1.1rem);
}

.section-head--center .section-head__title {
  flex-shrink: 0;
  text-align: center;
}

.section-head--center .section-head__rule {
  flex: 1;
  min-width: 1.25rem;
  max-width: 7rem;
  height: 1px;
}

.section-head--center .section-head__rule:first-of-type {
  background: linear-gradient(
    90deg,
    rgba(255, 214, 10, 0.55) 0%,
    transparent 100%
  );
}

.section-head--center .section-head__rule:last-of-type {
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(255, 214, 10, 0.55) 100%
  );
}

.store-categories .section-head,
.store-bestsellers .section-head {
  margin-bottom: 0.65rem;
}

/* اسلایدر بنر — فقط تصویر، نسبت از خود عکس */
.promo-slider {
  position: relative;
  width: 100%;
  max-width: var(--promo-slider-max);
  margin-inline: auto;
  --promo-per-view: 1;
  --promo-gap: 0;
  --promo-slide-col: 100%;
}

.promo-slider__viewport {
  overflow: hidden;
  width: 100%;
  background: transparent;
  touch-action: pan-y pinch-zoom;
  outline: none;
}

.promo-slider__viewport:focus-visible {
  outline: 2px solid var(--y-hot);
  outline-offset: 3px;
}

.promo-slider__track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: var(--promo-slide-col);
  align-items: start;
  gap: var(--promo-gap);
  width: 100%;
  background: transparent;
  transition: transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}

.promo-slider__loading {
  grid-column: 1 / -1;
  margin: 0;
  padding: 2rem 1rem;
  text-align: center;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--text-muted);
  animation: promoLoadPulse 1.4s ease-in-out infinite;
}

@keyframes promoLoadPulse {
  0%,
  100% {
    opacity: 0.45;
  }
  50% {
    opacity: 1;
  }
}

.promo-slide {
  display: block;
  min-width: 0;
  overflow: hidden;
  text-decoration: none;
  border: none;
  background: transparent;
  clip-path: var(--btn-clip);
  transition: filter 0.15s ease;
}

.promo-slide__img {
  display: block;
  width: 100%;
  height: auto;
  vertical-align: top;
}

@media (min-width: 48rem) {
  .promo-slider {
    --promo-per-view: 2;
    --promo-gap: 0.65rem;
    --promo-slide-col: calc((100% - var(--promo-gap)) / 2);
  }
}

/* دسته‌بندی */
.cat-grid__loading {
  grid-column: 1 / -1;
  margin: 0;
  padding: 1rem;
  text-align: center;
  font-size: 0.85rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.55);
}

.cat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.5rem;
}

.cat-card {
  display: block;
  min-height: 0;
  padding: 0;
  overflow: hidden;
  text-decoration: none;
  color: var(--text);
  background: var(--bg-card);
  border: 1px solid var(--border);
  clip-path: polygon(0.45rem 0, 100% 0, 100% calc(100% - 0.45rem), calc(100% - 0.45rem) 100%, 0 100%, 0 0.45rem);
  transition: border-color 0.15s ease, transform 0.15s ease, box-shadow 0.15s ease;
}

.cat-card:hover {
  border-color: var(--border-strong);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.35);
}

.cat-card__media {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--bg-soft);
}

.cat-card__img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.35s ease;
}

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

.cat-card__name {
  display: none;
}

.product-card__img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

/* ——— پیشنهاد ویژه ——— */
.deals__panel {
  --deals-promo-col: clamp(5.5rem, 26vw, 8.75rem);
  position: relative;
  margin-inline: calc(-1 * var(--pad-inline));
  border-radius: 0.75rem;
  border: 1px solid rgba(255, 214, 10, 0.22);
  overflow: hidden;
  min-height: 14.5rem;
  background: #000;
}

.deals__body {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: stretch;
}

.deals__promo {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin: 0;
  padding: 0.6rem 0.75rem 0.25rem;
  pointer-events: none;
}

.deals__promo-logo {
  display: block;
  width: auto;
  max-width: min(11rem, 58vw);
  height: auto;
  max-height: clamp(4.25rem, 18vw, 5.75rem);
  object-fit: contain;
  filter: drop-shadow(0 4px 14px rgba(0, 0, 0, 0.4));
}

.deals__rail {
  position: relative;
  flex: 0 0 auto;
  min-width: 0;
  padding: 0.2rem 0 0.65rem;
}

.deals__rail-viewport {
  overflow-x: auto;
  overflow-y: hidden;
  direction: rtl;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior-x: contain;
  scroll-snap-type: x proximity;
  scroll-padding-inline: max(0.65rem, var(--pad-inline));
  scrollbar-width: none;
  outline: none;
  padding-bottom: 0.15rem;
}

.deals__rail-viewport::-webkit-scrollbar {
  display: none;
}

.deals__rail-viewport:focus-visible {
  outline: 2px solid var(--y-hot);
  outline-offset: 2px;
}

.deals__rail.is-scrollable .deals__rail-viewport {
  cursor: grab;
}

.deals__rail-viewport.is-dragging {
  cursor: grabbing;
  user-select: none;
}

.deals__rail-viewport.is-dragging .deal-card,
.deals__rail-viewport.is-dragging .deal-card a,
.deals__rail-viewport.is-dragging .deal-card__thumb {
  pointer-events: none;
  -webkit-user-drag: none;
  user-drag: none;
}

.deals__rail-track {
  display: flex;
  flex-wrap: nowrap;
  align-items: flex-start;
  gap: 0.65rem;
  width: max-content;
  padding-inline: max(0.65rem, var(--pad-inline));
  padding-bottom: 0.65rem;
}

/* کارت تخفیف — تصویر چسبیده به بالا و بغل، گوشه‌های کارت = گوشه‌های تصویر */
.deal-card {
  --deal-w: 9.25rem;
  --deal-radius: 1.75rem;
  flex: 0 0 var(--deal-w);
  width: var(--deal-w);
  scroll-snap-align: start;
  display: flex;
  flex-direction: column;
  min-width: 0;
  padding: 0;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--deal-radius);
  overflow: hidden;
  transition: border-color 0.15s ease, transform 0.15s ease;
}

.deal-card:hover {
  border-color: var(--border-strong);
  transform: translateY(-2px);
}

.deal-card__media {
  display: block;
  width: 100%;
  margin: 0;
  aspect-ratio: 1 / 1;
  flex-shrink: 0;
  overflow: hidden;
  border-radius: var(--deal-radius) var(--deal-radius) 0 0;
  text-decoration: none;
  line-height: 0;
}

.deal-card__thumb {
  display: block;
  width: 100%;
  height: 100%;
  aspect-ratio: 1 / 1;
  vertical-align: top;
  object-fit: cover;
  object-position: center;
}

.deal-card__body {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
  flex: 1 1 auto;
  padding: 0.5rem 0.5rem 0.45rem;
  text-align: center;
}

.deal-card__title {
  margin: 0;
  font-size: 0.7rem;
  font-weight: 700;
  line-height: 1.5;
  min-height: 2.1em;
  color: rgba(255, 255, 255, 0.94);
}

.deal-card__title a {
  color: inherit;
  text-decoration: none;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.deal-card__title a:hover {
  color: var(--y-hot);
}

.deal-card__discount {
  display: inline-block;
  padding: 0.18rem 0.55rem;
  font-size: 0.62rem;
  font-weight: 800;
  line-height: 1.25;
  color: #fff;
  background: #d32f2f;
  border-radius: 999px;
}

.deal-card__price {
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: center;
  gap: 0.15rem 0.25rem;
  line-height: 1.25;
}

.deal-card__price ins {
  font-size: 0.8rem;
  font-weight: 800;
  color: #fff;
  text-decoration: none;
}

.deal-card__unit {
  font-size: 0.6rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.55);
}

.product-price-range {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: center;
  gap: 0.1rem 0.18rem;
  max-width: 100%;
}

.product-price-range__amount {
  font-weight: 800;
  white-space: nowrap;
}

.product-price-range__sep {
  font-size: 0.85em;
  font-weight: 700;
  line-height: 1;
  color: rgba(255, 255, 255, 0.45);
  margin-inline: 0.05rem;
}

.deal-card__price--range ins,
.product-card__price--range ins {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: center;
  gap: 0.1rem 0.15rem;
  max-width: 100%;
}

.deal-card__price--range .product-price-range__amount {
  font-size: 0.68rem;
}

.product-card__price--range .product-price-range__amount {
  font-size: 0.88em;
}

.deal-card > .deal-card__buy {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: 100%;
  margin: 0;
  min-height: 2.45rem;
  padding: 0.55rem 0.75rem;
  font-size: 0.78rem;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0.03em;
  color: #1a1000;
  text-decoration: none;
  background: linear-gradient(180deg, #fff0a8 0%, var(--y-hot) 38%, #e8b800 100%);
  border: none;
  border-top: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 0;
  box-sizing: border-box;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.45),
    0 -2px 12px rgba(255, 214, 10, 0.12);
  transition:
    filter 0.2s ease,
    box-shadow 0.2s ease,
    transform 0.15s ease;
}

.deal-card > .deal-card__buy-icon {
  display: grid;
  place-items: center;
  flex-shrink: 0;
  width: 1.5rem;
  height: 1.5rem;
  font-size: 0.78rem;
  color: #1a1000;
  background: rgba(0, 0, 0, 0.1);
  border-radius: 50%;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.35),
    0 2px 6px rgba(0, 0, 0, 0.15);
  transition: transform 0.2s ease, background 0.2s ease;
}

.deal-card > .deal-card__buy-text {
  position: relative;
  top: 0.02em;
}

.deal-card > .deal-card__buy:hover {
  filter: brightness(1.06);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.55),
    0 -2px 18px rgba(255, 214, 10, 0.22);
}

.deal-card > .deal-card__buy:hover .deal-card__buy-icon {
  transform: scale(1.08);
  background: rgba(0, 0, 0, 0.14);
}

.deal-card > .deal-card__buy:active {
  transform: scale(0.985);
  filter: brightness(0.98);
}

.deal-card > .deal-card__buy:focus-visible {
  outline: 2px solid rgba(255, 240, 160, 0.9);
  outline-offset: -2px;
}

/* موجودی — تصویر خاکستری + برچسب ناموجود */
.deal-card__media-frame,
.product-card__media-frame {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  line-height: 0;
}

.product-stock-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.35rem;
  text-align: center;
  background: rgba(0, 0, 0, 0.52);
  pointer-events: none;
}

.product-stock-overlay__text {
  display: inline-block;
  max-width: 92%;
  padding: 0.35rem 0.55rem;
  font-size: 0.68rem;
  font-weight: 800;
  line-height: 1.35;
  color: #fff;
  background: rgba(0, 0, 0, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 0.45rem;
}

.deal-card--unavailable .deal-card__thumb,
.deal-card--unavailable .deal-card__thumb--placeholder {
  filter: grayscale(1) brightness(0.42);
}

.deal-card--unavailable:hover {
  transform: none;
  border-color: var(--border);
}

.deal-card--unavailable > .deal-card__buy--disabled {
  background: linear-gradient(180deg, #4a4a4a 0%, #2a2a2a 100%);
  color: rgba(255, 255, 255, 0.75);
  box-shadow: none;
}

.deal-card--limited .product-stock-overlay {
  background: rgba(0, 0, 0, 0.38);
}

.deal-card--limited .product-stock-overlay__text {
  font-size: 0.58rem;
  color: #fde68a;
  background: rgba(120, 80, 0, 0.75);
  border-color: rgba(253, 230, 138, 0.35);
}

.product-card--unavailable .product-card__img {
  filter: grayscale(1) brightness(0.42);
}

.product-card--unavailable .product-card__link {
  cursor: default;
}

/* موبایل: لوگو بالا، کارت‌ها پایین — همه روی پس‌زمینه بنر */
@media (max-width: 47.99rem) {
  .deals__panel {
    border-radius: 0.65rem;
    min-height: 14.5rem;
  }

  .deals__body {
    flex-direction: column;
  }

  .deals__promo {
    padding: 0.55rem 0.65rem 0.15rem;
  }

  .deals__promo-logo {
    max-width: min(10.5rem, 52vw);
    max-height: 5.25rem;
  }

  .deals__rail {
    padding-bottom: 0.35rem;
  }

  .deal-card {
    --deal-w: clamp(8.5rem, 42vw, 9.75rem);
    flex: 0 0 var(--deal-w);
    width: var(--deal-w);
  }
}

/* دسکتاپ: لوگو راست، کارت‌ها چپ — روی همان پس‌زمینه */
@media (min-width: 48rem) {
  .deals__panel {
    min-height: 11.5rem;
  }

  .deals__body {
    display: grid;
    grid-template-columns: var(--deals-promo-col) minmax(0, 1fr);
    align-items: center;
    gap: 0.65rem;
    padding: 0.75rem 0.85rem 0.8rem 1rem;
  }

  .deals__promo {
    grid-column: 1;
    grid-row: 1;
    align-self: center;
    padding: 0.35rem 0.25rem;
  }

  .deals__promo-logo {
    max-width: 100%;
    max-height: clamp(5.5rem, 14vw, 9rem);
  }

  .deals__rail {
    grid-column: 2;
    grid-row: 1;
    padding: 0.15rem 0;
  }

  .deals__rail-track {
    padding-inline-start: 0.15rem;
    padding-inline-end: 0.35rem;
  }

  .deal-card {
    --deal-w: 9.5rem;
    flex: 0 0 var(--deal-w);
    width: var(--deal-w);
  }
}

/* کارت محصول */
.product-scroll {
  display: flex;
  gap: 0.55rem;
  overflow-x: auto;
  overscroll-behavior-x: contain;
  scroll-snap-type: x mandatory;
  scrollbar-width: thin;
  scrollbar-color: rgba(255, 193, 7, 0.35) transparent;
  padding-bottom: 0.25rem;
  margin-inline: calc(-1 * var(--pad-inline));
  padding-inline: var(--pad-inline);
}

.product-scroll .product-card {
  flex: 0 0 min(72%, 11.5rem);
  scroll-snap-align: start;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.55rem;
}

.product-card {
  --product-card-radius: 1.75rem;
  min-width: 0;
  background: var(--bg-card);
  border: 1px solid var(--border);
  clip-path: none;
  border-radius: var(--product-card-radius);
  overflow: hidden;
  transition: border-color 0.15s ease, transform 0.15s ease;
}

.product-card:hover {
  border-color: var(--border-strong);
  transform: translateY(-2px);
}

.product-card__link {
  display: block;
  text-decoration: none;
  color: inherit;
}

.product-card__media {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: transparent;
}

.product-card__media[class*="product-card__media--"] {
  background: transparent !important;
}

.product-card--grid .product-card__link {
  display: flex;
  flex-direction: column;
  padding: 0;
  overflow: hidden;
  border-radius: inherit;
}

.product-card--grid .product-card__media {
  flex: 0 0 auto;
  width: 100%;
  aspect-ratio: 1 / 1;
  margin: 0;
  border-radius: var(--product-card-radius) var(--product-card-radius) 0 0;
}

.product-card--grid .product-card__title {
  flex: 0 0 auto;
  margin: 0;
  padding: 0.4rem 0.5rem 0.15rem;
}

.product-card--grid .product-card__price {
  flex: 0 0 auto;
  margin-top: 0;
  padding: 0 0.5rem 0.5rem;
}

.product-card__badge {
  position: absolute;
  top: 0.35rem;
  inset-inline-start: 0.35rem;
  padding: 0.15rem 0.4rem;
  font-size: 0.65rem;
  font-weight: 800;
  color: #1a1000;
  background: var(--y-hot);
  clip-path: polygon(0.25rem 0, 100% 0, 100% calc(100% - 0.25rem), calc(100% - 0.25rem) 100%, 0 100%, 0 0.25rem);
}

.product-card__title {
  margin: 0 0 0.2rem;
  font-size: 0.78rem;
  font-weight: 700;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.product-card__meta {
  margin: 0 0 0.35rem;
  font-size: 0.68rem;
  color: var(--text-muted);
}

.product-card__price {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.35rem;
}

.product-card__price del {
  font-size: 0.68rem;
  color: var(--text-muted);
  text-decoration: line-through;
}

.product-card__price ins {
  font-size: 0.82rem;
  font-weight: 800;
  color: var(--y-hot);
  text-decoration: none;
}

.product-card__price ins span {
  font-size: 0.65rem;
  font-weight: 600;
}

/* تبلت — بدون سایدبار؛ داک پایین */
@media (min-width: 36rem) {
  :root {
    --char-h: min(42svh, 20rem);
    --hero-gap: clamp(0.75rem, 3vw, 1.25rem);
  }

  .store-logo__img {
    width: 2.75rem;
    height: 2.75rem;
  }

  .brand-hero__layout {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.12fr);
    grid-template-areas: "content visual";
    align-items: center;
  }

  .brand-hero__content {
    align-self: center;
    justify-content: center;
  }

  .brand-hero__visual {
    align-self: center;
  }

  .hero-stage {
    align-items: center;
  }

  .character-img {
    max-width: min(100%, 21rem);
    object-position: center center;
  }

  .text-particles-wrap,
  .brand-actions {
    max-width: none;
    margin-inline: 0;
  }

  .text-particles-wrap {
    width: min(100%, 32rem);
    max-width: 32rem;
    height: clamp(5.5rem, 14vw, 7.25rem);
  }

  .brand-actions {
    margin-bottom: 0;
  }

  .brand-hero + .store-home {
    margin-top: 0.2rem;
  }

  .cat-grid {
    grid-template-columns: repeat(6, 1fr);
    gap: 0.6rem;
  }

  .product-scroll .product-card {
    flex: 0 0 min(42%, 12rem);
  }

  .product-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 0.65rem;
  }
}

/* lg: دسکتاپ — محتوای اختصاصی home (چیدمان هدر/منو در app.css + shell-desktop.css) */
@media (min-width: 64rem) {
  :root {
    --char-h: min(50vh, 24rem);
    --hero-gap: clamp(1.25rem, 2.5vw, 2rem);
  }

  .page-main {
    padding-top: 1rem;
  }

  .brand-hero__layout {
    grid-template-columns: minmax(15rem, 1fr) minmax(17rem, 1.1fr);
    grid-template-areas: "content visual";
    align-items: center;
  }

  .brand-hero__content {
    align-self: center;
    justify-content: center;
  }

  .brand-hero__visual {
    align-self: center;
  }

  .hero-stage {
    align-items: center;
  }

  .text-particles-wrap {
    width: min(100%, 34rem);
    max-width: 34rem;
    height: clamp(6rem, 8vw, 8.25rem);
  }

  .brand-actions {
    flex-direction: row;
    gap: 0.6rem;
  }

  .btn {
    flex: 1 1 0;
    width: auto;
    min-width: 0;
    white-space: nowrap;
    --btn-cut: 0.7rem;
  }

  .character-img {
    max-width: min(100%, 24rem);
    animation: hero-float 5s ease-in-out infinite;
  }

  .brand-hero + .store-home {
    margin-top: 0.35rem;
  }

  :root {
    --store-block-gap: 0.65rem;
  }

  .section-head__title {
    font-size: 1.1rem;
  }

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

  .promo-slider {
    --promo-per-view: 3;
    --promo-gap: 0.65rem;
    --promo-slide-col: calc((100% - 2 * var(--promo-gap)) / 3);
  }
}

@media (min-width: 75rem) {
  .brand-hero__layout {
    grid-template-columns: minmax(17rem, 1fr) minmax(20rem, 1.12fr);
  }
}

@media (hover: hover) {
  .btn--primary:hover {
    transform: translateY(-2px);
    filter: brightness(1.06);
    box-shadow:
      0 6px 26px rgba(255, 193, 7, 0.42),
      inset 0 1px 0 rgba(255, 255, 255, 0.45),
      inset 0 -2px 0 rgba(0, 0, 0, 0.1);
  }

  .btn--ghost:hover {
    filter: brightness(1.08);
    box-shadow:
      inset 0 0 0 1px rgba(255, 214, 10, 0.45),
      inset 0 1px 0 rgba(255, 214, 10, 0.14),
      0 4px 16px rgba(255, 193, 7, 0.12);
  }

  .store-header__auth:hover {
    transform: translateY(-1px);
    filter: brightness(1.06);
    box-shadow:
      0 5px 18px rgba(255, 193, 7, 0.35),
      inset 0 1px 0 rgba(255, 255, 255, 0.4);
  }

  .promo-slide:hover {
    filter: brightness(1.04);
  }
}

@media (prefers-reduced-motion: reduce) {
  .character-img {
    animation: none;
  }

  .promo-slider__track {
    transition: none;
  }

  .btn:hover,
  .store-header__auth:hover,
  .cat-card:hover,
  .product-card:hover,
  .promo-slide:hover {
    filter: none;
  }
}

@keyframes hero-float {
  0%,
  100% {
    transform: translate3d(0, 0, 0);
  }
  50% {
    transform: translate3d(0, -8px, 0);
  }
}

@keyframes hero-float-mobile {
  0%,
  100% {
    transform: translate3d(0, 0, 0);
  }
  50% {
    transform: translate3d(0, -4px, 0);
  }
}

