@import url("https://fonts.googleapis.com/css2?family=IBM+Plex+Mono:wght@400;500&family=Manrope:wght@300;400;500;700&family=Sora:wght@400;600;700;800&display=swap");

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --black: #000000;
  --white: #e8e8e8;
  /* أبيض معدني هادئ */
  --grey-100: #d1d1d1;
  --grey-200: #e0e0e0;
  --grey-400: #9e9e9e;
  --grey-700: #424242;
  --grey-900: #111111;
  --sidebar-w: 260px;
  /* زيادة مساحة الجوانب للفخامة */
  --font-display: "Sora", sans-serif;
  --font-editorial: "Manrope", sans-serif;
  --font-mono: "IBM Plex Mono", monospace;
}

html {
  font-size: 11px;
  scroll-snap-type: y mandatory;
}

section {
  scroll-snap-align: start;
}

body {
  background: var(--black);
  color: var(--white);
  font-family: var(--font-editorial);
  letter-spacing: 0.18em;
  overflow-x: hidden;
  
}

/* --- CUSTOM MINIMALIST SCROLLBAR --- */
* {
  scrollbar-width: none;
  /* Firefox */
  -ms-overflow-style: none;
  /* IE and Edge */
}

::-webkit-scrollbar {
  display: none;
  /* Chrome, Safari and Opera */
}








/* LOADER */
#loader {
  position: fixed;
  inset: 0;
  background: var(--black);
  z-index: 9000;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 24px;
}

.loader-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 120px;
  width: auto;
  margin: 2rem;
  font-family: var(--font-display);
  font-size: 1.6em;
  font-weight: 600;
  user-select: none;
  color: #fff;
  scale: 2;
}
.loader-bg {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  z-index: 1;
  background-color: transparent;
  mask: repeating-linear-gradient(90deg, transparent 0, transparent 6px, black 7px, black 8px);
  -webkit-mask: repeating-linear-gradient(90deg, transparent 0, transparent 6px, black 7px, black 8px);
}
.loader-bg::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(circle at 50% 50%, #ff0 0%, transparent 50%),
    radial-gradient(circle at 45% 45%, #f00 0%, transparent 45%),
    radial-gradient(circle at 55% 55%, #0ff 0%, transparent 45%),
    radial-gradient(circle at 45% 55%, #0f0 0%, transparent 45%),
    radial-gradient(circle at 55% 45%, #00f 0%, transparent 45%);
  mask: radial-gradient(circle at 50% 50%, transparent 0%, transparent 10%, black 25%);
  -webkit-mask: radial-gradient(circle at 50% 50%, transparent 0%, transparent 10%, black 25%);
  animation: transform-animation 2s infinite alternate, opacity-animation 4s infinite;
  animation-timing-function: cubic-bezier(0.6, 0.8, 0.5, 1);
}
@keyframes transform-animation {
  0% { transform: translate(-55%); }
  100% { transform: translate(55%); }
}
@keyframes opacity-animation {
  0%, 35%, 100% { opacity: 1; }
  65% { opacity: 0; }
}
.loader-letter {
  display: inline-block;
  opacity: 0;
  animation: loader-letter-anim 3s infinite ease-in-out;
  z-index: 2;
}
.loader-letter:nth-child(1) { animation-delay: 0.05s; }
.loader-letter:nth-child(2) { animation-delay: 0.1s; }
.loader-letter:nth-child(3) { animation-delay: 0.15s; }
.loader-letter:nth-child(4) { animation-delay: 0.2s; }
.loader-letter:nth-child(5) { animation-delay: 0.25s; }
.loader-letter:nth-child(6) { animation-delay: 0.3s; }
.loader-letter:nth-child(7) { animation-delay: 0.35s; }
.loader-letter:nth-child(8) { animation-delay: 0.4s; }
.loader-letter:nth-child(9) { animation-delay: 0.45s; }
.loader-letter:nth-child(10) { animation-delay: 0.5s; }
.loader-letter:nth-child(11) { animation-delay: 0.55s; }
.loader-letter:nth-child(12) { animation-delay: 0.6s; }
.loader-letter:nth-child(13) { animation-delay: 0.65s; }

@keyframes loader-letter-anim {
  0% { opacity: 0; transform: translateY(10px); }
  5% { opacity: 1; text-shadow: 0 0 10px #fff, 0 0 20px #fff; transform: scale(1.1) translateY(-2px); }
  15% { opacity: 1; text-shadow: none; transform: scale(1) translateY(0); }
  85% { opacity: 1; transform: translateY(0); }
  100% { opacity: 0; transform: translateY(-10px); }
}

/* LAYOUT */
#layout {
  display: grid;
  grid-template-columns: var(--sidebar-w) 1fr var(--sidebar-w);
  min-height: 100svh;
  position: relative;
}

/* LEFT SIDEBAR */
#left-sidebar {
  position: fixed;
  left: 0;
  top: 0;
  bottom: 0;
  width: var(--sidebar-w);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 40px 28px;
  z-index: 100;
  border-right: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(0, 0, 0, 0.2);
  /* إضافة خلفية خفيفة جداً */
  /* backdrop-filter removed for performance */
}

.brand-logo {
  font-family: var(--font-display);
  font-size: 22px;
  letter-spacing: 0.35em;
  color: var(--white);
  text-decoration: none;
  writing-mode: horizontal-tb;
}

nav {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

nav a {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  color: var(--grey-400);
  text-decoration: none;
  text-transform: uppercase;
  padding: 10px 0;
  border-bottom: 1px solid transparent;
  transition:
    color 0.3s,
    border-color 0.3s;
  
}

nav a:hover,
nav a.active {
  color: var(--white);
  border-bottom-color: rgba(255, 255, 255, 0.15);
}

.collection-labels {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.collection-label {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--grey-700);
  padding: 3px 0;
}

.collection-label.active {
  color: var(--white);
}

.social-row {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.social-link {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--grey-700);
  text-decoration: none;
  transition: color 0.3s;
  
}

.social-link:hover {
  color: var(--white);
}

.sidebar-socials {
  display: flex;
  flex-direction: row;
  gap: 20px;
  margin: 30px 0;
  align-items: center;
}

.sidebar-socials a {
  color: var(--grey-700);
  transition: color 0.3s ease, transform 0.3s ease;
}

.sidebar-socials a:hover {
  color: var(--white);
  transform: translateY(-3px);
}

.vertical-label {
  writing-mode: vertical-rl;
  text-orientation: mixed;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--grey-700);
  align-self: flex-end;
}

/* MOBILE HEADER */
#mobile-header {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 60px;
  background: var(--black);
  z-index: 1000;
  padding: 0 20px;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

#menu-toggle,
#cart-toggle {
  background: none;
  border: none;
  color: var(--white);
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
}

.mobile-logo {
  font-family: var(--font-display);
  font-size: 20px;
  letter-spacing: 0.3em;
}

/* CENTER */
#center {
  margin-left: var(--sidebar-w);
  margin-right: var(--sidebar-w);
  position: relative;
  width: auto;
  min-height: 100svh;
}

/* RIGHT SIDEBAR */
#right-sidebar {
  position: fixed;
  right: 0;
  top: 0;
  bottom: 0;
  width: var(--sidebar-w);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 40px 28px;
  z-index: 100;
  border-left: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(0, 0, 0, 0.2);
  /* backdrop-filter removed for performance */
}

