/* ============================================
   IRTIJAL THEME — Musical Improvisation
   Editorial Design System
   ============================================ */

/* ===== Header — Irtijal Editorial ===== */
.header-irtijal {
  transition: box-shadow 0.4s ease;
}
.header-scrolled {
  box-shadow: 0 2px 20px -4px rgba(0, 0, 0, 0.3);
}

/* Nav links */
.header-nav-link {
  color: rgba(255, 255, 255, 0.5);
  position: relative;
}
.header-nav-link::after {
  content: '';
  position: absolute;
  bottom: -1px;
  inset-inline-start: 0;
  width: 0;
  height: 1.5px;
  background: var(--color-primary);
  transition: width 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}
.header-nav-link:hover {
  color: rgba(255, 255, 255, 0.9);
}
.header-nav-link:hover::after {
  width: 100%;
}

/* ===== Hero — Irtijal Cinematic ===== */
.hero-irtijal .hero-swiper .swiper-slide {
  opacity: 0 !important;
}
.hero-irtijal .hero-swiper .swiper-slide-active {
  opacity: 1 !important;
}

/* Progress bar — runs for autoplay duration */
.hero-progress-bar {
  width: 0;
  animation: heroProgress var(--hero-duration, 5s) linear forwards;
}
@keyframes heroProgress {
  from { width: 0; }
  to { width: 100%; }
}

/* Image — slow Ken Burns zoom */
.hero-irtijal .hero-img {
  transition: transform 8s ease-out;
}
.hero-irtijal .swiper-slide-active .hero-img {
  transform: scale(1.06);
}

/* Content elements — stagger in */
.hero-irtijal .hero-el {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}
.hero-irtijal .swiper-slide-active .hero-el {
  opacity: 1;
  transform: translateY(0);
}
.hero-irtijal .swiper-slide-active .hero-el:nth-child(1) { transition-delay: 0.15s; }
.hero-irtijal .swiper-slide-active .hero-el:nth-child(2) { transition-delay: 0.3s; }
.hero-irtijal .swiper-slide-active .hero-el:nth-child(3) { transition-delay: 0.45s; }
.hero-irtijal .swiper-slide-active .hero-el:nth-child(4) { transition-delay: 0.6s; }

/* Copper frame — fade in */
.hero-irtijal .hero-frame > div {
  opacity: 0;
  transition: opacity 1s ease 0.5s;
}
.hero-irtijal .swiper-slide-active .hero-frame > div {
  opacity: 1;
}

/* CTA Button — editorial magnetic */
.hero-cta {
  transition: filter 0.4s ease;
}
.hero-cta:hover {
  filter: brightness(1.1);
}

/* Arrows — show on hover */
.hero-irtijal .hero-arrow {
  transition: all 0.3s ease;
}
.hero-irtijal:hover .hero-arrow {
  opacity: 1;
}
@media (max-width: 768px) {
  .hero-irtijal .hero-arrow {
    opacity: 1;
  }
}

/* ===== Loading State ===== */
.loading {
  opacity: 0.6;
  pointer-events: none;
}

[data-qumra-loading="true"] {
  opacity: 0.5;
  pointer-events: none;
  transition: opacity 0.2s;
}

.removing {
  transform: translateX(-100%);
  opacity: 0;
  transition: all 0.3s ease;
}

