/* ===========================================
   ✨ ULTRA-COOL SLIDER & PAGINATION DESIGN ✨
   Morphing Dots + Magnetic Effects + 3D Transforms
   Holographic Shimmer + Particle Trails
   =========================================== */

/* Hide default arrows */
.ec-main-slider .main_banner_arrow_img {
  display: none !important;
}

/* Slide backgrounds */
.ec-main-slider .slide-1,
.ec-main-slider .slide-2,
.ec-main-slider .slide-3,
.ec-main-slider .slide-4 {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  border-radius: 0;
}

/* Add subtle overlay gradient for depth */
.ec-main-slider .slide-1::before,
.ec-main-slider .slide-2::before,
.ec-main-slider .slide-3::before,
.ec-main-slider .slide-4::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0) 0%,
    rgba(0, 0, 0, 0.1) 50%,
    rgba(0, 0, 0, 0.3) 100%
  );
  pointer-events: none;
  z-index: 1;
}

.ec-main-slider .container {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 35px !important;
  z-index: 2;
}

.ec-main-slider .slick-vertical .slick-slide {
  border: none;
}

.ec-slide-content .btn-secondary {
  background-color: rgba(32, 32, 32, 0.58);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.ec-slide-content .btn-secondary:hover {
  background-color: rgba(32, 32, 32, 0.85);
  transform: translateY(-2px) scale(1.05);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

/* ===============================
   🎯 ULTRA-COOL PAGINATION DOTS
   =============================== */

/* Default dots container */
ul.slick-dots {
  text-align: center;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 0;
  margin-bottom: 10px;
  gap: 6px;
  padding: 8px 16px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-radius: 50px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 
    0 4px 16px rgba(0, 0, 0, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
}

/* Individual dot - morphing design */
.slick-dots li {
  width: 8px;
  height: 8px;
  display: inline-block;
  border-radius: 50%;
  position: relative;
  border: none;
  margin: 0;
  transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
  cursor: pointer;
  background: rgba(255, 255, 255, 0.3);
  box-shadow: 
    0 2px 8px rgba(0, 0, 0, 0.15),
    inset 0 1px 2px rgba(255, 255, 255, 0.3);
}

/* Glowing ring effect on hover */
.slick-dots li::before {
  content: "";
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid transparent;
  background: linear-gradient(135deg, 
    rgba(99, 102, 241, 0.6),
    rgba(168, 85, 247, 0.6),
    rgba(236, 72, 153, 0.6)
  ) border-box;
  -webkit-mask: 
    linear-gradient(#fff 0 0) padding-box, 
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: all 0.4s ease;
}

.slick-dots li:hover::before {
  opacity: 1;
  inset: -6px;
  animation: pulseRing 1.5s ease-in-out infinite;
}

/* Particle trail effect */
.slick-dots li::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: radial-gradient(circle, 
    rgba(99, 102, 241, 0.4) 0%,
    transparent 70%
  );
  transform: translate(-50%, -50%) scale(0);
  opacity: 0;
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.slick-dots li:hover::after {
  transform: translate(-50%, -50%) scale(3);
  opacity: 0.6;
}

.slick-dots li button {
  width: 100%;
  height: 100%;
  padding: 0;
  font-size: 0;
  display: none;
}

.slick-dots li:hover {
  background: linear-gradient(135deg, 
    rgba(99, 102, 241, 0.8),
    rgba(168, 85, 247, 0.8)
  );
  transform: scale(1.3);
  box-shadow: 
    0 4px 12px rgba(99, 102, 241, 0.4),
    0 0 20px rgba(99, 102, 241, 0.3);
}

/* 🌟 ACTIVE DOT - MORPHING PILL WITH HOLOGRAPHIC EFFECT */
.slick-dots li.slick-active {
  width: 24px;
  height: 8px;
  border-radius: 20px;
  background: linear-gradient(
    90deg,
    #6366f1 0%,
    #a855f7 25%,
    #ec4899 50%,
    #f97316 75%,
    #eab308 100%
  );
  background-size: 200% 100%;
  animation: gradientFlow 3s linear infinite;
  position: relative;
  overflow: hidden;
  box-shadow: 
    0 0 20px rgba(99, 102, 241, 0.6),
    0 4px 16px rgba(168, 85, 247, 0.4),
    inset 0 1px 2px rgba(255, 255, 255, 0.5);
}

/* Holographic shimmer on active dot */
.slick-dots li.slick-active::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    120deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.6) 45%,
    rgba(255, 255, 255, 0) 55%,
    rgba(255, 255, 255, 0) 100%
  );
  background-size: 200% 100%;
  animation: shimmerSweep 2s linear infinite;
  opacity: 1;
  border: none;
  border-radius: 20px;
}

/* Inner glow pulse */
.slick-dots li.slick-active::after {
  content: "";
  position: absolute;
  inset: 2px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.2);
  animation: innerPulse 2s ease-in-out infinite;
  transform: none;
  opacity: 1;
}

