/* ═══════════════════════════════════════
   AzadarStore Pro Slider — Styles
═══════════════════════════════════════ */

.azs {
  position: relative;
  width: 100%;
  background: #0d0d0d;
  overflow: hidden;
  font-family: 'Poppins', sans-serif;
  height: 500px;
}

/* red top accent */
.azs::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, #7a0000, #c0392b, #7a0000, transparent);
  z-index: 10;
}

/* ── slide ── */
.azs__slide {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  opacity: 0;
  pointer-events: none;
}
.azs__slide.on { opacity: 1; pointer-events: all; }

/* bg */
.azs__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.07);
  transition: transform 0s;
  filter: brightness(28%) saturate(0.6);
}
.azs__slide.on .azs__bg {
  transform: scale(1);
  transition: transform 7s ease-out;
}
.azs__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    100deg,
    rgba(13,13,13,0.95) 0%,
    rgba(13,13,13,0.65) 50%,
    rgba(122,0,0,0.10) 100%
  );
}

/* ── content ── */
.azs__body {
  position: relative;
  z-index: 4;
  padding: 0 56px;
  max-width: 560px;
}

/* category pill */
.azs__cat {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 0.6em;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #c0392b;
  background: rgba(192,57,43,0.12);
  border: 1px solid rgba(192,57,43,0.35);
  padding: 4px 13px 4px 10px;
  border-radius: 2px;
  margin-bottom: 16px;
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.5s 0.1s, transform 0.5s 0.1s;
}
.azs__cat::before {
  content: '';
  width: 5px; height: 5px;
  background: #c0392b;
  border-radius: 50%;
  flex-shrink: 0;
}
.azs__slide.on .azs__cat { opacity: 1; transform: translateY(0); }

/* title */
.azs__title {
  font-size: clamp(1.5em, 3.8vw, 2.6em);
  font-weight: 800;
  color: #ffffff;
  line-height: 1.2;
  margin-bottom: 12px;
  letter-spacing: -0.5px;
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.55s 0.22s, transform 0.55s 0.22s;
}
.azs__title span { color: #c0392b; }
.azs__slide.on .azs__title { opacity: 1; transform: translateY(0); }

/* desc */
.azs__desc {
  font-size: 0.85em;
  font-weight: 300;
  color: rgba(255,255,255,0.55);
  line-height: 1.75;
  margin-bottom: 26px;
  max-width: 400px;
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.55s 0.35s, transform 0.55s 0.35s;
}
.azs__slide.on .azs__desc { opacity: 1; transform: translateY(0); }

/* actions row */
.azs__row {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.55s 0.48s, transform 0.55s 0.48s;
}
.azs__slide.on .azs__row { opacity: 1; transform: translateY(0); }

/* price */
.azs__price {
  font-size: 1.1em;
  font-weight: 700;
  color: #ffffff;
}
.azs__price small {
  font-size: 0.58em;
  font-weight: 400;
  color: rgba(255,255,255,0.5);
  margin-left: 3px;
}

/* button */
.azs__btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Poppins', sans-serif;
  font-size: 0.72em;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #fff !important;
  text-decoration: none !important;
  padding: 11px 22px;
  background: #c0392b;
  border-radius: 3px;
  border: none;
  transition: background 0.25s, transform 0.2s, box-shadow 0.25s;
}
.azs__btn:hover {
  background: #7a0000 !important;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(192,57,43,0.45);
  color: #fff !important;
  text-decoration: none !important;
}
.azs__btn svg {
  width: 14px; height: 14px;
  fill: none;
  stroke: #fff;
  stroke-width: 2.5;
  transition: transform 0.25s;
}
.azs__btn:hover svg { transform: translateX(3px); }

/* product image */
.azs__img {
  position: absolute;
  right: 60px;
  top: 50%;
  transform: translateY(-50%) translateX(40px) scale(0.92);
  width: 230px; height: 230px;
  z-index: 4;
  opacity: 0;
  transition: all 0.7s 0.18s cubic-bezier(0.34,1.26,0.64,1);
}
.azs__slide.on .azs__img {
  opacity: 1;
  transform: translateY(-50%) translateX(0) scale(1);
}
.azs__img img {
  width: 100%; height: 100%;
  object-fit: cover;
  border-radius: 6px;
  box-shadow: 0 0 0 1px rgba(192,57,43,0.3), 0 20px 60px rgba(0,0,0,0.7);
}
.azs__img::before,
.azs__img::after {
  content: '';
  position: absolute;
  width: 20px; height: 20px;
  border-color: #c0392b;
  border-style: solid;
  opacity: 0.7;
}
.azs__img::before { top:-5px; left:-5px; border-width:2px 0 0 2px; border-radius:1px; }
.azs__img::after  { bottom:-5px; right:-5px; border-width:0 2px 2px 0; border-radius:1px; }

/* arrows */
.azs__arr {
  position: absolute;
  top: 50%; transform: translateY(-50%);
  z-index: 9;
  width: 42px; height: 42px;
  background: rgba(13,13,13,0.7);
  border: 1px solid rgba(255,255,255,0.1);
  color: #fff;
  font-size: 0.9em;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  border-radius: 3px;
  transition: background 0.25s, border-color 0.25s, transform 0.25s;
  backdrop-filter: blur(6px);
}
.azs__arr:hover { background: #c0392b; border-color: #c0392b; transform: translateY(-50%) scale(1.06); }
.azs__arr--l { left: 16px; }
.azs__arr--r { right: 16px; }

/* dots */
.azs__dots {
  position: absolute;
  bottom: 20px; left: 50%;
  transform: translateX(-50%);
  z-index: 9;
  display: flex; align-items: center; gap: 8px;
}
.azs__dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: rgba(255,255,255,0.25);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: all 0.3s;
}
.azs__dot.on {
  background: #c0392b;
  width: 22px;
  border-radius: 4px;
  box-shadow: 0 0 8px rgba(192,57,43,0.6);
}

/* counter */
.azs__num {
  position: absolute;
  bottom: 18px; right: 22px;
  z-index: 9;
  font-family: 'Poppins', sans-serif;
  font-size: 0.62em;
  font-weight: 500;
  color: rgba(255,255,255,0.3);
  letter-spacing: 1px;
}
.azs__num strong { color: rgba(255,255,255,0.75); font-weight: 700; font-size: 1.2em; }

/* progress bar */
.azs__bar {
  position: absolute;
  bottom: 0; left: 0;
  height: 2px;
  background: #c0392b;
  z-index: 10;
  width: 0;
  transition: width 0s;
}
.azs__bar.go { width: 100%; transition: width 5s linear; }

/* particles */
.azs__pts { position: absolute; inset: 0; pointer-events: none; z-index: 2; overflow: hidden; }
.azs__pt {
  position: absolute;
  border-radius: 50%;
  opacity: 0;
  pointer-events: none;
  z-index: 2;
  background: #c0392b;
  animation: azsPt linear infinite;
}
@keyframes azsPt {
  0%  { opacity:0; transform:translateY(0) scale(0); }
  12% { opacity:0.3; }
  88% { opacity:0.07; }
  100%{ opacity:0; transform:translateY(-90px) translateX(var(--dx,0px)); }
}

/* ── RESPONSIVE ── */
@media(max-width:768px){
  .azs__body { padding: 0 24px; max-width: 100%; }
  .azs__img  { width:140px; height:140px; right:18px; }
}
@media(max-width:500px){
  .azs__img  { display: none; }
  .azs__body { padding: 0 20px; }
  .azs__arr--l { left:8px; }
  .azs__arr--r { right:8px; }
}