/* ===== Line Clamp ===== */
.line-clamp-1 {
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.line-clamp-2 {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.line-clamp-3 {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* ===== Buttons — Sharp, editorial ===== */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 2rem;
  background-color: var(--color-primary);
  color: #fff;
  font-weight: 600;
  font-size: 0.875rem;
  letter-spacing: 0.025em;
  transition: all 0.2s ease;
  border: 2px solid var(--color-primary);
}

.btn-primary:hover {
  background-color: var(--color-primary-dark);
  border-color: var(--color-primary-dark);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 2rem;
  background-color: transparent;
  color: var(--color-text);
  font-weight: 600;
  font-size: 0.875rem;
  letter-spacing: 0.025em;
  border: 2px solid var(--color-border);
  transition: all 0.2s ease;
}

.btn-secondary:hover {
  border-color: var(--color-primary);
  color: var(--color-primary);
}

/* ===== Scrollbar ===== */
.scrollbar-hide {
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.scrollbar-hide::-webkit-scrollbar {
  display: none;
}

.custom-scrollbar::-webkit-scrollbar {
  width: 3px;
}

.custom-scrollbar::-webkit-scrollbar-track {
  background: transparent;
}

.custom-scrollbar::-webkit-scrollbar-thumb {
  background: var(--color-border);
  border-radius: 1px;
}

.custom-scrollbar::-webkit-scrollbar-thumb:hover {
  background: var(--color-text-secondary);
}

/* ===== Product Card — Irtijal Reimagined ===== */
.pc-card {
  background: var(--color-background);
  overflow: hidden;
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.4s ease;
}
.pc-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px -8px rgba(0, 0, 0, 0.1);
}

/* Image zoom */
.pc-card .pc-img {
  transition: transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}
.pc-card:hover .pc-img {
  transform: scale(1.06);
}

/* Overlay — fades in on hover */
.pc-card .pc-overlay {
  opacity: 0;
  transition: opacity 0.5s ease;
}
.pc-card:hover .pc-overlay {
  opacity: 1;
}

/* Quick actions — slide up */
.pc-card .pc-actions {
  opacity: 0;
  transform: translateY(100%);
  transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}
.pc-card:hover .pc-actions {
  opacity: 1;
  transform: translateY(0);
}

/* Wishlist — scale in */
.pc-card .pc-wishlist {
  opacity: 0;
  transform: scale(0.7);
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.pc-card:hover .pc-wishlist {
  opacity: 1;
  transform: scale(1);
}

/* Badge — slide in from start */
.pc-card .pc-badge {
  transform: translateX(-100%);
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1) 0.1s;
}
html[dir="rtl"] .pc-card .pc-badge {
  transform: translateX(100%);
}
.pc-card:hover .pc-badge {
  transform: translateX(0);
}

/* Copper corner — grows on hover */
.pc-card .pc-corner {
  transition: all 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}
.pc-card:hover .pc-corner {
  width: 24px;
  height: 24px;
}

/* Top line — expands on hover */
.pc-card .pc-line {
  width: 0;
  transition: width 0.5s cubic-bezier(0.22, 1, 0.36, 1) 0.1s;
}
.pc-card:hover .pc-line {
  width: 100%;
}

@media (max-width: 768px) {
  .pc-card .pc-wishlist {
    opacity: 1;
    transform: scale(1);
  }
  .pc-card .pc-actions {
    opacity: 1;
    transform: translateY(0);
  }
  .pc-card .pc-badge {
    transform: translateX(0);
  }
  .pc-card:hover {
    transform: none;
    box-shadow: none;
  }
}

/* ===== Collection Description — flatten inner HTML ===== */
.cc-desc p,
.cc-desc div,
.cc-desc span,
.cc-desc br {
  display: inline;
  margin: 0;
  padding: 0;
}

/* ===== Collection Card — Irtijal Editorial ===== */
.cc-card {
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.4s ease;
}
.cc-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px -8px rgba(0, 0, 0, 0.08);
}
.cc-card .cc-card-inner {
  transition: border-color 0.5s ease, box-shadow 0.4s ease;
}
.cc-card:hover .cc-card-inner {
  box-shadow: 0 8px 24px -6px rgba(0, 0, 0, 0.06);
}

/* Badge — slide in from start */
.cc-card .cc-badge {
  transform: translateX(-100%);
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1) 0.1s;
}
html[dir="rtl"] .cc-card .cc-badge {
  transform: translateX(100%);
}
.cc-card:hover .cc-badge {
  transform: translateX(0);
}

/* Count pill — scale bounce */
.cc-card .cc-count-pill {
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.cc-card:hover .cc-count-pill {
  transform: scale(1.1);
}

/* Stagger entrance */
@keyframes ccFadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 768px) {
  .cc-card:hover {
    transform: none;
    box-shadow: none;
  }
  .cc-card .cc-badge {
    transform: translateX(0);
  }
}

/* ===== Promo Banner — Irtijal Cinematic Living Motion ===== */

/* Image — slow Ken Burns */
.promo-irtijal .promo-img {
  transition: transform 8s ease-out;
}
.promo-irtijal:hover .promo-img {
  transform: scale(1.04);
}

/* Content elements — stagger entrance */
.promo-irtijal .promo-el {
  opacity: 0;
  transform: translateY(20px);
  animation: promoFadeUp 0.7s ease forwards;
}
.promo-irtijal .promo-el:nth-child(1) { animation-delay: 0.15s; }
.promo-irtijal .promo-el:nth-child(2) { animation-delay: 0.3s; }
.promo-irtijal .promo-el:nth-child(3) { animation-delay: 0.45s; }
.promo-irtijal .promo-el:nth-child(4) { animation-delay: 0.6s; }
.promo-irtijal .promo-el:nth-child(5) { animation-delay: 0.75s; }
.promo-irtijal .promo-el:nth-child(6) { animation-delay: 0.9s; }