/* ===============================
   🎨 MAIN SLIDER PAGINATION
   =============================== */
.ec-main-slider .slick-dots {
  position: absolute;
  bottom: 25px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 5px;
  margin: 0;
  padding: 8px 14px;
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(30px) saturate(200%);
  -webkit-backdrop-filter: blur(30px) saturate(200%);
  border-radius: 50px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 
    0 8px 32px rgba(0, 0, 0, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.15);
  width: auto;
  height: auto;
  z-index: 10;
}

.ec-main-slider .slick-dots li {
  width: 8px;
  height: 8px;
  font-size: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  margin: 0;
  transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
  cursor: pointer;
  position: relative;
  box-shadow: 
    0 2px 6px rgba(0, 0, 0, 0.2),
    inset 0 1px 1px rgba(255, 255, 255, 0.3);
}

/* Ripple effect on hover */
.ec-main-slider .slick-dots li::before {
  content: "";
  position: absolute;
  inset: -3px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.5);
  opacity: 0;
  transform: scale(0.8);
  transition: all 0.3s ease;
}

.ec-main-slider .slick-dots li:hover {
  background: rgba(255, 255, 255, 0.8);
  transform: scale(1.4);
  box-shadow: 
    0 0 16px rgba(255, 255, 255, 0.4),
    0 4px 12px rgba(0, 0, 0, 0.3);
}

.ec-main-slider .slick-dots li:hover::before {
  opacity: 1;
  transform: scale(1.3);
  animation: rippleExpand 1s ease-out infinite;
}

/* 🔥 ACTIVE DOT - EXPANDING PILL WITH ENERGY FLOW */
.ec-main-slider .slick-dots li.slick-active {
  width: 24px;
  height: 8px;
  border-radius: 20px;
  background: linear-gradient(
    90deg,
    var(--primary-color, #6366f1) 0%,
    rgba(255, 255, 255, 0.9) 50%,
    var(--primary-color, #6366f1) 100%
  );
  background-size: 200% 100%;
  animation: energyFlow 2s linear infinite;
  position: relative;
  overflow: hidden;
  box-shadow: 
    0 0 20px rgba(99, 102, 241, 0.8),
    0 4px 12px rgba(99, 102, 241, 0.5),
    inset 0 1px 2px rgba(255, 255, 255, 0.6);
}

/* Scanning beam effect */
.ec-main-slider .slick-dots li.slick-active::before {
  content: "";
  position: absolute;
  top: 0;
  left: -50%;
  width: 50%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(255, 255, 255, 0.8) 50%,
    transparent 100%
  );
  animation: scanBeam 1.5s linear infinite;
  border: none;
  border-radius: 0;
  opacity: 1;
  transform: none;
}

/* Inner highlight */
.ec-main-slider .slick-dots li.slick-active::after {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: 19px;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.4) 0%,
    transparent 100%
  );
}

/* ===============================
   🎬 SLIDE ANIMATIONS
   =============================== */
.ec-main-slider .slick-slide.slick-current.slick-active .slider-animation > * {
  animation-name: fadeInUp;
  animation-duration: 0.8s;
  animation-fill-mode: both;
  animation-timing-function: cubic-bezier(0.34, 1.56, 0.64, 1);
}

.ec-main-slider
  .slick-slide.slick-current.slick-active
  .slider-animation
  > *:nth-child(1) {
  animation-delay: 0.2s;
}

.ec-main-slider
  .slick-slide.slick-current.slick-active
  .slider-animation
  > *:nth-child(2) {
  animation-delay: 0.4s;
}

.ec-main-slider
  .slick-slide.slick-current.slick-active
  .slider-animation
  > *:nth-child(3) {
  animation-delay: 0.6s;
}

