.pricing-carousel-widget {
  font-family: Arial, sans-serif;
  background: #f5f7fa;
  padding: 40px 0;
  position: relative;
}

.carousel-container {
  position: relative;
  max-width: 100%;
  overflow: hidden;
}

.carousel {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  gap: 20px;
  padding-bottom: 20px;
  scroll-behavior: smooth;
}

.plan-card {
  flex: 0 0 300px;
  background: linear-gradient(160deg, #0284c7, #0369a1);
  color: #fff;
  border-radius: 20px;
  padding: 20px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.15);
  scroll-snap-align: start;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.plan-card h3 { font-size: 22px; margin: 0 0 5px; }
.plan-card p.contract { font-size: 14px; opacity: 0.8; margin-bottom: 10px; }
.price { font-size: 26px; font-weight: bold; margin: 10px 0; }
.activation { font-size: 13px; opacity: 0.9; margin-bottom: 15px; }
.speed { font-size: 18px; font-weight: 500; margin-bottom: 15px; }

ul.features { list-style: none; padding: 0; margin: 0 0 15px; }
ul.features li { font-size: 14px; margin: 6px 0; display: flex; align-items: center; }
ul.features li::before { content: "✔"; margin-right: 8px; color: #38bdf8; }

.footer {
  font-size: 13px;
  background: rgba(255,255,255,0.1);
  padding: 10px;
  border-radius: 10px;
  margin-bottom: 15px;
}

/* Button */
.select-btn {
  display: inline-block;
  padding: 10px 20px;
  border: 2px solid transparent;
  border-radius: 8px;
  font-size: 14px;
  font-weight: bold;
  cursor: pointer;
  text-align: center;
  background: linear-gradient(#fff, #fff) padding-box,
              linear-gradient(90deg, #9333ea, #ec4899) border-box;
  color: #9333ea;
  transition: all 0.3s ease;
  text-decoration: none;
}
.select-btn:hover { background: linear-gradient(90deg, #9333ea, #ec4899); color: #fff; }

/* Arrows */
.arrow {
  position: absolute;
  top: 40%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.8);
  border: none;
  font-size: 24px;
  padding: 10px;
  border-radius: 50%;
  cursor: pointer;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
  transition: background 0.3s;
  z-index: 10;
}
.arrow:hover { background: #9333ea; color: #fff; }
.arrow.left { left: -20px; }
.arrow.right { right: -20px; }

.carousel::-webkit-scrollbar { display: none; }