@keyframes promoFadeUp {
  to { opacity: 1; transform: translateY(0); }
}

/* ── Marquee — infinite scroll ── */
.promo-marquee {
  animation: promoMarquee 30s linear infinite;
}
html[dir="rtl"] .promo-marquee {
  animation: promoMarqueeRtl 30s linear infinite;
}
@keyframes promoMarquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
@keyframes promoMarqueeRtl {
  from { transform: translateX(0); }
  to { transform: translateX(50%); }
}

/* ── Floating shapes ── */
.promo-float-1 {
  animation: promoFloat1 8s ease-in-out infinite;
}
.promo-float-2 {
  animation: promoFloat2 10s ease-in-out infinite;
}
.promo-float-3 {
  animation: promoFloat3 12s ease-in-out infinite;
}
@keyframes promoFloat1 {
  0%, 100% { transform: translateY(0) rotate(45deg); }
  50% { transform: translateY(-15px) rotate(55deg); }
}
@keyframes promoFloat2 {
  0%, 100% { transform: translateX(0) rotate(0deg); opacity: 0.15; }
  50% { transform: translateX(10px) rotate(3deg); opacity: 0.3; }
}
@keyframes promoFloat3 {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  33% { transform: translateY(-10px) rotate(90deg); }
  66% { transform: translateY(5px) rotate(180deg); }
}

/* ── Orbit ring ── */
.promo-orbit {
  animation: promoOrbit 15s linear infinite;
}
@keyframes promoOrbit {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

/* ── Pulsing dot ── */
.promo-pulse {
  animation: promoPulse 2.5s ease-in-out infinite;
}
@keyframes promoPulse {
  0%, 100% { opacity: 0.4; transform: scale(1); }
  50% { opacity: 0.8; transform: scale(1.5); }
}

/* ── Breathing frame — lines expand/contract ── */
.promo-frame-h {
  animation: promoFrameH 4s ease-in-out infinite;
}
.promo-frame-v {
  animation: promoFrameV 4s ease-in-out infinite;
}
@keyframes promoFrameH {
  0%, 100% { width: 2rem; }
  50% { width: 3.5rem; }
}
@keyframes promoFrameV {
  0%, 100% { height: 2rem; }
  50% { height: 3.5rem; }
}
@media (min-width: 768px) {
  @keyframes promoFrameH {
    0%, 100% { width: 3.5rem; }
    50% { width: 5rem; }
  }
  @keyframes promoFrameV {
    0%, 100% { height: 3.5rem; }
    50% { height: 5rem; }
  }
}

/* ── Shimmer sweep on title ── */
.promo-shimmer {
  background: linear-gradient(
    105deg,
    transparent 40%,
    rgba(255, 255, 255, 0.15) 50%,
    transparent 60%
  );
  background-size: 200% 100%;
  animation: promoShimmer 4s ease-in-out infinite;
}
@keyframes promoShimmer {
  0% { background-position: 200% 0; }
  50% { background-position: -200% 0; }
  100% { background-position: -200% 0; }
}

/* ── Label glow ── */
.promo-label-glow {
  animation: promoLabelGlow 3s ease-in-out infinite;
}
@keyframes promoLabelGlow {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.6; }
}

/* ── Accent line grow pulse ── */
.promo-line-grow {
  animation: promoLineGrow 3s ease-in-out infinite;
}
@keyframes promoLineGrow {
  0%, 100% { width: 2rem; opacity: 1; }
  50% { width: 3rem; opacity: 0.6; }
}
@media (min-width: 768px) {
  @keyframes promoLineGrow {
    0%, 100% { width: 3rem; opacity: 1; }
    50% { width: 4.5rem; opacity: 0.6; }
  }
}

/* ── Vertical stripe breathing ── */
.promo-vstripe {
  animation: promoVstripe 4s ease-in-out infinite;
}
@keyframes promoVstripe {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}

/* ── Button subtle float ── */
.promo-btn-float {
  animation: promoBtnFloat 3s ease-in-out infinite;
}
@keyframes promoBtnFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-3px); }
}

/* ── Countdown seconds pulse bar ── */
.promo-cd-pulse {
  animation: promoCdPulse 1s ease-in-out infinite;
}
@keyframes promoCdPulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}