.ec-main-slider
  .slick-slide.slick-current.slick-active
  .slider-animation
  > *:nth-child(4) {
  animation-delay: 0.8s;
}

.ec-main-slider
  .slick-slide.slick-current.slick-active
  .slider-animation
  > *:nth-child(5) {
  animation-delay: 1s;
}

.ec-main-slider
  .slick-slide.slick-current.slick-active
  .slider-animation
  > *:nth-child(6) {
  animation-delay: 1.2s;
}

.ec-main-slider .slick-dots li:not(:last-child) {
  margin-bottom: 0;
}

/* Slide item enhancements */
.ec-slide-item {
  position: relative;
  overflow: hidden;
  background-color: #f0f0f0;
  border-radius: 0;
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.ec-slide-item:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15);
}

/* ===============================
   🎪 BANNER SUBCATEGORY SLIDERS
   =============================== */
#ar_banner_subcat .swiper-wrapper,
#en_banner_subcat .swiper-wrapper {
  overflow: auto;
  scroll-behavior: smooth;
  gap: 10px;
  box-sizing: border-box;
}

@media (max-width: 768px) {
  #ar_banner_subcat .swiper-wrapper,
  #en_banner_subcat .swiper-wrapper {
    overflow-x: auto;
    overflow-y: hidden;
    -ms-overflow-style: none;
    scrollbar-width: none;
  }

  #ar_banner_subcat .swiper-wrapper::-webkit-scrollbar,
  #en_banner_subcat .swiper-wrapper::-webkit-scrollbar {
    display: none;
  }
}

/* ===============================
   🎯 NAVIGATION ARROWS - ULTRA COOL
   =============================== */
#main_categs_section .swiper-button-prev,
#main_categs_section .swiper-button-next,
#brands_section .swiper-button-prev,
#brands_section .swiper-button-next,
.slick-prev,
.slick-next {
  background: linear-gradient(135deg, 
    var(--primary-color, #6366f1) 0%,
    rgba(168, 85, 247, 0.9) 100%
  ) !important;
  width: 44px !important;
  height: 44px !important;
  border-radius: 50%;
  color: #fff !important;
  border: 2px solid rgba(255, 255, 255, 0.2);
  box-shadow: 
    0 4px 16px rgba(99, 102, 241, 0.3),
    0 0 20px rgba(99, 102, 241, 0.2),
    inset 0 1px 2px rgba(255, 255, 255, 0.3);
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(10px);
  z-index: 2;
}

/* Glowing ring on hover */
#main_categs_section .swiper-button-prev::before,
#main_categs_section .swiper-button-next::before,
#brands_section .swiper-button-prev::before,
#brands_section .swiper-button-next::before,
.slick-prev::before,
.slick-next::before {
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.5);
  opacity: 0;
  transition: all 0.3s ease;
  animation: pulseRing 1.5s ease-in-out infinite;
}

#main_categs_section .swiper-button-prev:hover,
#main_categs_section .swiper-button-next:hover,
#brands_section .swiper-button-prev:hover,
#brands_section .swiper-button-next:hover,
.slick-prev:hover,
.slick-next:hover {
  transform: scale(1.15) rotate(5deg);
  box-shadow: 
    0 8px 24px rgba(99, 102, 241, 0.5),
    0 0 40px rgba(99, 102, 241, 0.4),
    inset 0 1px 3px rgba(255, 255, 255, 0.5);
  background: linear-gradient(135deg, 
    rgba(168, 85, 247, 1) 0%,
    var(--primary-color, #6366f1) 100%
  ) !important;
}

#main_categs_section .swiper-button-prev:hover::before,
#main_categs_section .swiper-button-next:hover::before,
#brands_section .swiper-button-prev:hover::before,
#brands_section .swiper-button-next:hover::before,
.slick-prev:hover::before,
.slick-next:hover::before {
  opacity: 1;
  inset: -6px;
}

#main_categs_section .swiper-button-prev:active,
#main_categs_section .swiper-button-next:active,
#brands_section .swiper-button-prev:active,
#brands_section .swiper-button-next:active,
.slick-prev:active,
.slick-next:active {
  transform: scale(0.95);
}

#ar_banner_subcat .swiper-button-prev::after,
#ar_banner_subcat .swiper-button-next::after,
#en_banner_subcat .swiper-button-prev::after,
#en_banner_subcat .swiper-button-next::after,
#main_categs_section .swiper-button-prev::after,
#main_categs_section .swiper-button-next::after,
#brands_section .swiper-button-prev::after,
#brands_section .swiper-button-next::after {
  font-size: 18px !important;
  font-weight: 700;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

/* Arrow positioning */
.slick-prev,
.slick-next {
  font-size: 0;
  line-height: 0;
  position: absolute;
  top: 50%;
  display: block;
  transform: translate(0, -50%);
  border: none;
  outline: none;
  z-index: 2;
}

.slick-prev {
  left: 20px !important;
  right: auto !important;
}

.slick-next {
  right: 20px !important;
  left: auto !important;
}

.slick-prev:before {
  content: "prev" !important;
  font-family: swiper-icons;
}

.slick-next:before {
  content: "next" !important;
  font-family: swiper-icons;
}

.slick-prev:before,
.slick-next:before {
  font-size: 18px;
  font-weight: 700;
}

/* ===============================
   📱 BANNER ITEMS
   =============================== */
#ar_banner_subcat .ec-slide-item,
#en_banner_subcat .ec-slide-item {
  background-color: transparent;
  gap: 10px;
  flex-flow: column;
  height: 100%;
  width: 33%;
  border-radius: 0;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  position: relative;
}

