/*
 * OnRun Premium Experience — cinematic.css
 * Prefixed: onrun-cinematic-
 * RTL-ready, mobile-first, Elementor/Woodmart/WooCommerce compatible
 */

/* ═══════════════════════════════════════════
   CSS Custom Properties
═══════════════════════════════════════════ */
:root {
  --onrun-white:       #ffffff;
  --onrun-off-white:   #f7f6f4;
  --onrun-light:       #eeece9;
  --onrun-muted:       #a09e9a;
  --onrun-dark:        #111110;
  --onrun-charcoal:    #1e1d1b;
  --onrun-accent:      #e8390e;
  --onrun-accent-2:    #ff6b35;
  --onrun-gold:        #c9a84c;
  --onrun-font-fa:     'Vazirmatn', 'Tahoma', sans-serif;
  --onrun-font-en:     'Montserrat', 'Helvetica Neue', sans-serif;
  --onrun-radius:      12px;
  --onrun-radius-lg:   20px;
  --onrun-transition:  0.42s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --onrun-z-story:     10;
}

/* ═══════════════════════════════════════════
   Google Fonts import
═══════════════════════════════════════════ */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700;800&display=swap');

/* ═══════════════════════════════════════════
   Global resets (scoped — no body/html)
═══════════════════════════════════════════ */
.onrun-cinematic-hero,
.onrun-cinematic-story,
.onrun-cinematic-models,
.onrun-cinematic-popular,
.onrun-cinematic-bestsellers,
.onrun-cinematic-cta {
  box-sizing: border-box;
  font-family: var(--onrun-font-fa);
  direction: rtl;
  text-align: right;
}

.onrun-cinematic-hero *,
.onrun-cinematic-story *,
.onrun-cinematic-models *,
.onrun-cinematic-popular *,
.onrun-cinematic-bestsellers *,
.onrun-cinematic-cta * {
  box-sizing: border-box;
}

/* ═══════════════════════════════════════════
   Utility: Container
═══════════════════════════════════════════ */
.onrun-cinematic-container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* ═══════════════════════════════════════════
   Utility: Buttons
═══════════════════════════════════════════ */
.onrun-cinematic-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.8rem 1.8rem;
  border-radius: 50px;
  font-family: var(--onrun-font-fa);
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: var(--onrun-transition);
  border: 2px solid transparent;
  white-space: nowrap;
}

.onrun-cinematic-btn--primary {
  background: var(--onrun-accent);
  color: var(--onrun-white);
  border-color: var(--onrun-accent);
}
.onrun-cinematic-btn--primary:hover {
  background: #c7300a;
  border-color: #c7300a;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(232, 57, 14, 0.35);
}

.onrun-cinematic-btn--secondary {
  background: transparent;
  color: var(--onrun-dark);
  border-color: var(--onrun-dark);
}
.onrun-cinematic-btn--secondary:hover {
  background: var(--onrun-dark);
  color: var(--onrun-white);
  transform: translateY(-2px);
}

.onrun-cinematic-btn--outline {
  background: transparent;
  color: var(--onrun-accent);
  border-color: var(--onrun-accent);
}
.onrun-cinematic-btn--outline:hover {
  background: var(--onrun-accent);
  color: var(--onrun-white);
  transform: translateY(-2px);
}

.onrun-cinematic-btn--ghost {
  background: transparent;
  color: var(--onrun-white);
  border-color: rgba(255,255,255,0.4);
}
.onrun-cinematic-btn--ghost:hover {
  background: rgba(255,255,255,0.12);
  border-color: var(--onrun-white);
}

.onrun-cinematic-btn--lg {
  padding: 1rem 2.4rem;
  font-size: 1.05rem;
}