/* ── Countdown number tick ── */
.promo-cd-num {
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* ── Watermark slow drift ── */
.promo-watermark {
  animation: promoWatermark 20s ease-in-out infinite;
}
@keyframes promoWatermark {
  0%, 100% { transform: translate(-50%, -50%) rotate(-15deg) scale(1); }
  50% { transform: translate(-50%, -50%) rotate(-15deg) scale(1.05); }
}

/* ── Highlight blocks — slide in ── */
.promo-highlight {
  opacity: 0;
  transform: translateX(12px);
  animation: promoHighlight 0.5s ease forwards;
}
html[dir="rtl"] .promo-highlight {
  transform: translateX(-12px);
}
@keyframes promoHighlight {
  to { opacity: 1; transform: translateX(0); }
}
.promo-highlight:hover div:first-child {
  border-color: currentColor;
  transform: scale(1.1);
  transition: all 0.3s ease;
}

/* ── Reduce motion ── */
@media (prefers-reduced-motion: reduce) {
  .promo-marquee,
  .promo-float-1, .promo-float-2, .promo-float-3,
  .promo-orbit, .promo-pulse,
  .promo-frame-h, .promo-frame-v,
  .promo-shimmer, .promo-label-glow,
  .promo-line-grow, .promo-vstripe,
  .promo-btn-float, .promo-cd-pulse,
  .promo-watermark, .promo-highlight {
    animation: none !important;
  }
}

/* ===== Footer — Irtijal ===== */
.footer-logo {
  transition: opacity 0.3s ease;
}
.footer-logo:hover {
  opacity: 0.8;
}
.footer-link {
  position: relative;
}
.footer-link::after {
  content: '';
  position: absolute;
  bottom: -1px;
  inset-inline-start: 0;
  width: 0;
  height: 1px;
  background: currentColor;
  transition: width 0.3s ease;
}
.footer-link:hover::after {
  width: 100%;
}
@media (prefers-reduced-motion: reduce) {
  .footer-link::after { transition: none; }
}

/* ===== Features Bar — Irtijal ===== */
.feat-marquee {
  animation: featScroll 25s linear infinite;
}
.feat-marquee:hover {
  animation-play-state: paused;
}
@keyframes featScroll {
  from { transform: translateX(0); }
  to { transform: translateX(-33.333%); }
}
[dir="rtl"] .feat-marquee {
  animation-name: featScrollRtl;
}
@keyframes featScrollRtl {
  from { transform: translateX(0); }
  to { transform: translateX(33.333%); }
}
.feat-item {
  transition: transform 0.3s ease;
}
.feat-item:hover {
  transform: translateY(-2px);
}
@media (prefers-reduced-motion: reduce) {
  .feat-marquee { animation: none; }
  .feat-item:hover { transform: none; }
}

/* ===== Banner Grid — Irtijal ===== */
.bngrid-card {
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.5s ease;
}
.bngrid-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 50px -12px rgba(0, 0, 0, 0.2);
}

/* ===== Testimonials — Irtijal ===== */
.testimonial-card {
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1), border-color 0.4s ease, box-shadow 0.4s ease;
}
.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px -8px rgba(0, 0, 0, 0.06);
}

/* Swiper pagination — copper dots */
.swiper-pagination-bullet {
  width: 6px;
  height: 6px;
  background: var(--color-primary);
  opacity: 0.25;
  border-radius: 0;
  transition: all 0.3s ease;
}
.swiper-pagination-bullet-active {
  opacity: 1;
  width: 20px;
}

/* ===== Toast Notifications ===== */
.toast {
  padding: 0.75rem 1.5rem;
  color: #fff;
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
  pointer-events: auto;
  animation: toastIn 0.3s ease;
}