#ar_banner_subcat .ec-slide-item:hover,
#en_banner_subcat .ec-slide-item:hover {
  transform: translateY(-6px) scale(1.03);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.15);
}

@media (min-width: 768px) {
  #ar_banner_subcat .ec-slide-item,
  #en_banner_subcat .ec-slide-item {
    width: 16%;
  }
}

#ar_banner_subcat .slick-slide,
#en_banner_subcat .slick-slide {
  width: 155.909px !important;
  height: 200px !important;
}

#ar_banner_subcat .slick-slide > div,
#en_banner_subcat .slick-slide > div {
  height: 100%;
}

html[dir="ltr"] #ar_banner_subcat .slick-slide,
html[dir="ltr"] #en_banner_subcat .slick-slide {
  margin-right: 10px;
}

html[dir="rtl"] #ar_banner_subcat .slick-slide,
html[dir="rtl"] #en_banner_subcat .slick-slide {
  margin-left: 10px;
}

/* ===============================
   ✨ LOADING SHIMMER
   =============================== */
.bannerImg {
  position: relative;
  overflow: hidden;
}

.bannerImg::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(255, 255, 255, 0.3) 40%,
    rgba(255, 255, 255, 0.5) 50%,
    rgba(255, 255, 255, 0.3) 60%,
    transparent 100%
  );
  animation: shimmer 2s infinite;
  z-index: 1;
}

.bannerImg.loaded::before {
  display: none;
}

/* ===============================
   📐 BANNER ASPECT RATIOS
   =============================== */
.topBanner,
.bottomBanner {
  position: relative;
  width: 100%;
  aspect-ratio: 670 / 290;
  border-radius: 0;
  overflow: hidden;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.topBanner:hover,
.bottomBanner:hover {
  transform: scale(1.02);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15);
}

.midBanner {
  position: relative;
  width: 100%;
  aspect-ratio: 670 / 290;
  border-radius: 0;
  overflow: hidden;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.midBanner:hover {
  transform: scale(1.02);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15);
}

.catBanner {
  position: relative;
  width: 100%;
  aspect-ratio: 670 / 290;
  border-radius: 0;
  overflow: hidden;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.catBanner:hover {
  transform: scale(1.02);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15);
}

.subcatBanner {
  position: relative;
  width: 100%;
  aspect-ratio: 460 / 572;
  border-radius: 0;
  overflow: hidden;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.subcatBanner:hover {
  transform: scale(1.02);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15);
}

/* ===============================
   📊 PROGRESS BAR - ULTRA MODERN
   =============================== */
.slick-progress {
  width: 67%;
  height: 6px;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  margin: 0px auto;
  margin-top: 8px;
  overflow: hidden;
  position: relative;
  border-radius: 10px;
  box-shadow: 
    0 2px 8px rgba(0, 0, 0, 0.1),
    inset 0 1px 2px rgba(0, 0, 0, 0.1);
}

