/*
 * Auctions Section – Carousel layout
 * Light, compact, blue-indigo palette.
 */

/* ── Variables ── */
.eo-section {
  --eo-blue: #2563eb;
  --eo-blue-soft: rgba(37, 99, 235, 0.10);
  --eo-blue-light: rgba(37, 99, 235, 0.06);
  --eo-indigo: #4f46e5;
  --eo-violet: #7c3aed;
  --eo-text: #1e293b;
  --eo-text-soft: #64748b;
  --eo-text-muted: #94a3b8;
  --eo-white: #ffffff;
  --eo-ease: cubic-bezier(0.2, 0.9, 0.4, 1);
  --eo-ease-out: cubic-bezier(0.165, 0.84, 0.44, 1);
  --eo-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);
  --eo-radius: 20px;
}

.eo-section {
  position: relative;
  padding: 3rem 0 2.5rem;
  background: linear-gradient(160deg, #f8faff 0%, #f0f4ff 35%, #eef2ff 100%);
  overflow: hidden;
  font-family: 'Outfit', 'Inter', sans-serif;
  isolation: isolate;
}

/* ── Ambient glow overlay ── */
.eo-section::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse at 85% 10%, rgba(37, 99, 235, 0.06) 0%, transparent 55%),
    radial-gradient(ellipse at 15% 85%, rgba(79, 70, 229, 0.05) 0%, transparent 50%),
    radial-gradient(ellipse at 50% 50%, rgba(124, 58, 237, 0.03) 0%, transparent 60%);
}

/* ══════════════════════════════════════════════════════════
   DECOR – Nebula blobs
   ══════════════════════════════════════════════════════════ */
.eo-nebula {
  position: absolute;
  z-index: 0;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(100px);
}

.eo-nebula--1 {
  width: 650px; height: 650px;
  top: -200px; right: -120px;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.07) 0%, transparent 65%);
  animation: eoNebulaDrift 28s ease-in-out infinite alternate;
}

.eo-nebula--2 {
  width: 550px; height: 550px;
  bottom: -180px; left: -100px;
  background: radial-gradient(circle, rgba(79, 70, 229, 0.06) 0%, transparent 60%);
  animation: eoNebulaDrift 32s ease-in-out infinite alternate-reverse;
}

.eo-nebula--3 {
  width: 380px; height: 380px;
  top: 18%; left: 50%;
  background: radial-gradient(circle, rgba(124, 58, 237, 0.04) 0%, transparent 60%);
  animation: eoNebulaPulse 20s ease-in-out infinite alternate;
}

@keyframes eoNebulaDrift {
  0%   { transform: translate(0, 0) scale(1); }
  100% { transform: translate(40px, -20px) scale(1.08); }
}
@keyframes eoNebulaPulse {
  0%   { transform: scale(1); opacity: 0.7; }
  100% { transform: scale(1.15); opacity: 1; }
}

/* ══════════════════════════════════════════════════════════
   DECOR – Orbital ring with bid dot
   ══════════════════════════════════════════════════════════ */
.eo-orbit {
  position: absolute;
  z-index: 0;
  pointer-events: none;
  top: -50px; left: -80px;
  width: 500px; height: 500px;
  animation: eoOrbitFloat 22s ease-in-out infinite alternate;
}

.eo-orbit-ring {
  width: 100%; height: 100%;
  border: 1.5px solid rgba(79, 70, 229, 0.06);
  border-radius: 50%;
  position: relative;
  animation: eoOrbitSpin 35s linear infinite;
}

.eo-orbit-dot {
  position: absolute;
  top: -6px; left: 50%;
  width: 10px; height: 10px;
  margin-left: -5px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, #fff, #4f46e5);
  box-shadow: 0 0 20px 6px rgba(79, 70, 229, 0.25);
  animation: eoOrbitDotPulse 4s ease-in-out infinite;
}

@keyframes eoOrbitFloat {
  0%   { transform: translate(0, 0) rotate(-2deg); }
  100% { transform: translate(15px, -10px) rotate(2deg); }
}
@keyframes eoOrbitSpin {
  0%   { transform: rotateX(72deg) rotateY(8deg) rotate(0deg); }
  100% { transform: rotateX(72deg) rotateY(8deg) rotate(360deg); }
}
@keyframes eoOrbitDotPulse {
  0%, 100% { opacity: 0.6; transform: scale(0.9); }
  50%      { opacity: 1; transform: scale(1.3); }
}