/* ═══════════════════════════════════════════
   Section Header
═══════════════════════════════════════════ */
.onrun-cinematic-section-header {
  text-align: center;
  margin-bottom: 3.5rem;
}
.onrun-cinematic-section-title {
  font-family: var(--onrun-font-fa);
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 700;
  color: var(--onrun-dark);
  margin: 0 0 1rem;
  line-height: 1.3;
}
.onrun-cinematic-section-title span {
  color: var(--onrun-accent);
  font-family: var(--onrun-font-en);
}
.onrun-cinematic-section-line {
  width: 48px;
  height: 3px;
  background: var(--onrun-accent);
  margin: 0 auto;
  border-radius: 2px;
}

/* ═══════════════════════════════════════════
   SECTION 1 — Hero
═══════════════════════════════════════════ */
.onrun-cinematic-hero {
  position: relative;
  min-height: 90vh;
  background: var(--onrun-off-white);
  overflow: hidden;
  display: flex;
  align-items: center;
}

.onrun-cinematic-hero__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 60% at 30% 50%, rgba(232,57,14,0.06) 0%, transparent 70%),
    radial-gradient(ellipse 50% 80% at 80% 20%, rgba(201,168,76,0.05) 0%, transparent 60%);
}

.onrun-cinematic-hero__content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 3rem;
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 5rem 3rem;
}

.onrun-cinematic-hero__text {
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
}

.onrun-cinematic-hero__eyebrow {
  font-family: var(--onrun-font-en);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--onrun-accent);
}

.onrun-cinematic-hero__title {
  font-size: clamp(2.2rem, 4.5vw, 4rem);
  font-weight: 800;
  color: var(--onrun-dark);
  line-height: 1.15;
  margin: 0;
}

.onrun-cinematic-hero__brand {
  font-family: var(--onrun-font-en);
  color: var(--onrun-accent);
}

.onrun-cinematic-hero__subtitle {
  font-size: 1.05rem;
  color: #555;
  line-height: 1.8;
  max-width: 420px;
  margin: 0;
}

.onrun-cinematic-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 0.5rem;
}

.onrun-cinematic-hero__image-wrap {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.onrun-cinematic-hero__img {
  width: 100%;
  max-width: 560px;
  object-fit: contain;
  filter: drop-shadow(0 30px 60px rgba(0,0,0,0.14));
  animation: onrun-hero-float 6s ease-in-out infinite;
}

.onrun-cinematic-hero__glow {
  position: absolute;
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, rgba(232,57,14,0.15) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  animation: onrun-hero-float 6s ease-in-out infinite reverse;
}

@keyframes onrun-hero-float {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-16px); }
}

.onrun-cinematic-hero__scroll-hint {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.72rem;
  color: var(--onrun-muted);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-family: var(--onrun-font-en);
  z-index: 2;
}

.onrun-cinematic-hero__scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--onrun-muted), transparent);
  animation: onrun-scroll-pulse 2s ease-in-out infinite;
}

@keyframes onrun-scroll-pulse {
  0%, 100% { opacity: 0.4; transform: scaleY(1); }
  50%       { opacity: 1;   transform: scaleY(1.3); transform-origin: top; }
}

/* ═══════════════════════════════════════════
   SECTION 2 — Shoe Story
═══════════════════════════════════════════ */
.onrun-cinematic-story {
  position: relative;
  background: var(--onrun-dark);
  /* Height is controlled by JS via GSAP pin */
}

.onrun-cinematic-story__pin-wrap {
  /* GSAP will pin this */
}

.onrun-cinematic-story__canvas {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 560px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  overflow: hidden;
  padding: 0 4vw;
}

/* Spotlight */
.onrun-cinematic-story__spotlight {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 55% 70% at 50% 50%, rgba(255,255,255,0.04) 0%, transparent 70%);
  pointer-events: none;
}

/* Shoe stage */
.onrun-cinematic-story__shoe-stage {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  z-index: 1;
}

