* { box-sizing: border-box; margin: 0; padding: 0; }
            
               
            
/* ── SLIDER ── */
.slider-outer {
  position: relative;
  overflow: hidden;
  width: 100%;
}

.slider-track {
  display: flex;
  transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: transform;
}

/* ── SLIDE ── */
.slide {
  flex: 0 0 25%;
  padding: 10px;
  /* entry animation */
  animation: fadeSlideIn 0.5s ease both;
}

@keyframes fadeSlideIn {
  from { opacity: 0; transform: translateY(18px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* stagger cards on load */
.slide:nth-child(1) { animation-delay: 0.05s; }
.slide:nth-child(2) { animation-delay: 0.15s; }
.slide:nth-child(3) { animation-delay: 0.25s; }
.slide:nth-child(4) { animation-delay: 0.35s; }
.slide:nth-child(5) { animation-delay: 0.45s; }
.slide:nth-child(6) { animation-delay: 0.55s; }

/* ── CARD ── */
.store-card {
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 8px 28px rgba(0,0,0,0.13);
  transition: transform 0.35s cubic-bezier(0.34,1.56,0.64,1), box-shadow 0.35s ease;
  cursor: pointer;
}
.store-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 22px 50px rgba(0,0,0,0.2);
}

.card-image-section img {
  width: 100%;
  display: block;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.store-card:hover .card-image-section img {
  transform: scale(1.04);
}

.card-cta-section {
  
  padding: 16px;
  display: flex;
  justify-content: center;
  transition: background 0.3s;
}

.store-card:hover .card-cta-section {
  background: rgba(255, 181, 36, 0.7);
}

.cta-button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 2px solid #fff;
  border-radius: 50px;
  padding: 8px 22px;
  background: transparent;
  color: #fff;
  font-family: 'Nunito', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.2s, color 0.2s, transform 0.2s;
}
.cta-button:hover {
  background: #fff;
  color: black;
  transform: scale(1.06);
}

/* ── ARROWS ── */
.slider-btn {
  position: absolute;
  top: 45%;
  transform: translateY(-50%);
  background: #32cd32;
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 44px;
  height: 44px;
  font-size: 1.3rem;
  cursor: pointer;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 14px rgba(50,205,50,0.45);
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
}
.slider-btn:hover {
  background: #28a828;
  transform: translateY(-50%) scale(1.12);
  box-shadow: 0 6px 20px rgba(50,205,50,0.6);
}
.slider-btn:active {
  transform: translateY(-50%) scale(0.96);
}
.slider-btn.prev { left: 2px; }
.slider-btn.next { right: 2px; }
.slider-btn:disabled {
  opacity: 0.3;
  cursor: default;
  transform: translateY(-50%) scale(1);
}

/* ── DOTS ── */
.dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 22px;
}
.dot {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: #c8f5c8;
  border: 2px solid #32cd32;
  cursor: pointer;
  padding: 0;
  transition: background 0.25s, transform 0.25s;
}
.dot.active {
  background: #32cd32;
  transform: scale(1.35);
}
.dot:hover:not(.active) {
  background: #90ee90;
  transform: scale(1.15);
}

/* ── MOBILE ── */
@media (max-width: 767px) {
  .slide { flex: 0 0 100%; padding: 4px; }
  .slider-btn { display: none; }
}