/* ══════════════════════════════════════════════════════════
   DECOR – Diamond constellation SVG
   ══════════════════════════════════════════════════════════ */
.eo-constellation {
  position: absolute;
  z-index: 0;
  pointer-events: none;
  top: 5%; right: 3%;
  width: 180px; height: 180px;
  opacity: 0.5;
}

.eo-const-path {
  fill: none;
  stroke: url(#eoConstGrad);
  stroke-width: 1.5;
  stroke-dasharray: 6 8;
  animation: eoConstDash 22s linear infinite;
}

.eo-const-dot {
  fill: #4f46e5;
  animation: eoStarTwinkle 3.5s ease-in-out infinite;
}
.eo-const-dot:nth-child(5) { animation-delay: 0s; }
.eo-const-dot:nth-child(6) { animation-delay: 0.6s; }
.eo-const-dot:nth-child(7) { animation-delay: 1.2s; }
.eo-const-dot:nth-child(8) { animation-delay: 1.8s; }

@keyframes eoConstDash {
  0%   { stroke-dashoffset: 0; }
  100% { stroke-dashoffset: -112; }
}
@keyframes eoStarTwinkle {
  0%, 100% { opacity: 0.2; transform: scale(0.8); }
  40%      { opacity: 1; transform: scale(1.5); }
}

/* ══════════════════════════════════════════════════════════
   DECOR – Floating gems
   ══════════════════════════════════════════════════════════ */
.eo-gem {
  position: absolute;
  z-index: 0;
  pointer-events: none;
  width: 28px; height: 28px;
  border-radius: 6px;
  transform: rotate(45deg);
  opacity: 0.2;
}

.eo-gem--1 {
  top: 14%; left: 4%;
  width: 32px; height: 32px;
  background: linear-gradient(135deg, #2563eb, #4f46e5, #7c3aed);
  box-shadow: 0 0 20px rgba(37, 99, 235, 0.15);
  animation: eoGemFloat 14s ease-in-out infinite;
}

.eo-gem--2 {
  bottom: 12%; right: 6%;
  width: 22px; height: 22px;
  background: linear-gradient(135deg, #4f46e5, #7c3aed, #2563eb);
  box-shadow: 0 0 16px rgba(79, 70, 229, 0.12);
  animation: eoGemFloat 12s ease-in-out infinite 3s;
}

.eo-gem--3 {
  top: 55%; left: 8%;
  width: 18px; height: 18px;
  background: linear-gradient(135deg, #7c3aed, #4f46e5, #2563eb);
  box-shadow: 0 0 12px rgba(124, 58, 237, 0.1);
  animation: eoGemFloat 16s ease-in-out infinite 1.5s;
}

@keyframes eoGemFloat {
  0%, 100% { transform: rotate(45deg) translateY(0); }
  50%      { transform: rotate(55deg) translateY(-12px); }
}

/* ══════════════════════════════════════════════════════════
   DECOR – Bid signal waves
   ══════════════════════════════════════════════════════════ */
.eo-signal {
  position: absolute;
  z-index: 0;
  pointer-events: none;
}

.eo-signal span {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 1.5px solid transparent;
  border-top-color: rgba(37, 99, 235, 0.12);
  animation: eoSignalPulse 4s ease-out infinite;
}

.eo-signal--1 {
  bottom: 20%; left: 4%;
  width: 60px; height: 60px;
}
.eo-signal--1 span:nth-child(1) { inset: 0; animation-delay: 0s; }
.eo-signal--1 span:nth-child(2) { inset: -14px; animation-delay: 1s; }
.eo-signal--1 span:nth-child(3) { inset: -28px; animation-delay: 2s; }

.eo-signal--2 {
  top: 38%; right: 8%;
  width: 40px; height: 40px;
  opacity: 0.6;
}
.eo-signal--2 span:nth-child(1) { inset: 0; animation-delay: 0s; border-top-color: rgba(124, 58, 237, 0.1); }
.eo-signal--2 span:nth-child(2) { inset: -12px; animation-delay: 1.5s; border-top-color: rgba(79, 70, 229, 0.08); }

@keyframes eoSignalPulse {
  0%   { transform: scale(0.8); opacity: 0; }
  20%  { opacity: 1; }
  100% { transform: scale(2); opacity: 0; }
}

/* ══════════════════════════════════════════════════════════
   DECOR – Shooting star
   ══════════════════════════════════════════════════════════ */
.eo-shooting-star {
  position: absolute;
  z-index: 0;
  pointer-events: none;
  top: 8%; left: 55%;
  width: 4px; height: 4px;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 0 6px 2px rgba(37, 99, 235, 0.4);
  animation: eoShootStar 8s ease-in infinite;
  animation-delay: 4s;
}

.eo-shooting-tail {
  position: absolute;
  top: 50%; right: 100%;
  width: 50px; height: 1.5px;
  background: linear-gradient(90deg, transparent, rgba(37, 99, 235, 0.15));
  transform: translateY(-50%);
}

@keyframes eoShootStar {
  0%   { transform: translate(0, 0) scale(1); opacity: 0; }
  5%   { opacity: 1; }
  20%  { transform: translate(-140px, 90px) scale(0.6); opacity: 0.4; }
  100% { transform: translate(-300px, 200px) scale(0.2); opacity: 0; }
}

/* ══════════════════════════════════════════════════════════
   DECOR – Floating particles
   ══════════════════════════════════════════════════════════ */
.eo-particle {
  position: absolute;
  z-index: 0;
  pointer-events: none;
  border-radius: 50%;
  animation: eoParticleFloat 8s ease-in-out infinite alternate;
}

.eo-p--1 { width: 6px; height: 6px; top: 12%; left: 20%; background: #4f46e5; box-shadow: 0 0 12px rgba(79,70,229,0.4); }
.eo-p--2 { width: 4px; height: 4px; top: 25%; right: 15%; background: #2563eb; box-shadow: 0 0 8px rgba(37,99,235,0.4); animation-delay: 1.5s; }
.eo-p--3 { width: 5px; height: 5px; bottom: 30%; left: 12%; background: #7c3aed; box-shadow: 0 0 10px rgba(124,58,237,0.3); animation-delay: 3s; }
.eo-p--4 { width: 3px; height: 3px; top: 60%; right: 22%; background: #4f46e5; box-shadow: 0 0 6px rgba(79,70,229,0.3); animation-delay: 0.8s; }
.eo-p--5 { width: 7px; height: 7px; bottom: 10%; right: 30%; background: #2563eb; box-shadow: 0 0 14px rgba(37,99,235,0.3); animation-delay: 4.5s; }
.eo-p--6 { width: 4px; height: 4px; top: 40%; left: 45%; background: #c4b5fd; box-shadow: 0 0 8px rgba(196,181,253,0.4); animation-delay: 2.2s; }

@keyframes eoParticleFloat {
  0%   { transform: translateY(0) scale(1); opacity: 0.4; }
  100% { transform: translateY(-20px) scale(1.4); opacity: 0.9; }
}

/* ══════════════════════════════════════════════════════════
   HEADER
   ══════════════════════════════════════════════════════════ */
.eo-header {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.eo-header-text {
  flex: 1;
  min-width: 0;
}

.eo-title {
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  font-weight: 800;
  color: #1e293b;
  margin: 0 0 1rem;
  letter-spacing: -0.03em;
  line-height: 1.12;
}

.eo-title .text-gradient {
  background: linear-gradient(135deg, #2563eb, #4f46e5, #7c3aed);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.eo-subtitle {
    margin: 0;
    font-size: 1.1rem;
    font-weight: 400;
    color: #334155;
    line-height: 1.6;
    font-family: 'Outfit', 'Plus Jakarta Sans', sans-serif;
}

/* ── Header nav ── */
.eo-header-nav {
  display: flex;
  gap: 0.5rem;
  flex-shrink: 0;
  padding-bottom: 0.15rem;
}

.eo-header-nav .eo-swiper-nav {
  position: static;
  transform: none;
  opacity: 1;
  pointer-events: auto;
}

/* ══════════════════════════════════════════════════════════
   CAROUSEL WRAPPER
   ══════════════════════════════════════════════════════════ */
.eo-slider-wrapper {
  position: relative;
  z-index: 2;
}

.eo-swiper {
  overflow: visible;
  padding-bottom: 8px;
}

.eo-swiper .swiper-slide {
  width: 310px;
  height: auto;
  display: flex;
}

/* ══════════════════════════════════════════════════════════
   NAVIGATION ARROWS
   ══════════════════════════════════════════════════════════ */
.eo-swiper-nav {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(37, 99, 235, 0.1);
  background: var(--eo-white);
  box-shadow: 0 2px 8px rgba(37, 99, 235, 0.06);
  color: var(--eo-indigo);
  font-size: 1.3rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.eo-swiper-nav:hover {
  transform: scale(1.12);
  box-shadow: 0 6px 20px rgba(37, 99, 235, 0.14);
}

.eo-swiper-nav:active {
  transform: scale(0.95);
}

.eo-swiper-nav.swiper-button-disabled {
  opacity: 0.25 !important;
  pointer-events: none !important;
}

/* ══════════════════════════════════════════════════════════
   CARD
   ══════════════════════════════════════════════════════════ */
.eo-card {
  position: relative;
  width: 100%;
  border-radius: var(--eo-radius);
  background: var(--eo-white);
  border: 1px solid rgba(37, 99, 235, 0.06);
  box-shadow:
    0 8px 24px -12px rgba(37, 99, 235, 0.08),
    0 2px 6px -2px rgba(0, 0, 0, 0.03);
  transition:
    transform 0.4s var(--eo-ease),
    box-shadow 0.4s var(--eo-ease),
    border-color 0.4s var(--eo-ease);
  overflow: visible;
  animation: eoCardEnter 0.6s var(--eo-ease-out) both;
}

.eo-card:nth-child(1) { animation-delay: 0.03s; }
.eo-card:nth-child(2) { animation-delay: 0.08s; }
.eo-card:nth-child(3) { animation-delay: 0.13s; }
.eo-card:nth-child(4) { animation-delay: 0.18s; }
.eo-card:nth-child(5) { animation-delay: 0.23s; }
.eo-card:nth-child(6) { animation-delay: 0.28s; }

@keyframes eoCardEnter {
  0%   { opacity: 0; transform: translateY(20px); }
  100% { opacity: 1; transform: translateY(0); }
}

.eo-card::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: 21px;
  z-index: -1;
  opacity: 0;
  transition: opacity 0.4s var(--eo-ease);
  pointer-events: none;
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.15), rgba(79, 70, 229, 0.06), rgba(124, 58, 237, 0.08));
}

.eo-card:hover::before { opacity: 1; }

.eo-card:hover {
  transform: translateY(-5px);
  border-color: rgba(37, 99, 235, 0.12);
  box-shadow:
    0 20px 40px -16px rgba(37, 99, 235, 0.1),
    0 4px 12px -4px rgba(0, 0, 0, 0.04);
}

/* ── Card inner ── */
.eo-card-inner {
  position: relative;
  z-index: 1;
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.65rem;
  transition: transform 0.15s ease-out;
  border-radius: inherit;
  height: 100%;
}

/* ══════════════════════════════════════════════════════════
   IMAGE
   ══════════════════════════════════════════════════════════ */
.eo-card-image {
  position: relative;
  width: 72px;
  height: 72px;
  flex-shrink: 0;
}

.eo-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  filter: grayscale(60%) brightness(0.95) sepia(0.1) hue-rotate(210deg) saturate(0.6);
  transition: transform 0.4s var(--eo-ease);
}

.eo-card:hover .eo-card-img {
  transform: scale(1.06);
}

.eo-card-img-fallback {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: var(--eo-blue-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  color: var(--eo-blue);
}

.eo-card-image-ring {
  position: absolute;
  inset: -3px;
  border-radius: 50%;
  border: 1.5px solid rgba(37, 99, 235, 0.1);
  pointer-events: none;
  transition:
    inset 0.4s var(--eo-ease),
    border-color 0.4s var(--eo-ease);
  animation: eoRingPulse 5s ease-in-out infinite;
}

@keyframes eoRingPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(37, 99, 235, 0.08); }
  8%       { box-shadow: 0 0 14px 3px rgba(37, 99, 235, 0.04); }
}

.eo-card:hover .eo-card-image-ring {
  inset: -6px;
  border-color: rgba(37, 99, 235, 0.2);
  box-shadow: 0 0 18px 4px rgba(37, 99, 235, 0.05);
  animation-play-state: paused;
}

/* ══════════════════════════════════════════════════════════
   TITLE + EXCERPT
   ══════════════════════════════════════════════════════════ */
.eo-card-title {
  width: 100%;
  margin: 0;
  font-family: 'Outfit', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  line-height: 1.3;
  color: var(--eo-text);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.eo-card-title a {
  color: inherit;
  text-decoration: none;
}

.eo-card-title a:hover {
  color: var(--eo-blue);
}

.eo-card-excerpt {
  width: 100%;
  margin: 0;
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  line-height: 1.45;
  color: var(--eo-text-soft);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* ══════════════════════════════════════════════════════════
   MAIN ROW – Price + CTA
   ══════════════════════════════════════════════════════════ */
.eo-card-main {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0.5rem 0;
  border-top: 1px solid rgba(37, 99, 235, 0.05);
  border-bottom: 1px solid rgba(37, 99, 235, 0.05);
  margin-top: auto;
}

.eo-card-price {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.05rem;
}

.eo-card-price-value {
  font-family: 'Outfit', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  background: linear-gradient(135deg, #2563eb, #4f46e5, #7c3aed);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: -0.02em;
}

.eo-card-price-label {
  font-family: 'Inter', sans-serif;
  font-size: 0.6rem;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--eo-text-muted);
}

/* ── CTA ── */
.eo-card-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--eo-white);
  text-decoration: none;
  background: linear-gradient(135deg, #2563eb, #4f46e5, #7c3aed);
  padding: 0.5rem 1.1rem;
  border-radius: 50px;
  border: none;
  transition:
    transform 0.35s var(--eo-ease),
    box-shadow 0.35s var(--eo-ease);
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.12);
}

.eo-card-cta i {
  font-size: 0.8rem;
  transition: transform 0.3s;
}

.eo-card-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(37, 99, 235, 0.2);
}

.eo-card-cta:hover i {
  transform: translateX(4px);
}

.eo-card-cta:active {
  transform: scale(0.95);
}

/* ══════════════════════════════════════════════════════════
   TIMER
   ══════════════════════════════════════════════════════════ */
.eo-card-timer {
  position: relative;
  width: 80px;
  height: 80px;
  flex-shrink: 0;
}

.eo-timer-svg {
  display: block;
  width: 80px;
  height: 80px;
}

.eo-timer-fg {
  transition: stroke-dashoffset 1s linear;
}

.eo-timer-text {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  gap: 1px;
}

.eo-timer-label {
  font-family: 'Inter', sans-serif;
  font-size: 0.5rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  color: var(--eo-text-muted);
  line-height: 1;
}

.eo-timer-days {
  font-family: 'Outfit', sans-serif;
  font-size: 0.65rem;
  font-weight: 400;
  color: var(--eo-text-muted);
  line-height: 1;
}

.eo-timer-time {
  font-family: 'Outfit', sans-serif;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--eo-text);
  letter-spacing: 0.02em;
  font-variant-numeric: tabular-nums;
  line-height: 1;
}

/* ══════════════════════════════════════════════════════════
   FOOTER CTA
   ══════════════════════════════════════════════════════════ */
.eo-footer {
  position: relative;
  z-index: 2;
  text-align: center;
  margin-top: 2.5rem;
}

.eo-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: 'Outfit', sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--eo-white);
  text-decoration: none;
  padding: 0.8rem 2rem;
  border-radius: 50px;
  background: linear-gradient(135deg, #2563eb, #4f46e5, #7c3aed);
  border: none;
  position: relative;
  overflow: hidden;
  transition:
    transform 0.35s var(--eo-ease),
    box-shadow 0.35s var(--eo-ease);
  animation: eoCtaBreathe 2.4s var(--eo-bounce) infinite;
  box-shadow: 0 8px 24px rgba(37, 99, 235, 0.3);
}

.eo-cta i {
  font-size: 1rem;
  transition: transform 0.35s var(--eo-ease);
}

.eo-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    110deg,
    transparent 20%,
    rgba(255, 255, 255, 0.2) 38%,
    rgba(255, 255, 255, 0.3) 42%,
    transparent 60%
  );
  background-size: 250% 100%;
  background-position: 200% 0;
  transition: background-position 0.6s ease;
  pointer-events: none;
  border-radius: inherit;
}

.eo-cta:hover::before {
  background-position: -50% 0;
}

.eo-cta:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 12px 36px rgba(37, 99, 235, 0.4);
  animation: none;
}

.eo-cta:hover i {
  transform: translateX(6px);
}

.eo-cta:active {
  transform: scale(0.96);
}

@keyframes eoCtaBreathe {
  0%   { transform: translateY(0) scale(1); box-shadow: 0 8px 24px rgba(37, 99, 235, 0.3); }
  25%  { transform: translateY(-6px) scale(1.06); box-shadow: 0 24px 48px rgba(37, 99, 235, 0.5); }
  50%  { transform: translateY(-4px) scale(0.97); box-shadow: 0 12px 28px rgba(37, 99, 235, 0.35); }
  70%  { transform: translateY(-5px) scale(1.035); box-shadow: 0 18px 40px rgba(37, 99, 235, 0.45); }
  100% { transform: translateY(0) scale(1); box-shadow: 0 8px 24px rgba(37, 99, 235, 0.3); }
}

/* ══════════════════════════════════════════════════════════
   REDUCED MOTION
   ══════════════════════════════════════════════════════════ */
@media (prefers-reduced-motion: reduce) {
  .eo-card { animation: none; }
  .eo-card:hover { transform: translateY(-3px); }
  .eo-card-image-ring { animation: none; }
  .eo-timer-fg { transition: none; }
  .eo-cta { animation: none; }
  .eo-cta::before { display: none; }
  .eo-cta:hover { transform: none; }
  .eo-nebula { animation: none; }
  .eo-orbit { animation: none; }
  .eo-orbit-ring { animation: none; }
  .eo-orbit-dot { animation: none; }
  .eo-const-path { animation: none; }
  .eo-const-dot { animation: none; }
  .eo-gem { animation: none; }
  .eo-signal span { animation: none; display: none; }
  .eo-shooting-star { animation: none; display: none; }
  .eo-particle { animation: none; opacity: 0.5; }
}

/* ══════════════════════════════════════════════════════════
   RESPONSIVE
   ══════════════════════════════════════════════════════════ */
@media (max-width: 1200px) {
  .eo-section { padding: 2.5rem 0 2rem; }
}

@media (max-width: 900px) {
  .eo-section { padding: 2rem 0 1.75rem; }
  .eo-header { margin-bottom: 1.5rem; }
  .eo-swiper .swiper-slide { width: 270px; }
  .eo-card-inner { padding: 1rem; }
  .eo-card-image { width: 64px; height: 64px; }
  .eo-card-timer { width: 72px; height: 72px; }
  .eo-timer-svg { width: 72px; height: 72px; }
  .eo-swiper-nav { width: 36px; height: 36px; font-size: 1.1rem; }
}

@media (max-width: 600px) {
  .eo-section { padding: 1.5rem 0 1.25rem; }
  .eo-header { margin-bottom: 1.25rem; }
  .eo-swiper .swiper-slide { width: 260px; }
  .eo-card-inner { padding: 0.85rem; }
  .eo-card-image { width: 60px; height: 60px; }
  .eo-card-timer { width: 68px; height: 68px; }
  .eo-timer-svg { width: 68px; height: 68px; }
  .eo-card-title { font-size: 0.88rem; }
  .eo-swiper-nav { display: none; }
}

@media (max-width: 480px) {
  .eo-section { padding: 1rem 0; }
  .eo-header { margin-bottom: 1rem; }
  .eo-title { font-size: 1.4rem; }
  .eo-subtitle { font-size: 0.85rem; }
  .eo-swiper .swiper-slide { width: 220px; }
  .eo-card-inner { padding: 0.7rem; }
  .eo-card-image { width: 48px; height: 48px; }
  .eo-card-timer { width: 56px; height: 56px; }
  .eo-timer-svg { width: 56px; height: 56px; }
  .eo-card-title { font-size: 0.82rem; }
  .eo-card-price { font-size: 0.9rem; }
  .eo-section .sp-link-arrow { font-size: 0.8rem; }
}