.onrun-cinematic-story__shoe-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  opacity: 0;
  transform: scale(0.92) translateX(20px);
  transition: opacity 0.65s ease, transform 0.65s ease;
  padding: 5vh 3vw;
  filter: drop-shadow(0 20px 60px rgba(255,255,255,0.08));
}

.onrun-cinematic-story__shoe-img.is-active {
  opacity: 1;
  transform: scale(1) translateX(0);
}

.onrun-cinematic-story__shoe-shadow {
  position: absolute;
  bottom: 8%;
  left: 50%;
  transform: translateX(-50%);
  width: 55%;
  height: 20px;
  background: radial-gradient(ellipse, rgba(255,255,255,0.1) 0%, transparent 70%);
  filter: blur(12px);
  border-radius: 50%;
}

/* Text panel */
.onrun-cinematic-story__text-panel {
  position: relative;
  padding: 4rem 2rem 4rem 4rem;
  z-index: 2;
}

.onrun-cinematic-story__step {
  position: absolute;
  inset: 4rem 2rem 4rem 4rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1rem;
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.5s ease, transform 0.5s ease;
  pointer-events: none;
}

.onrun-cinematic-story__step.is-active {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.onrun-cinematic-story__step-num {
  font-family: var(--onrun-font-en);
  font-size: 4rem;
  font-weight: 800;
  color: rgba(255,255,255,0.05);
  line-height: 1;
  letter-spacing: -0.04em;
  position: absolute;
  top: 1rem;
  right: 2rem;
}

.onrun-cinematic-story__step-label {
  font-family: var(--onrun-font-en);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--onrun-accent);
}

.onrun-cinematic-story__step-title {
  font-family: var(--onrun-font-fa);
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 800;
  color: var(--onrun-white);
  margin: 0;
  line-height: 1.2;
}

.onrun-cinematic-story__step-desc {
  font-size: 1rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.8;
  max-width: 380px;
  margin: 0;
}

.onrun-cinematic-story__step-tag {
  display: inline-block;
  padding: 0.35rem 1rem;
  background: rgba(232,57,14,0.18);
  border: 1px solid rgba(232,57,14,0.35);
  border-radius: 50px;
  font-family: var(--onrun-font-en);
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--onrun-accent-2);
  letter-spacing: 0.05em;
  width: fit-content;
}

/* Progress dots */
.onrun-cinematic-story__dots {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.5rem;
  z-index: 10;
}

.onrun-cinematic-story__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.25);
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 0;
}
.onrun-cinematic-story__dot.is-active {
  background: var(--onrun-accent);
  width: 24px;
  border-radius: 4px;
}

/* Step counter */
.onrun-cinematic-story__counter {
  position: absolute;
  bottom: 2.2rem;
  right: 4vw;
  font-family: var(--onrun-font-en);
  font-size: 0.82rem;
  color: rgba(255,255,255,0.3);
  z-index: 10;
  display: flex;
  align-items: center;
  gap: 0.2rem;
}

.onrun-cinematic-story__counter-current {
  color: var(--onrun-white);
  font-weight: 700;
}

/* Progress bar */
.onrun-cinematic-story__progress-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: rgba(255,255,255,0.08);
  z-index: 10;
}

.onrun-cinematic-story__progress-fill {
  height: 100%;
  background: var(--onrun-accent);
  width: 25%;
  transition: width 0.4s ease;
}

/* ═══════════════════════════════════════════
   SECTION 3 — Product Models
═══════════════════════════════════════════ */
.onrun-cinematic-models {
  background: var(--onrun-white);
}

.onrun-cinematic-model {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  min-height: 80vh;
  overflow: hidden;
}

.onrun-cinematic-model--text-left {
  direction: ltr;
}

.onrun-cinematic-model__image-col {
  position: relative;
  height: 100%;
  min-height: 480px;
  overflow: hidden;
  background: var(--onrun-light);
}

.onrun-cinematic-model__image-col.is-hidden {
  display: none;
}