.slick-progress-bar {
  width: 20%;
  height: 100%;
  background: linear-gradient(
    90deg,
    var(--primary-color, #6366f1) 0%,
    rgba(168, 85, 247, 0.9) 50%,
    var(--primary-color, #6366f1) 100%
  );
  background-size: 200% 100%;
  transition: width linear 0ms, margin linear 300ms;
  border-radius: 10px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 0 12px rgba(99, 102, 241, 0.6);
  animation: gradientFlow 2s linear infinite;
}

/* Shimmer on progress bar */
.slick-progress-bar::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(255, 255, 255, 0.6) 50%,
    transparent 100%
  );
  animation: shimmerSweep 1.5s linear infinite;
}

/* ===============================
   🎨 PURPLE TITLE
   =============================== */
.purple-title {
  color: #fff;
  font-size: 11px;
  font-weight: 600;
  margin: 0;
  text-align: center;
  white-space: nowrap;
  line-height: 18px;
  height: 18px;
  letter-spacing: -0.2px;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  direction: rtl;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
}

.purple-title:hover {
  transform: scale(1.05);
  text-shadow: 0 4px 8px rgba(0, 0, 0, 0.4);
}

@media (min-width: 576px) {
  .purple-title {
    font-size: 13px;
    line-height: 20px;
    height: 20px;
  }
}

@media (min-width: 768px) {
  .purple-title {
    font-size: 15px;
    line-height: 22px;
    height: 22px;
  }
}

@media (min-width: 1200px) {
  .purple-title {
    font-size: 17px;
    line-height: 24px;
    height: 24px;
  }
}

/* ===============================
   💻 DESKTOP STYLES
   =============================== */
@media (min-width: 767px) {
  .slick-progress {
    display: none !important;
  }
  
  .bannersDesktop {
    display: flex;
  }
  
  html[dir="ltr"] .bannersDesktop {
    flex-direction: row-reverse;
  }
  
  #ar_banner_subcat-wrapper,
  #ar_banner_mid-wrapper,
  #en_banner_subcat-wrapper,
  #en_banner_mid-wrapper {
    width: 100%;
    display: inline-block;
  }

  #ar_banner_subcat .ec-slide-item,
  #en_banner_subcat .ec-slide-item {
    align-items: center;
  }
}

#ar_banner_mid-wrapper,
#en_banner_mid-wrapper,
#ar_banner_cat-wrapper,
#en_banner_cat-wrapper,
#brands_section-wrapper,
#best_selling_section-wrapper {
  margin-top: 8px;
  margin-bottom: 8px;
}

/* Slick track */
.slick-track {
  display: flex !important;
  transform: translate3d(0, 0, 0);
}

/* ===============================
   🎭 KEYFRAME ANIMATIONS
   =============================== */

/* Gradient flow animation */
@keyframes gradientFlow {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

/* Energy flow for active dot */
@keyframes energyFlow {
  0% {
    background-position: 0% 50%;
  }
  100% {
    background-position: 200% 50%;
  }
}

/* Shimmer sweep */
@keyframes shimmerSweep {
  0% {
    background-position: -200% 0;
  }
  100% {
    background-position: 200% 0;
  }
}

/* Shimmer animation */
@keyframes shimmer {
  0% {
    left: -100%;
  }
  100% {
    left: 100%;
  }
}

/* Pulse ring */
@keyframes pulseRing {
  0%, 100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.5;
    transform: scale(1.2);
  }
}

/* Ripple expand */
@keyframes rippleExpand {
  0% {
    opacity: 1;
    transform: scale(1);
  }
  100% {
    opacity: 0;
    transform: scale(1.8);
  }
}

/* Inner pulse */
@keyframes innerPulse {
  0%, 100% {
    opacity: 0.2;
  }
  50% {
    opacity: 0.5;
  }
}

/* Scan beam */
@keyframes scanBeam {
  0% {
    left: -50%;
  }
  100% {
    left: 150%;
  }
}

/* Fade in up */
@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Gradient shift for border */
@keyframes gradientShift {
  0%, 100% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}

/* ===============================
   ♿ ACCESSIBILITY
   =============================== */

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  
  .slick-dots li,
  .slick-dots li.slick-active,
  .ec-main-slider .slick-dots li,
  .ec-main-slider .slick-dots li.slick-active {
    animation: none !important;
  }
}

/* High contrast mode */
@media (prefers-contrast: high) {
  .slick-dots li,
  .ec-main-slider .slick-dots li {
    border: 2px solid currentColor;
  }
  
  .slick-dots li.slick-active,
  .ec-main-slider .slick-dots li.slick-active {
    background: currentColor;
  }
}