.product-index {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  color: var(--grey-400);
  font-family: var(--font-display);
  font-size: 11px;
  letter-spacing: 0.18em;
  color: var(--white);
}

.product-desc-display {
  font-size: 11px;
  letter-spacing: 0.18em;
  color: var(--grey-400);
  line-height: 1.9;
  text-transform: uppercase;
}

.size-selector {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.size-btn {
  width: 32px;
  height: 32px;
  background: transparent;
  border: 1px solid var(--grey-700);
  color: var(--grey-400);
  font-family: var(--font-mono);
  font-size: 11px;
  
  transition: all 0.25s;
  letter-spacing: 0.18em;
}

.size-btn:hover,
.size-btn.active {
  border-color: var(--white);
  color: var(--white);
  background: rgba(255, 255, 255, 0.06);
}

.cart-btn {
  width: 100%;
  padding: 14px;
  background: var(--white);
  color: var(--black);
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border: 1px solid rgba(255, 255, 255, 0.1);
  /* إضافة إطار للأزرار */
  
  box-shadow: 0 0 15px rgba(255, 255, 255, 0.03);
  transition:
    background 0.3s,
    color 0.3s;
  position: relative;
  overflow: hidden;
}

.cart-btn::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--black);
  transform: translateX(-101%);
  transition: transform 0.4s cubic-bezier(0.76, 0, 0.24, 1);
}

.cart-btn:hover {
  color: var(--white);
}

.cart-btn:hover::before {
  transform: translateX(0);
}

.cart-btn span {
  position: relative;
  z-index: 1;
}

/* SCROLL PROGRESS */
.scroll-progress-container {
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: center;
}

.scroll-indicator-label {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--grey-700);
}

.scroll-track {
  width: 1px;
  height: 80px;
  background: var(--grey-700);
  position: relative;
}

.scroll-fill {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  background: var(--white);
  height: 0%;
  transition: height 0.1s linear;
}

.dot-indicators {
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: center;
}

.dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--grey-700);
  transition:
    background 0.3s,
    transform 0.3s;
  
}

.dot.active {
  background: var(--white);
  transform: scale(1.5);
}

/* ——— CENTER SECTIONS ——— */

/* HERO */
.hero-section {
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.hero-video-layer {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
}

.hero-video-layer video,
.hero-video-layer img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: translateZ(0);
  will-change: transform, opacity;
  backface-visibility: hidden;
}

  .hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0.2) 0%, rgba(0,0,0,0.8) 100%);
    z-index: 1;
    pointer-events: none;
  }

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 20px;
}

.hero-tag {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--white);
  letter-spacing: 0.3em;
  text-transform: uppercase;
  margin-bottom: 20px;
  background: rgba(255, 255, 255, 0.1);
  padding: 8px 16px;
  /* backdrop-filter removed for performance */
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 30px;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(48px, 10vw, 100px);
  letter-spacing: 0.25em;
  /* Cinematic spacing */
  line-height: 0.9;
  text-align: center;
  mix-blend-mode: difference;
}

.hero-sub {
  font-family: var(--font-editorial);
  font-style: italic;
  font-size: clamp(12px, 1.5vw, 18px);
  letter-spacing: 0.3em;
  color: var(--grey-400);
  margin-top: 8px;
}

.hero-scroll-hint {
  position: absolute;
  bottom: 40px;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--grey-700);
  display: flex;
  align-items: center;
  gap: 12px;
}

.scroll-arrow {
  width: 30px;
  height: 1px;
  background: var(--grey-700);
  position: relative;
  animation: arrowPulse 2s ease-in-out infinite;
}

@keyframes arrowPulse {

  0%,
  100% {
    width: 30px;
    opacity: 0.08; /* Optimized noise */
  }

  50% {
    width: 50px;
    opacity: 1;
  }
}

/* DYNAMIC SECTIONS SHARED */
.dynamic-section { padding: 100px 40px; position: relative; z-index: 5; max-width: 1600px; margin: 0 auto; }
.section-header { text-align: center; margin-bottom: 60px; }
.section-heading { font-family: var(--font-display); font-size: 36px; letter-spacing: 0.1em; color: var(--white); }