.onrun-cinematic-model__image-reveal {
  position: absolute;
  inset: 0;
  clip-path: inset(0 100% 0 0);
  transition: clip-path 0.85s cubic-bezier(0.16, 1, 0.3, 1);
}

.onrun-cinematic-model.is-revealed .onrun-cinematic-model__image-reveal {
  clip-path: inset(0 0% 0 0);
}

.onrun-cinematic-model__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.1);
  transition: transform 0.85s cubic-bezier(0.16, 1, 0.3, 1);
}

.onrun-cinematic-model.is-revealed .onrun-cinematic-model__img {
  transform: scale(1);
}

.onrun-cinematic-model__text-col {
  padding: 5rem 4vw;
  display: flex;
  align-items: center;
  justify-content: center;
}

.onrun-cinematic-model--text-left .onrun-cinematic-model__text-col {
  direction: rtl;
}

.onrun-cinematic-model__text-inner {
  max-width: 460px;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease 0.2s, transform 0.7s ease 0.2s;
}

.onrun-cinematic-model.is-revealed .onrun-cinematic-model__text-inner {
  opacity: 1;
  transform: translateY(0);
}

.onrun-cinematic-model__tag {
  font-family: var(--onrun-font-en);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--onrun-accent);
}

.onrun-cinematic-model__name {
  font-family: var(--onrun-font-en);
  font-size: clamp(2.4rem, 4vw, 3.6rem);
  font-weight: 800;
  color: var(--onrun-dark);
  margin: 0;
  line-height: 1;
  letter-spacing: -0.02em;
}

.onrun-cinematic-model__tagline {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--onrun-charcoal);
  margin: 0;
}

.onrun-cinematic-model__desc {
  font-size: 0.95rem;
  color: #666;
  line-height: 1.8;
  margin: 0;
}

/* Alternating backgrounds */
.onrun-cinematic-model:nth-child(even) {
  background: var(--onrun-off-white);
}
.onrun-cinematic-model:nth-child(even) .onrun-cinematic-model__image-col {
  background: var(--onrun-light);
}

/* ═══════════════════════════════════════════
   SECTION 4 — Popular Models
═══════════════════════════════════════════ */
.onrun-cinematic-popular {
  background: var(--onrun-dark);
  padding: 6rem 0;
  overflow: hidden;
}

.onrun-cinematic-popular .onrun-cinematic-section-title {
  color: var(--onrun-white);
}

.onrun-cinematic-popular__track {
  display: flex;
  gap: 1.2rem;
  overflow-x: auto;
  padding: 0 2rem 1.5rem;
  scrollbar-width: none;
  -ms-overflow-style: none;
  cursor: grab;
}

.onrun-cinematic-popular__track::-webkit-scrollbar {
  display: none;
}

.onrun-cinematic-popular__track.is-grabbing {
  cursor: grabbing;
}

.onrun-cinematic-popular__card {
  flex: 0 0 200px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--onrun-radius-lg);
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.3s ease, border-color 0.3s ease, background 0.3s ease;
  opacity: 0;
  transform: translateY(20px);
}

.onrun-cinematic-popular__card.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.onrun-cinematic-popular__card:hover {
  transform: translateY(-6px);
  border-color: rgba(232,57,14,0.4);
  background: rgba(232,57,14,0.06);
}

.onrun-cinematic-popular__card-img-wrap {
  height: 160px;
  overflow: hidden;
  background: rgba(255,255,255,0.04);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.onrun-cinematic-popular__card-img-wrap.is-hidden {
  display: none;
}

.onrun-cinematic-popular__card-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 0.4s ease;
}

.onrun-cinematic-popular__card:hover .onrun-cinematic-popular__card-img {
  transform: scale(1.08);
}

.onrun-cinematic-popular__card-body {
  padding: 1rem 1.2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.onrun-cinematic-popular__card-name {
  font-family: var(--onrun-font-en);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--onrun-white);
}