.toast-success { background-color: #2d6a4f; }
.toast-error { background-color: #9b2226; }
.toast-warning { background-color: #bc6c25; }
.toast-info { background-color: var(--color-primary); }

@keyframes toastIn {
  from { opacity: 0; transform: translateY(-10px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ===== Overlay ===== */
.overlay {
  position: fixed;
  inset: 0;
  background-color: rgba(45, 42, 46, 0.6);
  z-index: 40;
  backdrop-filter: blur(2px);
}

/* ===== Drawer ===== */
.drawer {
  position: fixed;
  top: 0;
  bottom: 0;
  width: 100%;
  max-width: 420px;
  background: var(--color-background);
  z-index: 50;
  overflow-y: auto;
  transition: transform 0.3s ease;
}

html[dir="rtl"] .drawer-start {
  right: 0;
  transform: translateX(100%);
}

html[dir="ltr"] .drawer-start {
  left: 0;
  transform: translateX(-100%);
}

html[dir="rtl"] .drawer-end {
  left: 0;
  transform: translateX(-100%);
}

html[dir="ltr"] .drawer-end {
  right: 0;
  transform: translateX(100%);
}

.drawer.open {
  transform: translateX(0) !important;
}

/* ===== Animations ===== */
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes slideUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.animate-fade-in { animation: fadeIn 0.3s ease; }
.animate-slide-up { animation: slideUp 0.4s ease; }

@keyframes spin {
  to { transform: rotate(360deg); }
}

.animate-spin {
  animation: spin 0.8s linear infinite;
}

@keyframes checkPop {
  0% { transform: scale(0); opacity: 0; }
  50% { transform: scale(1.3); }
  100% { transform: scale(1); opacity: 1; }
}

.animate-check {
  animation: checkPop 0.4s ease;
}

@keyframes cartItemEnter {
  from { opacity: 0; transform: translateY(-8px); }
  to { opacity: 1; transform: translateY(0); }
}

.cart-item-enter {
  animation: cartItemEnter 0.3s ease-out;
}

/* ===== Search Results Items ===== */
@keyframes searchItemIn {
  from { opacity: 0; transform: translateY(12px) scale(0.97); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

/* ===== Rating Stars ===== */
.stars {
  display: inline-flex;
  gap: 2px;
}

.stars .star-filled { color: #d4a574; }
.stars .star-empty { color: var(--color-border); }

/* ===== Price Range Slider ===== */
.price-slider {
  position: relative;
  height: 28px;
  display: flex;
  align-items: center;
}

.price-slider .slider-track {
  position: absolute;
  width: 100%;
  height: 4px;
  background: var(--color-border);
}

.price-slider .slider-range {
  position: absolute;
  height: 4px;
  background: var(--color-primary);
}

.price-slider input[type="range"] {
  position: absolute;
  width: 100%;
  -webkit-appearance: none;
  appearance: none;
  background: transparent;
  pointer-events: none;
  margin: 0;
  padding: 0;
  height: 4px;
  outline: none;
}

.price-slider input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  pointer-events: auto;
  width: 20px;
  height: 20px;
  background: white;
  border: 2px solid var(--color-primary);
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.1);
  cursor: pointer;
  transition: transform 0.15s ease;
}

.price-slider input[type="range"]::-webkit-slider-thumb:hover {
  transform: scale(1.1);
}

.price-slider input[type="range"]::-moz-range-thumb {
  pointer-events: auto;
  width: 20px;
  height: 20px;
  background: white;
  border: 2px solid var(--color-primary);
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.1);
  cursor: pointer;
}

.price-slider input[type="range"]::-moz-range-track {
  background: transparent;
  border: none;
}

/* ===== Swiper — Irtijal: sharp, minimal ===== */
.swiper-pagination-bullet {
  background: var(--color-primary) !important;
  opacity: 0.35;
  border-radius: 0;
  width: 24px;
  height: 3px;
}

.swiper-pagination-bullet-active {
  opacity: 1 !important;
  width: 36px;
}

.swiper-button-next,
.swiper-button-prev {
  color: var(--color-text) !important;
  background: var(--color-background);
  width: 44px !important;
  height: 44px !important;
  border: 1px solid var(--color-border);
  box-shadow: none;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
  color: var(--color-primary) !important;
  border-color: var(--color-primary);
}

.swiper-button-next::after,
.swiper-button-prev::after {
  font-size: 14px !important;
  font-weight: bold;
}

.swiper-outside-pagination .swiper-pagination {
  position: relative;
  margin-top: 1.5rem;
}

/* ===== Prose — Editorial typography ===== */
.prose h1, .prose h2, .prose h3, .prose h4 {
  color: var(--color-text);
}

.prose p {
  line-height: 1.8;
  color: var(--color-text-secondary);
}

.prose img {
  max-width: 100%;
}

/* ===== Section Divider ===== */
.section-divider {
  width: 48px;
  height: 2px;
  background: var(--color-primary);
}

/* ===== Cart Drawer — "Concert Program" ===== */
.cart-scroll {
  scrollbar-width: thin;
  scrollbar-color: var(--color-primary-light) transparent;
}

.cart-scroll::-webkit-scrollbar {
  width: 2px;
}

.cart-scroll::-webkit-scrollbar-track {
  background: transparent;
}

.cart-scroll::-webkit-scrollbar-thumb {
  background: var(--color-primary-light);
}

.cart-track {
  transition: all 0.3s ease;
}

.cart-track:hover {
  background-color: var(--color-surface);
}

.bg-gradient-to-e {
  background-image: linear-gradient(to right, var(--tw-gradient-stops));
}

html[dir="rtl"] .bg-gradient-to-e {
  background-image: linear-gradient(to left, var(--tw-gradient-stops));
}