/* 3D CAROUSEL & CO-CARD STYLES */
.co-carousel-wrap {
  width: 100%;
  position: relative;
  z-index: 9;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 40px 0;
}

.co-carousel {
  margin: 0 auto;
  width: 100%;
  max-width: 320px;
  height: 480px;
  overflow: visible !important;
}

.co-carousel__slide {
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0 !important;
  pointer-events: none;
  transition: opacity 0.5s ease;
}

.co-carousel__slide.swiper-slide-active {
  opacity: 1 !important;
  pointer-events: auto;
}

.co-carousel__nav-buttons {
  margin-top: 40px;
  width: 100%;
  max-width: 400px;
  display: flex;
  justify-content: space-between;
  padding: 0 20px;
}

.co-carousel__nav-button {
  padding: 10px 0;
  width: 120px;
  position: relative;
  display: flex;
  flex-direction: column;
  
}

.co-carousel__nav-button.prev {
  align-items: flex-end;
}

.co-carousel__nav-button.next {
  align-items: flex-start;
}

.co-carousel__nav-button.swiper-button-disabled {
  opacity: 0.3;
}

.co-carousel__nav-button:hover:not(.swiper-button-disabled).prev span {
  transform: translate3d(-10px, 0, 0);
}

.co-carousel__nav-button:hover:not(.swiper-button-disabled).next span {
  transform: translate3d(10px, 0, 0);
}

.co-carousel__nav-button:before {
  display: block;
  content: "";
  width: 100%;
  height: 1px;
  background-color: var(--grey-400);
  transition: background-color 0.3s;
}

.co-carousel__nav-button:hover:before {
  background-color: var(--white);
}

.co-carousel__nav-button span {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  color: var(--white);
  text-transform: uppercase;
  padding: 10px 0;
  transition: cubic-bezier(0.22, 0.74, 0.46, 0.97) 0.3s;
}

.co-card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  height: auto;
  width: 320px;
  background: transparent;
  border: none;
  backdrop-filter: none;
  box-shadow: none;
  margin-top: 20px;
}

.co-card__shoe {
  position: relative;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 2;
  pointer-events: none;
  margin-bottom: 0px;
}

.co-card__shoe-img {
  width: 100%;
  display: block;
  filter: drop-shadow(0 20px 30px rgba(0,0,0,0.7));
}

.co-card__shoe-shadow {
  position: absolute;
  top: 70%;
  left: 50%;
  transform: translateX(-50%);
  width: 60%;
  height: 20px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.8);
  filter: blur(15px);
  z-index: -1;
}

.co-card__info {
  position: relative;
  width: 100%;
  padding: 10px 20px;
  display: flex;
  flex-direction: column;
  z-index: 1;
}

.co-card__collection {
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--grey-400);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 5px;
}

.co-card__title {
  font-family: var(--font-display);
  font-size: 20px;
  color: var(--white);
  text-transform: uppercase;
  line-height: 1.1;
  margin-bottom: 5px;
}

.co-card__price {
  font-family: var(--font-mono);
  font-size: 22px;
  font-weight: bold;
  color: var(--white);
}

.text-mask {
  overflow: hidden;
}

.text-mask span {
  display: inline-block;
}

.color-dot {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.2);
  
  transition: transform 0.2s;
}

.color-dot:hover {
  transform: scale(1.2);
}

/* SOCIAL HUB GRID */
.social-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 20px; }
.social-card { display: flex; flex-direction: column; align-items: center; justify-content: center; padding: 40px 20px; border-radius: 20px; text-decoration: none; color: var(--white); transition: transform 0.4s; gap: 15px; }
.social-card:hover { transform: translateY(-5px) scale(1.02); border-color: rgba(255,255,255,0.3); }
.social-icon { font-size: 32px; }
.social-platform { font-family: var(--font-display); font-size: 20px; }
.social-stats { font-family: var(--font-mono); font-size: 10px; color: var(--grey-400); letter-spacing: 0.2em; }

/* COLLECTION STRIP */
.collection-section {
  height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.marquee-track {
  display: flex;
  gap: 80px;
  white-space: nowrap;
  animation: marquee var(--marquee-duration, 60s) linear infinite;
}

.marquee-item {
  font-family: var(--font-display);
  font-size: clamp(50px, 8vw, 100px);
  color: transparent;
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.18);
  letter-spacing: 0.08em;
  flex-shrink: 0;
  transition: -webkit-text-stroke-color 0.3s;
}

.marquee-item:hover {
  -webkit-text-stroke-color: rgba(255, 255, 255, 0.6);
}

@keyframes marquee {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}



/* ABOUT */
.about-section {
  position: relative;
  padding: 140px 5%;
  width: 100%;
  background: var(--black);
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, 0.03);
  border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}

/* Elegant grid pattern background */
.about-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: 
    linear-gradient(to right, rgba(255, 255, 255, 0.015) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255, 255, 255, 0.015) 1px, transparent 1px);
  background-size: 80px 80px;
  opacity: 0.3;
  pointer-events: none;
  z-index: 1;
}

.about-ambient-glow {
  position: absolute;
  top: -20%;
  left: -20%;
  width: 60%;
  height: 60%;
  background: radial-gradient(circle, rgba(255, 224, 166, 0.03) 0%, transparent 70%);
  filter: blur(80px);
  pointer-events: none;
  z-index: 1;
}

.about-ambient-glow-2 {
  position: absolute;
  bottom: -20%;
  right: -20%;
  width: 60%;
  height: 60%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.02) 0%, transparent 70%);
  filter: blur(80px);
  pointer-events: none;
  z-index: 1;
}

.about-container {
  position: relative;
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  z-index: 2;
}

.about-container.no-media {
  grid-template-columns: 1fr;
  max-width: 900px;
  text-align: center;
}