.onrun-cinematic-popular__card-arrow {
  color: var(--onrun-accent);
  display: flex;
  align-items: center;
  opacity: 0;
  transform: translateX(4px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.onrun-cinematic-popular__card:hover .onrun-cinematic-popular__card-arrow {
  opacity: 1;
  transform: translateX(0);
}

.onrun-cinematic-popular__swipe-hint {
  text-align: center;
  color: rgba(255,255,255,0.25);
  font-size: 0.75rem;
  margin: 0.5rem 0 0;
  display: none;
}

/* ═══════════════════════════════════════════
   SECTION 5 — WooCommerce Best Sellers
═══════════════════════════════════════════ */
.onrun-cinematic-bestsellers {
  background: var(--onrun-off-white);
  padding: 7rem 0;
}

.onrun-cinematic-bestsellers__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.onrun-cinematic-bestsellers__card {
  background: var(--onrun-white);
  border-radius: var(--onrun-radius-lg);
  overflow: hidden;
  box-shadow: 0 2px 16px rgba(0,0,0,0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  opacity: 0;
  transform: translateY(20px);
}

.onrun-cinematic-bestsellers__card.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.onrun-cinematic-bestsellers__card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.12);
}

.onrun-cinematic-bestsellers__card-link {
  display: block;
  text-decoration: none;
  color: inherit;
}

.onrun-cinematic-bestsellers__card-img-wrap {
  height: 200px;
  overflow: hidden;
  background: var(--onrun-light);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.onrun-cinematic-bestsellers__card-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 0.4s ease;
}

.onrun-cinematic-bestsellers__card:hover .onrun-cinematic-bestsellers__card-img {
  transform: scale(1.06);
}

.onrun-cinematic-bestsellers__card-info {
  padding: 1.2rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.onrun-cinematic-bestsellers__card-title {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--onrun-dark);
  margin: 0;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.onrun-cinematic-bestsellers__card-price {
  font-family: var(--onrun-font-en);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--onrun-accent);
}

.onrun-cinematic-bestsellers__card-price .woocommerce-Price-amount {
  color: var(--onrun-accent);
}

.onrun-cinematic-bestsellers__card-btn {
  display: inline-block;
  margin-top: 0.5rem;
  padding: 0.55rem 1.2rem;
  background: var(--onrun-dark);
  color: var(--onrun-white);
  border-radius: 50px;
  font-size: 0.78rem;
  font-weight: 600;
  text-align: center;
  transition: background 0.3s ease;
}

.onrun-cinematic-bestsellers__card:hover .onrun-cinematic-bestsellers__card-btn {
  background: var(--onrun-accent);
}

.onrun-cinematic-no-products {
  grid-column: 1 / -1;
  text-align: center;
  color: var(--onrun-muted);
  padding: 3rem;
}

/* ═══════════════════════════════════════════
   SECTION 6 — Final CTA
═══════════════════════════════════════════ */
.onrun-cinematic-cta {
  position: relative;
  background: var(--onrun-dark);
  padding: 10rem 0;
  text-align: center;
  overflow: hidden;
}

.onrun-cinematic-cta__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 60% at 50% 50%, rgba(232,57,14,0.14) 0%, transparent 70%),
    radial-gradient(ellipse 50% 40% at 20% 80%, rgba(201,168,76,0.06) 0%, transparent 60%);
  pointer-events: none;
}

.onrun-cinematic-cta .onrun-cinematic-container {
  position: relative;
  z-index: 2;
}

.onrun-cinematic-cta__inner {
  max-width: 700px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

.onrun-cinematic-cta__eyebrow {
  font-family: var(--onrun-font-en);
  font-size: 0.72rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--onrun-accent);
  font-weight: 600;
}

.onrun-cinematic-cta__title {
  font-size: clamp(2.2rem, 4.5vw, 3.8rem);
  font-weight: 800;
  color: var(--onrun-white);
  line-height: 1.2;
  margin: 0;
}