/* Media Column */
.about-media-col {
  position: relative;
  width: 100%;
  max-width: 580px;
  justify-self: center;
}

.about-media-frame {
  position: absolute;
  inset: -15px;
  border: 1px solid rgba(255, 224, 166, 0.08);
  pointer-events: none;
  z-index: 1;
  transition: all 0.5s ease;
}

.about-media-col:hover .about-media-frame {
  inset: -8px;
  border-color: rgba(255, 224, 166, 0.2);
}

.about-media-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 4/5;
  overflow: hidden;
  z-index: 2;
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.05);
  background: #080808;
}

.about-media-wrap video,
.about-media-wrap img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  filter: contrast(1.05) brightness(0.85);
  transition: transform 8s cubic-bezier(0.15, 1, 0.3, 1), filter 0.5s ease;
}

.about-media-col:hover .about-media-wrap video,
.about-media-col:hover .about-media-wrap img {
  transform: scale(1.04);
  filter: contrast(1.08) brightness(0.95);
}

/* Gradient overlay */
.about-media-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.5) 0%, transparent 60%);
  pointer-events: none;
  z-index: 3;
}

/* Floating elegant badge on image */
.about-media-badge {
  position: absolute;
  bottom: 25px;
  right: 25px;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 224, 166, 0.3);
  padding: 8px 16px;
  z-index: 4;
  display: flex;
  align-items: center;
  gap: 8px;
}

.about-media-badge span {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  color: #ffe0a6;
  text-transform: uppercase;
}

/* Content Column */
.about-content-col {
  position: relative;
  z-index: 2;
  width: 100%;
}

.about-eyebrow {
  font-family: var(--font-mono);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.4em;
  color: #ffe0a6; /* Gold brand accent */
  margin-bottom: 25px;
  display: flex;
  align-items: center;
  gap: 15px;
}

.about-eyebrow::before {
  content: '';
  display: block;
  width: 40px;
  height: 1px;
  background: #ffe0a6;
}

.about-headline {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 4.5vw, 4.2rem);
  font-weight: 400;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 30px;
  letter-spacing: 0.02em;
}

/* Make Arabic titles look fantastic and correctly spaced */
.about-headline:lang(ar),
[dir="rtl"] .about-headline {
  font-family: 'Cairo', var(--font-display), sans-serif;
  line-height: 1.3;
}

.about-headline span.accent-text {
  color: #ffe0a6;
  font-style: italic;
  font-family: var(--font-editorial);
}

.about-body {
  font-family: var(--font-editorial);
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.85;
  margin-bottom: 45px;
  letter-spacing: 0.05em;
}

.about-body p {
  margin-bottom: 15px;
}

.about-body p:last-child {
  margin-bottom: 0;
}

.about-cta-wrap {
  display: flex;
  justify-content: flex-start;
}

/* Premium Luxury Button */
.about-cta-btn {
  position: relative;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 16px 36px;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--white);
  text-decoration: none;
  font-family: var(--font-mono);
  font-size: 0.85rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  overflow: hidden;
  transition: border-color 0.4s ease;
  z-index: 1;
}

.about-cta-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: var(--white);
  transition: left 0.4s cubic-bezier(0.19, 1, 0.22, 1);
  z-index: -1;
}

.about-cta-btn:hover {
  border-color: var(--white);
  color: var(--black) !important;
}

.about-cta-btn:hover::before {
  left: 0;
}

.about-cta-btn span {
  position: relative;
  z-index: 2;
}

/* ==========================================
   RESPONSIVE MEDIA QUERIES FOR ABOUT SECTION
   ========================================== */
@media (max-width: 1199px) {
  .about-container {
    gap: 50px;
  }
}

@media (max-width: 991px) {
  .about-section {
    padding: 100px 5%;
  }
  
  .about-container {
    grid-template-columns: 1fr;
    gap: 60px;
    text-align: center;
    max-width: 650px;
  }
  
  .about-media-col {
    max-width: 480px;
  }
  
  .about-eyebrow {
    justify-content: center;
  }
  
  .about-eyebrow::after {
    content: '';
    display: block;
    width: 40px;
    height: 1px;
    background: #ffe0a6;
  }
  
  .about-cta-wrap {
    justify-content: center;
  }
}

@media (max-width: 575px) {
  .about-section {
    padding: 80px 4%;
  }
  
  .about-media-frame {
    inset: -10px;
  }
  
  .about-media-wrap {
    aspect-ratio: 1/1; /* Square on mobile for better space utilization */
  }
  
  .about-media-badge {
    bottom: 15px;
    right: 15px;
    padding: 6px 12px;
  }
  
  .about-headline {
    font-size: clamp(2rem, 8vw, 2.8rem);
  }
  
  .about-body {
    font-size: 1.05rem;
    line-height: 1.75;
  }
}

/* FOOTER */
.footer-section {
  height: 50vh;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  overflow: hidden;
  padding-bottom: 0;
  position: relative;
}

.footer-word {
  font-family: var(--font-display);
  font-size: clamp(80px, 18vw, 220px);
  color: transparent;
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.12);
  letter-spacing: 0.08em;
  white-space: nowrap;
  line-height: 1;
}

.footer-meta {
  position: absolute;
  top: 40px;
  left: 0;
  right: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 40px;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--grey-700);
}

.footer-socials {
  display: flex;
  gap: 25px;
  align-items: center;
}

.footer-socials a {
  display: flex;
  align-items: center;
  color: var(--grey-700);
  transition:
    color 0.3s ease,
    transform 0.3s ease;
}

.footer-socials a:hover {
  color: var(--white);
  transform: translateY(-2px);
}

@media (max-width: 640px) {
  .footer-meta {
    flex-direction: column;
    gap: 10px;
    align-items: center;
    text-align: center;
    top: 20px;
  }

  .footer-section {
    height: 40vh;
  }
}

/* GLASS ELEMENTS */
.glass-panel {
  background: rgba(255, 255, 255, 0.03);
  /* backdrop-filter removed for performance */
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 32px;
}

/* Divider lines */
.h-divider {
  width: 100%;
  height: 1px;
  background: rgba(255, 255, 255, 0.06);
  margin: 0;
}

/* Ambient light effect */
.ambient {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  pointer-events: none;
  opacity: 0.04;
}

/* Ambient Light Effect */
.ambient-light {
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.08;
  /* إضاءة أوضح قليلاً للبعد المستقبلي */
  background: white;
  mix-blend-mode: screen;
}

/* Checkout Modal */
.checkout-modal {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.9);
  /* backdrop-filter removed for performance */
  z-index: 10000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.checkout-modal.active {
  display: flex;
  opacity: 1;
  pointer-events: all;
}

.checkout-modal .modal-content {
  max-width: 700px;
  padding: 40px;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

#checkout-close-btn {
  position: absolute;
  top: 20px;
  right: 20px;
  background: none;
  border: none;
  color: var(--white);
  font-family: var(--font-mono);
  font-size: 32px;
  letter-spacing: 0;
  cursor: pointer;
  transition: transform 0.3s ease, color 0.3s ease;
}

.checkout-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  border-bottom: 1px solid #222;
  padding-bottom: 20px;
}

.checkout-header h2 {
  font-family: var(--font-display);
  font-size: 32px;
  letter-spacing: 0.1em;
  color: white;
  margin: 0;
}

.checkout-steps {
  display: flex;
  gap: 20px;
}

.checkout-steps .step {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  color: #555;
  transition: color 0.3s;
}

.checkout-steps .step.active {
  color: white;
}

.checkout-body {
  flex: 1;
  overflow-y: auto;
  padding-right: 10px;
}

.checkout-step-content {
  display: none;
  flex-direction: column;
  gap: 20px;
}

.checkout-step-content.active {
  display: flex;
}

.checkout-step-content h3 {
  font-family: var(--font-display);
  font-size: 24px;
  letter-spacing: 0.05em;
  color: white;
  margin-bottom: 15px;
}

.checkout-step-content form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.checkout-step-content input[type="text"] {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 12px 15px;
  color: white;
  font-family: var(--font-mono);
  font-size: 11px;
  width: 100%;
}

.checkout-step-content input[type="text"]::placeholder {
  color: #888;
}

.checkbox-group {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 10px;
}

.checkbox-group input[type="checkbox"] {
  width: 16px;
  height: 16px;
  accent-color: white;
}

.checkbox-group label {
  font-family: var(--font-mono);
  font-size: 12px;
  color: #ccc;
}

#checkout-order-summary {
  border: 1px solid #222;
  padding: 20px;
  max-height: 200px;
  overflow-y: auto;
  margin-bottom: 20px;
}

#checkout-order-summary .cart-item {
  border-bottom: 1px solid #1a1a1a;
  padding: 0 15px 15px 15px;
  margin-bottom: 15px;
}

#checkout-order-summary .cart-item:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.checkout-summary-details {
  display: flex;
  flex-direction: column;
  gap: 10px;
  border-top: 1px solid #222;
  padding-top: 20px;
  margin-top: 20px;
}

.summary-line {
  display: flex;
  justify-content: space-between;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  color: #ccc;
}

.summary-line.total {
  font-size: 11px;
  color: white;
  font-weight: bold;
  margin-top: 10px;
}

.coupon-section {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}

.coupon-section input {
  flex: 1;
}

.cart-btn.prev-step-btn {
  background: #333;
  color: #fff;
}

/* Hide mobile bottom nav by default on desktop */
.mobile-bottom-nav {
  display: none;
}

@media (max-width: 768px) {
  #hero {
    padding-top: 150px;
    /* Extra space for mobile header */
  }

  /* MOBILE BOTTOM NAV APP-LIKE */
  .mobile-bottom-nav {
      display: flex;
      position: fixed;
      bottom: 0;
      left: 0;
      width: 100%;
      background: rgba(10, 10, 10, 0.95);
      /* backdrop-filter removed for performance */
      border-top: 1px solid rgba(255, 255, 255, 0.1);
      z-index: 10000;
      padding: 12px 20px;
      justify-content: space-around;
      align-items: center;
      padding-bottom: calc(12px + env(safe-area-inset-bottom));
  }

  .mobile-nav-item {
      display: flex;
      flex-direction: column;
      align-items: center;
      color: var(--grey-400);
      text-decoration: none;
      font-size: 10px;
      font-family: var(--font-mono);
      gap: 6px;
      transition: color 0.3s;
  }

  .mobile-nav-item svg {
      width: 24px;
      height: 24px;
      stroke: currentColor;
      fill: none;
      stroke-width: 1.5;
      stroke-linecap: round;
      stroke-linejoin: round;
  }

  .mobile-nav-item.active {
      color: var(--white);
  }

  .mobile-nav-item:hover {
      color: var(--white);
  }

  /* Add padding to the body or footer so content isn't hidden behind the nav */
  .footer-section {
      padding-bottom: 80px;
  }

  .checkout-modal .modal-content {
    padding: 20px;
  }

  .checkout-header h2 {
    font-size: 24px;
  }

  .checkout-steps {
    flex-wrap: wrap;
    justify-content: center;
  }

  .checkout-step-content h3 {
    font-size: 20px;
  }
}