.onrun-cinematic-cta__title span {
  font-family: var(--onrun-font-en);
  color: var(--onrun-accent);
}

.onrun-cinematic-cta__subtitle {
  font-size: 1rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.8;
  max-width: 480px;
  margin: 0;
}

.onrun-cinematic-cta__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  margin-top: 0.5rem;
}

/* ═══════════════════════════════════════════
   MOBILE RESPONSIVE
═══════════════════════════════════════════ */
@media (max-width: 1024px) {
  .onrun-cinematic-bestsellers__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {

  /* Hero */
  .onrun-cinematic-hero__content {
    grid-template-columns: 1fr;
    padding: 4rem 1.5rem;
    text-align: center;
  }
  .onrun-cinematic-hero__text {
    align-items: center;
    order: 2;
  }
  .onrun-cinematic-hero__image-wrap {
    order: 1;
  }
  .onrun-cinematic-hero__img {
    max-width: 300px;
  }
  .onrun-cinematic-hero__subtitle {
    max-width: 100%;
  }

  /* Story */
  .onrun-cinematic-story__canvas {
    grid-template-columns: 1fr;
    grid-template-rows: 1fr auto;
    padding: 2rem 1.5rem;
    gap: 0;
  }
  .onrun-cinematic-story__shoe-stage {
    height: 42vh;
    min-height: 220px;
  }
  .onrun-cinematic-story__text-panel {
    padding: 0 0.5rem 5rem;
  }
  .onrun-cinematic-story__step {
    position: relative;
    inset: auto;
    padding: 0;
    gap: 0.8rem;
  }
  .onrun-cinematic-story__step-title {
    font-size: 1.5rem;
  }
  .onrun-cinematic-story__step-desc {
    font-size: 0.9rem;
  }
  .onrun-cinematic-story__counter {
    right: 1.5rem;
  }

  /* Models */
  .onrun-cinematic-model {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .onrun-cinematic-model__image-col {
    min-height: 280px;
    height: 50vw;
  }
  .onrun-cinematic-model--text-left {
    direction: rtl;
  }
  .onrun-cinematic-model__text-col {
    padding: 3rem 1.5rem;
  }
  .onrun-cinematic-model__text-inner {
    max-width: 100%;
  }
  .onrun-cinematic-model__name {
    font-size: 2.2rem;
  }

  /* Popular */
  .onrun-cinematic-popular__swipe-hint {
    display: block;
  }
  .onrun-cinematic-popular__card {
    flex: 0 0 160px;
  }

  /* Bestsellers */
  .onrun-cinematic-bestsellers__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
  .onrun-cinematic-bestsellers__card-img-wrap {
    height: 150px;
  }

  /* CTA */
  .onrun-cinematic-cta {
    padding: 6rem 0;
  }
}

@media (max-width: 480px) {
  .onrun-cinematic-bestsellers__grid {
    grid-template-columns: 1fr 1fr;
    gap: 0.8rem;
  }
  .onrun-cinematic-bestsellers__card-img-wrap {
    height: 120px;
  }
  .onrun-cinematic-container {
    padding: 0 1rem;
  }
  .onrun-cinematic-popular__card {
    flex: 0 0 140px;
  }
}

/* ═══════════════════════════════════════════
   RTL Overrides
═══════════════════════════════════════════ */
[dir="rtl"] .onrun-cinematic-story__shoe-img {
  transform: scale(0.92) translateX(-20px);
}
[dir="rtl"] .onrun-cinematic-story__shoe-img.is-active {
  transform: scale(1) translateX(0);
}

/* Elementor compatibility */
.elementor-widget-container .onrun-cinematic-hero,
.elementor-widget-container .onrun-cinematic-story,
.elementor-widget-container .onrun-cinematic-models {
  margin: 0;
}

/* Woodmart compatibility */
.wd-header ~ .onrun-cinematic-hero {
  margin-top: 0;
}