/* RESPONSIVE */
@media (max-width: 1100px) {
  :root {
    --sidebar-w: 0px;
  }

  #mobile-header {
    display: flex;
  }

  #center {
    margin: 0;
  }

  #left-sidebar,
  #right-sidebar {
    display: flex;
    width: 85%;
    max-width: 320px;
    background: rgba(0, 0, 0, 0.95);
    /* backdrop-filter removed for performance */
    transition: transform 0.6s cubic-bezier(0.85, 0, 0.15, 1);
    box-shadow: 0 0 50px rgba(0, 0, 0, 0.5);
  }

  #left-sidebar {
    transform: translateX(-101%);
  }

  #right-sidebar {
    transform: translateX(101%);
  }

  #left-sidebar.active {
    transform: translateX(0);
  }

  #right-sidebar.active {
    transform: translateX(0);
  }

  /* Show close indicators or just rely on toggle */
  .brand-logo,
  .product-index {
    margin-top: 40px;
  }
}

/* SVG sneaker art styles */
svg.sneaker {
  overflow: visible;
}


/* TOP SCROLL PROGRESS */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  width: 0%;
  height: 2px;
  background: white;
  z-index: 9999;
}

/* SIDEBAR OVERLAY FOR MOBILE */
#sidebar-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  /* backdrop-filter removed for performance */
  -webkit-/* backdrop-filter removed for performance */
  z-index: 99;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}

#sidebar-overlay.active {
  opacity: 1;
  pointer-events: all;
}

/* RESPONSIVE SCROLL SNAP & CURSOR OVERRIDES */
@media (max-width: 1024px) {
  html {
    scroll-snap-type: none !important;
  }

  section {
    scroll-snap-align: none !important;
  }
}

@media (hover: none),
(max-width: 1024px) {

  #cursor,
  

  body {
    cursor: auto !important;
  }

  a,
  button,
  .dot,
  .color-dot,
  .size-btn,
  .m-size-btn,
  .limited-cell {
    cursor: pointer !important;
  }
}

/* --- FASHION HOUSE NEW SECTIONS --- */

/* Hero Layout Grid */
.hero-layout {
  position: relative; z-index: 2;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 40px; align-items: center;
  max-width: 1400px; margin: 0 auto;
  padding: 0 40px; width: 100%;
}
.hero-left { display: flex; flex-direction: column; align-items: flex-start; text-align: left; }
.hero-right { width: 100%; }
@media (max-width: 1024px) {
  .hero-layout { grid-template-columns: 1fr; text-align: center; }
  .hero-left { align-items: center; text-align: center; }
  .hero-left .hero-title { text-align: center !important; }
}

/* Article & Social Hover */
.article-card:hover, .social-card:hover { transform: translateY(-10px); border-color: rgba(255,255,255,0.2); }
.article-card img { transition: transform 0.6s ease; }
.article-card:hover img { transform: scale(1.05); }

/* Mobile Bottom App-Style Nav */
.mobile-nav { display: none; }
@media (max-width: 768px) {
  #mobile-header { display: none !important; }
  .mobile-nav {
      display: flex; justify-content: space-around; align-items: center;
      position: fixed; bottom: 0; left: 0; width: 100%; height: 70px;
      background: rgba(10, 10, 10, 0.95); /* backdrop-filter removed for performance */
      border-top: 1px solid rgba(255,255,255,0.05); z-index: 9999;
  }
  .mobile-nav-inner {
      display: flex; justify-content: space-around; align-items: center; width: 100%; height: 100%;
  }
  .m-nav-item {
      display: flex; flex-direction: column; align-items: center; gap: 5px;
      color: var(--grey-700); text-decoration: none; font-family: var(--font-mono);
      background: none; border: none; cursor: pointer;
  }
  .m-nav-item.active, .m-nav-item:hover { color: var(--white); }
  .m-icon { font-size: 20px; }
  .m-label { font-size: 9px; letter-spacing: 0.1em; text-transform: uppercase; }
  body { padding-bottom: 70px; }
}

/* Shop Swiper Carousel Fixes */
.shop-section { position: relative; z-index: 5; }
.products-swiper { overflow: visible !important; clip-path: inset(-100vw -100vw -100vw -100vw); }

/* ULTIMATE BRUTAL SCROLL BACKGROUND */
.viewport {
  position: fixed;
  inset: 0;
  perspective: 800px;
  overflow: hidden;
  z-index: 0;
  pointer-events: none;
}

.world {
  position: absolute;
  top: 50%;
  left: 50%;
  transform-style: preserve-3d;
  will-change: transform;
}

.bg-item {
  position: absolute;
  left: 0;
  top: 0;
  backface-visibility: hidden;
  transform-origin: center center;
  display: flex;
  align-items: center;
  justify-content: center;
}

.big-text {
  font-size: 10vw;
  font-weight: 900;
  color: transparent;
  -webkit-text-stroke: 2px rgba(255, 255, 255, 0.1);
  text-transform: uppercase;
  white-space: nowrap;
  transform: translate(-50%, -50%);
  pointer-events: none;
}
@media (max-width: 768px) {
  .big-text {
    font-size: 15vw;
    -webkit-text-stroke: 1px rgba(255, 255, 255, 0.15);
  }
}

.particle {
  width: 4px;
  height: 4px;
  background: white;
  border-radius: 50%;
  position: absolute;
  pointer-events: none;
  opacity: 0.5;
}

@keyframes guardxflyGlow {
  0% { color: #ff0055; text-shadow: 0 0 10px #ff0055, 0 0 20px #ff0055; }
  25% { color: #00ffaa; text-shadow: 0 0 10px #00ffaa, 0 0 20px #00ffaa; }
  50% { color: #5500ff; text-shadow: 0 0 10px #5500ff, 0 0 20px #5500ff; }
  75% { color: #ffff00; text-shadow: 0 0 10px #ffff00, 0 0 20px #ffff00; }
  100% { color: #ff0055; text-shadow: 0 0 10px #ff0055, 0 0 20px #ff0055; }
}

.guardxfly-glow {
  text-decoration: none;
  font-weight: bold;
  animation: guardxflyGlow 3s infinite linear;
  display: inline-block;
  margin-left: 5px;
  transition: transform 0.3s ease;
}

.guardxfly-glow:hover {
  transform: scale(1.1);
}

.particle {
  transform: translate(-50%, -50%);
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.8);
}

.depth-mask {
  position: fixed;
  inset: 0;
  box-shadow: inset 0 0 150px 50px #000; background: transparent;
  pointer-events: none;
  z-index: 1;
}

/* FOOTER REDESIGN */
.footer-section {
  padding: 80px 40px 20px 40px;
  background: #050505;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  display: flex;
  flex-direction: column;
  position: relative;
  z-index: 10;
  overflow: hidden;
}

.footer-content {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto 60px auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 40px;
}

.footer-left {
  display: flex;
  flex-direction: column;
  gap: 15px;
  font-family: var(--font-mono);
  font-size: 0.85rem;
  color: var(--grey-400);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.footer-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

.footer-socials {
  display: flex;
  gap: 20px;
}

.footer-socials a {
  color: var(--grey-400);
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-socials a:hover {
  color: var(--white);
  border-color: var(--white);
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(255,255,255,0.1);
}

.footer-word {
  font-family: var(--font-display);
  font-size: clamp(3rem, 15vw, 13rem);
  font-weight: 900;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.08);
  text-align: center;
  width: 100%;
  line-height: 0.8;
  pointer-events: none;
  margin-top: 20px;
}

.footer-credit {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding-top: 40px;
  font-family: var(--font-mono);
  font-size: 0.85rem;
  color: var(--grey-400);
  letter-spacing: 0.05em;
  text-align: center;
}

@media (max-width: 768px) {
  .footer-content {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 30px;
  }
  .footer-left {
    align-items: center;
  }
  .footer-right {
    align-items: center;
  }
}

/* --- PREMIUM SINGLE-PRODUCT CATEGORY DISPLAY --- */
.dynamic-section[id^="category-section-"] {
  background: transparent !important;
  color: #ffffff !important;
  position: relative;
  overflow: hidden;
  padding: 100px 40px !important;
}

.dynamic-section[id^="category-section-"] .co-carousel {
  max-width: 320px !important;
  height: auto !important;
  min-height: 550px !important;
  overflow: hidden !important;
  padding: 20px 20px 50px 20px !important;
}

.dynamic-section[id^="category-section-"] .section-heading {
  color: #ffffff !important;
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

/* Transparent card with no border or shadow */
.dynamic-section[id^="category-section-"] .co-card {
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
  color: #ffffff !important;
  height: auto !important;
  width: 280px !important;
  border-radius: 0px;
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: flex-start !important;
  padding: 0px !important;
  transition: transform 0.4s ease;
}

.dynamic-section[id^="category-section-"] .co-card:hover {
  transform: none;
}

/* Hide adjacent slides completely to prevent shoes from overlapping */
.dynamic-section[id^="category-section-"] .swiper-slide {
  opacity: 0 !important;
  pointer-events: none !important;
  transition: opacity 0.4s ease !important;
}

@property --hover-scale {
  syntax: '<number>';
  initial-value: 1;
  inherits: true;
}

@property --hover-rotate {
  syntax: '<angle>';
  initial-value: 0deg;
  inherits: true;
}

@keyframes floatSoftly {
  0% { transform: translateY(0px) scale(var(--hover-scale, 1)) rotate(var(--hover-rotate, 0deg)); }
  50% { transform: translateY(-12px) scale(var(--hover-scale, 1)) rotate(var(--hover-rotate, 0deg)); }
  100% { transform: translateY(0px) scale(var(--hover-scale, 1)) rotate(var(--hover-rotate, 0deg)); }
}

@keyframes shadowSoftly {
  0% { transform: translateX(-50%) scale(1); opacity: 1; }
  50% { transform: translateX(-50%) scale(0.85); opacity: 0.6; }
  100% { transform: translateX(-50%) scale(1); opacity: 1; }
}

.sp-image-wrapper img, .co-card__shoe-img {
  --hover-scale: 1;
  --hover-rotate: 0deg;
  animation: floatSoftly 4s ease-in-out infinite;
  transition: --hover-scale 0.4s ease, --hover-rotate 0.4s ease;
}

.co-card__shoe-shadow {
  animation: shadowSoftly 4s ease-in-out infinite;
}


.dynamic-section[id^="category-section-"] .co-card__shoe-img {
  filter: drop-shadow(0 15px 25px rgba(0, 0, 0, 0.5)) !important;
  --hover-scale: 1.05;
}

.dynamic-section[id^="category-section-"] .co-card:hover .co-card__shoe-img {
  --hover-scale: 1.1;
  --hover-rotate: -3deg;
}

.dynamic-section[id^="category-section-"] .co-card__shoe-shadow {
  background: rgba(0, 0, 0, 0.4) !important;
  filter: blur(15px) !important;
}

/* Center product details beautifully below the shoe image */
.dynamic-section[id^="category-section-"] .co-card__info {
  position: relative !important;
  width: 100% !important;
  margin-top: 0px !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  text-align: center !important;
  padding: 0 !important;
}

.dynamic-section[id^="category-section-"] .co-card__collection {
  color: #b0b0b0 !important;
  font-family: var(--font-editorial) !important;
  font-size: 12px !important;
  text-transform: none !important;
  letter-spacing: 0.05em !important;
  margin-bottom: 8px !important;
}

.dynamic-section[id^="category-section-"] .co-card__title {
  color: #ffffff !important;
  font-family: var(--font-display) !important;
  font-size: 26px !important;
  font-weight: 700 !important;
  letter-spacing: 0.05em !important;
  text-align: center !important;
  margin-bottom: 6px !important;
  text-transform: uppercase !important;
  line-height: 1.2 !important;
}

.dynamic-section[id^="category-section-"] .co-card__price {
  color: #ffffff !important;
  font-family: var(--font-display) !important;
  font-size: 20px !important;
  font-weight: 800 !important;
  letter-spacing: 0.05em !important;
  margin-bottom: 15px !important;
}

.dynamic-section[id^="category-section-"] .card-variants {
  margin-top: 0px !important;
}

.dynamic-section[id^="category-section-"] .card-colors {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 20px;
}

.dynamic-section[id^="category-section-"] .color-dot {
  width: 20px !important;
  height: 20px !important;
  border-radius: 50% !important;
  border: 1px solid rgba(255,255,255,0.2) !important;
  box-shadow: 0 2px 4px rgba(0,0,0,0.5) !important;
  transition: transform 0.2s ease, border-color 0.2s ease !important;
}

.dynamic-section[id^="category-section-"] .color-dot:hover {
  transform: scale(1.2);
}

/* Premium white sharp button with black text on dark background */
.dynamic-section[id^="category-section-"] .cart-btn {
  background: #ffffff !important;
  color: #000000 !important;
  border: 2px solid #ffffff !important;
  border-radius: 8px !important;
  padding: 14px !important;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: normal;
  text-transform: uppercase;
  width: 100% !important;
  box-shadow: 0 4px 15px rgba(255,255,255,0.1) !important;
  transition: all 0.3s ease !important;
  margin-top: 10px !important;
  cursor: pointer;
}

.dynamic-section[id^="category-section-"] .cart-btn:hover {
  background: transparent !important;
  color: #ffffff !important;
  border-color: #ffffff !important;
  box-shadow: 0 4px 20px rgba(255,255,255,0.2) !important;
}

.dynamic-section[id^="category-section-"] .cart-btn::before {
  display: none !important;
}

/* White Nav buttons and arrows on dark background */
.dynamic-section[id^="category-section-"] .co-carousel__nav-button span {
  color: #ffffff !important;
}

.dynamic-section[id^="category-section-"] .co-carousel__nav-button::before {
  background-color: rgba(255, 255, 255, 0.3) !important;
}

.dynamic-section[id^="category-section-"] .co-carousel__nav-button:hover::before {
  background-color: #ffffff !important;
}

.dynamic-section[id^="category-section-"] .co-carousel__nav-button.swiper-button-disabled {
  opacity: 0.2;
}

/* Swiper Pagination dots on dark background */
.dynamic-section[id^="category-section-"] .swiper-pagination {
  position: absolute;
  bottom: 15px !important;
  left: 50% !important;
  transform: translateX(-50%) !important;
  width: auto !important;
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
  z-index: 10 !important;
}

.dynamic-section[id^="category-section-"] .swiper-pagination-bullet {
  background: rgba(255, 255, 255, 0.3) !important;
  opacity: 1;
  width: 8px;
  height: 8px;
  margin: 0 6px !important;
  transition: background 0.3s, transform 0.3s, width 0.3s;
}

.dynamic-section[id^="category-section-"] .swiper-pagination-bullet-active {
  background: #ffffff !important;
  width: 18px;
  border-radius: 4px;
}

.noise {
  position: fixed;
  inset: 0;
  background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADIAAAAyBAMAAADsEZWCAAAAGFBMVEUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAMcv7PAAAACHRSTlMAAAAAAABARz1qfH0AAABYSURBVDjLpY5BDsAgCATh/0+baIyJeDSb1j7IwiCAsWz5T/5Z2h4K6w2xI/OqVvYiH2z2lVq8h7K2YqO3l11930qL6y033b0Xw6l3e6U3X93O2ZJ38wP83AEh1f7yU0eEowAAAABJRU5ErkJggg=="); background-repeat: repeat;
  z-index: 2;
  pointer-events: none;
  opacity: 0.08; /* Optimized noise */
}
@media (max-width: 768px) { .footer-section { padding-bottom: 110px !important; } }

@media (max-width: 768px) { .footer-credit { padding-bottom: 20px; z-index: 1000; position: relative; } }

.dynamic-section[id^="category-section-"] .swiper-slide-active { opacity: 1 !important; pointer-events: auto !important; }
.dynamic-section[id^="category-section-"] .co-card__shoe { width: 100% !important; position: relative !important; top: 0 !important; left: 0 !important; margin-bottom: 15px !important; }
@media (max-width: 768px) { .footer-credit { padding-bottom: 120px !important; margin-bottom: 120px !important; } }


.world div, .tunnel div { will-change: transform, opacity; }
.noise { will-change: opacity; }
.glass-panel { will-change: transform, opacity; }






.article-loader-container {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding: 50px 0;
}
.article-loader {
  position: relative;
  width: 33px;
  height: 33px;
  perspective: 67px;
}
.article-loader div {
  width: 100%;
  height: 100%;
  background: #fff;
  position: absolute;
  left: 50%;
  transform-origin: left;
  animation: article-loader-anim 2s infinite;
}
.article-loader div:nth-child(1) { animation-delay: 0.15s; }
.article-loader div:nth-child(2) { animation-delay: 0.3s; }
.article-loader div:nth-child(3) { animation-delay: 0.45s; }
.article-loader div:nth-child(4) { animation-delay: 0.6s; }
.article-loader div:nth-child(5) { animation-delay: 0.75s; }
@keyframes article-loader-anim {
  0% { transform: rotateY(0deg); }
  50%, 80% { transform: rotateY(-180deg); }
  90%, 100% { opacity: 0; transform: rotateY(-180deg); }
}

