/* =====================================================
   TODAYS MATCH / PROMO ŞERİDİ
   ===================================================== */
.todays-match-banner {
  width: calc(100% - 40px);
  max-width: 1280px;
  margin: 8px auto;
  background: linear-gradient(100deg, #2d0b40 0%, #5b1a7a 50%, #3d114f 100%);
  position: relative;
  display: flex;
  align-items: stretch;
  min-height: 72px;
  overflow: hidden;
  border: 1px solid rgba(232,197,71,0.25);
  border-radius: 12px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.35);
}
.todays-match-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M40 40v-20h-2v20h-20v2h20v20h2v-20h20v-2h-20z'/%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 0;
}

.todays-match-banner-close {
  position: absolute;
  top: 8px; right: 10px;
  background: none;
  border: none;
  color: rgba(255,255,255,0.5);
  font-size: 1.3rem;
  cursor: pointer;
  z-index: 3;
  line-height: 1;
  padding: 4px 8px;
  transition: color .2s;
}
.todays-match-banner-close:hover { color: #fff; }

/* Promo kutusu — sol kenar */
.todays-match-banner-promo {
  position: relative;
  z-index: 1;
  background: rgba(232,197,71,0.12);
  border-right: 2px solid rgba(232,197,71,0.3);
  padding: 10px 18px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  flex-shrink: 0;
  min-width: 90px;
}
.todays-match-promo-underlined { text-align: center; }
.todays-match-promo-row {
  display: flex;
  align-items: baseline;
  gap: 3px;
}
.todays-match-promo-package {
  font-size: 0.6rem;
  color: rgba(255,255,255,0.6);
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: .04em;
}
.todays-match-promo-price {
  font-size: 1.4rem;
  font-weight: 900;
  color: #e8c547;
  line-height: 1;
}
.todays-match-promo-cta {
  background: #e8c547;
  color: #1a0f24;
  border: none;
  border-radius: 6px;
  padding: 5px 10px;
  font-size: 0.65rem;
  font-weight: 800;
  cursor: pointer;
  white-space: nowrap;
  transition: filter .2s;
  text-decoration: none;
  display: inline-block;
  text-align: center;
}
.todays-match-promo-cta:hover { filter: brightness(1.08); }

/* Banner iç alan */
.todays-match-banner-inner {
  position: relative;
  z-index: 1;
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 44px 10px 20px;
  gap: 16px;
  min-width: 0;
  overflow: hidden;
}

.statik-banner-main {
  display: flex;
  flex-direction: column;
  gap: 5px;
  min-width: 0;
  flex: 1;
  overflow: hidden;
}
.statik-banner-headline {
  font-size: 0.88rem;
  font-weight: 800;
  color: #fff;
  margin: 0;
  letter-spacing: .01em;
  text-transform: uppercase;
  white-space: normal;
  line-height: 1.3;
}
.statik-banner-highlight { color: #e8c547; }
.statik-banner-clubs {
  display: flex;
  gap: 8px;
  align-items: center;
}
.statik-banner-club-logo {
  width: 28px;
  height: 28px;
  object-fit: contain;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  padding: 2px;
  flex-shrink: 0;
}

/* Geri sayım */
.todays-match-countdown {
  display: flex;
  gap: 6px;
  align-items: center;
  flex-shrink: 0;
}
.todays-match-countdown-unit {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}
.todays-match-countdown-label {
  font-size: 0.5rem;
  color: rgba(255,255,255,0.45);
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-top: 3px;
  order: 2;
}
.todays-match-flip-wrap {
  background: rgba(0,0,0,0.3);
  border: 1px solid rgba(232,197,71,0.2);
  border-radius: 7px;
  width: 42px;
  height: 36px;
  position: relative;
  overflow: hidden;
  order: 1;
}
.todays-match-flip-inner {
  position: relative;
  width: 100%;
  height: 100%;
}
.todays-match-flip-face {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.05rem;
  font-weight: 900;
  color: #e8c547;
  letter-spacing: -0.01em;
}
.todays-match-flip-face.todays-match-flip-back { display: none; }


@media (max-width: 900px) {
  .todays-match-banner {
    width: calc(100% - 20px);
  }
  .todays-match-banner-inner {
    padding: 10px 40px 10px 14px;
    gap: 10px;
  }
  .todays-match-flip-wrap { width: 36px; height: 32px; }
  .todays-match-flip-face { font-size: 0.9rem; }
  .todays-match-countdown { gap: 5px; }
  .todays-match-countdown-label { font-size: 0.45rem; }
  .statik-banner-headline { font-size: 0.8rem; }
  .todays-match-banner-promo { min-width: 80px; }
}

@media (max-width: 768px) {
  .todays-match-banner {
    flex-direction: column;
    min-height: auto;
  }

  /* İçerik üstte, promo altta */
  .todays-match-banner-inner {
    order: 1;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 14px 36px 10px 14px;
    gap: 12px;
  }

  .todays-match-banner-promo {
    order: 2;
    width: 100%;
    min-width: 0;
    border-right: none;
    border-top: 2px solid rgba(232,197,71,0.3);
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 10px 40px 10px 14px;
    gap: 10px;
  }

  .todays-match-promo-underlined { text-align: left; }

  .statik-banner-main {
    align-items: center;
    width: 100%;
  }

  .statik-banner-headline {
    font-size: 0.82rem;
    line-height: 1.35;
  }

  .statik-banner-clubs {
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
  }

  .statik-banner-club-logo {
    width: 48px;
    height: 48px;
    padding: 3px;
    background: rgba(255,255,255,0.15);
  }

  .todays-match-countdown {
    justify-content: center;
    width: 100%;
    gap: 6px;
  }

  .todays-match-flip-wrap { width: 38px; height: 34px; }
  .todays-match-flip-face { font-size: 0.95rem; }
  .todays-match-countdown-label { font-size: 0.45rem; }
  .todays-match-promo-price { font-size: 1.25rem; }
  .todays-match-promo-cta { padding: 7px 14px; font-size: 0.7rem; }
}

@media (max-width: 420px) {
  .statik-banner-headline { font-size: 0.74rem; }
  .statik-banner-club-logo { width: 42px; height: 42px; }
  .statik-banner-clubs { gap: 8px; }
  .todays-match-flip-wrap { width: 34px; height: 30px; }
  .todays-match-flip-face { font-size: 0.85rem; }
}

/* =====================================================
   BANNER / ANA SLIDER
   ===================================================== */
.banner-section {
  width: 100%;
  overflow: hidden;
  position: relative;
  background: #000;
  line-height: 0;
}

.banner-section .main-banner {
  width: 100%;
  position: relative;
  line-height: 0;
}

.slide-inner {
  display: block;
  width: 100%;
  text-decoration: none;
  line-height: 0;
  position: relative;
}

.slide-inner .banner {
  width: 100%;
  line-height: 0;
  overflow: hidden;
  position: relative;
}
/* Slayt altında yumuşak geçiş */
.slide-inner .banner::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 80px;
  background: linear-gradient(to bottom, transparent, rgba(26,15,36,0.6));
  pointer-events: none;
  z-index: 1;
}

.slide-inner .banner picture {
  display: block;
  width: 100%;
  line-height: 0;
}

.slide-inner .banner img {
  display: block;
  width: 100%;
  height: auto;
}

@media (max-width: 767px) {
  .slide-inner .banner img { min-height: 160px; }
}

/* Slider nav okları */
.banner-section .swiper-button-prev,
.banner-section .swiper-button-next {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(26,15,36,0.7);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(232,197,71,0.25);
  color: #fff;
  transition: background .2s, border-color .2s;
}
.banner-section .swiper-button-prev:hover,
.banner-section .swiper-button-next:hover {
  background: rgba(91,26,122,0.85);
  border-color: rgba(232,197,71,0.5);
}
.banner-section .swiper-button-prev::after,
.banner-section .swiper-button-next::after { font-size: 15px; font-weight: 900; }

/* Progress pagination */
.banner-section .swiper-pagination-progressbar {
  height: 3px;
  top: auto;
  bottom: 0;
  background: rgba(255,255,255,0.15);
}
.banner-section .swiper-pagination-progressbar-fill { background: #e8c547; }

/* 01/08 sayaç */
.swiper-pagination-info {
  position: absolute;
  bottom: 14px;
  right: 16px;
  z-index: 10;
  display: flex;
  align-items: center;
  gap: 4px;
  color: rgba(255,255,255,0.9);
  font-size: 0.78rem;
  font-weight: 800;
  pointer-events: none;
  text-shadow: 0 1px 4px rgba(0,0,0,0.5);
}

/* =====================================================
   PAKETLER BÖLÜMÜ
   ===================================================== */
.packages-list {
  background: linear-gradient(180deg, #1a0f24 0%, #2d0b40 60%, #1a0f24 100%);
  padding: 40px 0 64px;
}

.packages-list .container {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
}

/* Bölüm başlıkları */
.packetsBoxSeperator {
  padding: 0 4px;
  margin-top: 52px;
  margin-bottom: 24px;
}
.packetsBoxSeperator:first-child { margin-top: 0; }

.packetsBoxTitle {
  color: #fff;
  font-size: 1.2rem;
  font-weight: 800;
  margin: 0;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(232,197,71,0.2);
  display: flex;
  align-items: center;
  gap: 10px;
  letter-spacing: -0.01em;
}
.packetsBoxTitle::before {
  content: '';
  display: inline-block;
  width: 4px;
  height: 22px;
  background: linear-gradient(180deg, #e8c547, #c9a83c);
  border-radius: 2px;
  flex-shrink: 0;
}

/* nonOverflow wrapper */
.nonOverflow.ev {
  position: relative;
  display: flex;
}
.nonOverflow.ev .packetsBox.ev {
  flex: 1;
  min-width: 0;
}

/* =====================================================
   SWIPER KONTEYNERLER
   ===================================================== */
.packetsBox {
  overflow: hidden;
  position: relative;
}

/* GO (beINCONNECT) — 2 kart yan yana */
#packages-go.packetsBox.go,
#packages-go-category.packetsBox.go {
  padding: 0 4px;
  overflow: hidden;
}

#packages-go-category.packetsBox--static {
  overflow: visible;
}

#packages-go-category .go-paket-stack {
  display: flex;
  flex-direction: column;
  gap: 24px;
  max-width: 960px;
  margin: 0 auto;
}

#packages-go-category .swiper-slide.item {
  width: 100% !important;
  height: auto !important;
}

.category-beinconnect-page__lead {
  color: rgba(255,255,255,0.58);
  text-align: center;
  font-size: 0.95rem;
  margin: -8px auto 24px;
  max-width: 640px;
  line-height: 1.55;
}

.category-beinconnect-page .packetsBoxTitle {
  font-size: clamp(1.35rem, 3vw, 1.75rem);
}

.category-beinconnect-page .category-packages__note {
  margin-top: 28px;
}

/* İnternet & Uydu — ok için padding */
.nonOverflow.ev.active .packetsBox.ev {
  padding-left: 44px !important;
  padding-right: 44px !important;
  overflow: hidden;
}
.nonOverflow.ev.active .packetsBox.ev .swiper-wrapper { display: flex !important; }
.nonOverflow.ev.active .swiper-slide {
  visibility: visible !important;
  opacity: 1          !important;
}

/* Pagination bullets */
.packetsBox .swiper-pagination {
  position: relative;
  bottom: auto;
  margin-top: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 6px;
  min-height: 14px;
}
.packetsBox .swiper-pagination-bullet {
  width: 7px;
  height: 7px;
  background: rgba(255,255,255,0.25);
  border-radius: 50%;
  opacity: 1;
  cursor: pointer;
  transition: background .2s, transform .2s, width .2s;
}
.packetsBox .swiper-pagination-bullet-active {
  background: #e8c547;
  transform: scale(1.3);
  width: 20px;
  border-radius: 4px;
}

/* Önceki / Sonraki oklar */
.packetsBox .swiper-button-prev,
.packetsBox .swiper-button-next {
  color: #fff;
  background: rgba(91,26,122,0.8);
  border: 1px solid rgba(232,197,71,0.3);
  border-radius: 50%;
  width: 36px;
  height: 36px;
  top: 38%;
  transform: translateY(-50%);
  transition: background .2s, border-color .2s;
  backdrop-filter: blur(4px);
}
.packetsBox .swiper-button-prev { left: 4px; }
.packetsBox .swiper-button-next { right: 4px; }
.packetsBox .swiper-button-prev:hover,
.packetsBox .swiper-button-next:hover {
  background: rgba(91,26,122,1);
  border-color: rgba(232,197,71,0.6);
}
.packetsBox .swiper-button-prev::after,
.packetsBox .swiper-button-next::after { font-size: 12px; font-weight: 900; }
.packetsBox .swiper-button-disabled { opacity: 0.3; }

/* =====================================================
   KART LAYOUT
   ===================================================== */

/* --- GO: resim sol, içerik sağ --- */
#packages-go .item-container,
#packages-go-category .item-container {
  display: flex;
  flex-direction: row;
  background: linear-gradient(135deg, #2a0d3a 0%, #1f0930 100%);
  border: 1px solid rgba(232,197,71,0.15);
  border-radius: 18px;
  overflow: hidden;
  min-height: 300px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.4);
  transition: border-color .3s, box-shadow .3s, transform .3s;
}
#packages-go .item-container:hover,
#packages-go-category .item-container:hover {
  border-color: rgba(232,197,71,0.5);
  box-shadow: 0 16px 48px rgba(0,0,0,0.6);
  transform: translateY(-3px);
}

/* Sol: resim kolonu — flex kullanarak yüksekliği iç içe geçir */
#packages-go .item-container .left,
#packages-go-category .item-container .left {
  flex: 0 0 44%;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}
#packages-go .item-container .imageBox,
#packages-go-category .item-container .imageBox {
  flex: 1;
  display: flex;
  min-height: 0;
}
#packages-go .item-container .packetImg,
#packages-go-category .item-container .packetImg {
  flex: 1;
  display: flex;
  min-height: 0;
}
#packages-go .item-container .packetImg img,
#packages-go-category .item-container .packetImg img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}
/* Sağa doğru gradient geçiş */
#packages-go .item-container .left::after,
#packages-go-category .item-container .left::after {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 56px; height: 100%;
  background: linear-gradient(to right, transparent, #2a0d3a);
  pointer-events: none;
  z-index: 1;
}

/* --- EV & Digiturk: resim üst, içerik alt (landscape) --- */
#packages-ev .item-container,
#packages-digiturk .item-container {
  display: flex;
  flex-direction: column;
  background: linear-gradient(180deg, #2a0d3a 0%, #1f0930 100%);
  border: 1px solid rgba(232,197,71,0.15);
  border-radius: 16px;
  overflow: hidden;
  height: 100%;
  box-shadow: 0 6px 24px rgba(0,0,0,0.35);
  transition: border-color .3s, box-shadow .3s, transform .3s;
}
#packages-ev .item-container:hover,
#packages-digiturk .item-container:hover {
  border-color: rgba(232,197,71,0.45);
  box-shadow: 0 14px 40px rgba(0,0,0,0.5);
  transform: translateY(-4px);
}

#packages-ev .item-container .left,
#packages-digiturk .item-container .left {
  width: 100%;
  flex-shrink: 0;
  position: relative;
}
#packages-ev .item-container .imageBox,
#packages-ev .item-container .packetImg,
#packages-digiturk .item-container .imageBox,
#packages-digiturk .item-container .packetImg {
  width: 100%;
  line-height: 0;
}
#packages-ev .item-container .packetImg img,
#packages-digiturk .item-container .packetImg img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 520 / 300;
  object-fit: cover;
}
/* Resim alt kısmına gradient overlay */
#packages-ev .item-container .left::after,
#packages-digiturk .item-container .left::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 50%;
  background: linear-gradient(to bottom, transparent, rgba(31,9,48,0.85));
  pointer-events: none;
}

/* --- İçerik alanı --- */
.item-container .right {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 14px;
  min-width: 0;
  color: #fff;
}


.item-container .textBox { margin-bottom: 10px; }
.item-container .titleBox { margin-bottom: 10px; }

.item-container .h3 {
  font-size: 0.62rem;
  font-weight: 700;
  color: #e8c547;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  margin: 0 0 5px;
}
.item-container .h4 {
  font-size: 0.9rem;
  font-weight: 800;
  color: #fff;
  margin: 0 0 4px;
  line-height: 1.3;
}
.item-container .h5 {
  font-size: 0.73rem;
  color: rgba(255,255,255,0.55);
  margin: 0;
  line-height: 1.4;
}
.item-container .h5 p { margin: 0; }

/* --- Fiyat kutusu --- */
.item-container .packetbox { margin-top: 14px; }

.item-container ul.prices {
  list-style: none;
  padding: 0;
  margin: 0 0 8px;
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.item-container ul.prices.prices--monthlyOnly {
  width: 100% !important;
}

/* Override the inline height:120px on priceSelect */
.item-container .priceSelect {
  height: auto !important;
  flex: 1;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 10px;
  padding: 10px 12px;
  cursor: pointer;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  box-sizing: border-box;
  transition: border-color .2s, background .2s;
  min-width: 0;
}
.item-container .priceSelect:hover,
.item-container .priceSelect.active {
  border-color: rgba(232,197,71,0.4);
  background: rgba(232,197,71,0.06);
}
.item-container .priceSelect .top {
  display: flex;
  align-items: center;
  gap: 7px;
  flex: 1;
  min-width: 0;
}
.item-container .priceSelect .check {
  width: 14px;
  height: 14px;
  border: 2px solid rgba(255,255,255,0.3);
  border-radius: 50%;
  flex-shrink: 0;
}
.item-container .priceSelect.active .check {
  border-color: #e8c547;
  background: #e8c547;
  box-shadow: 0 0 0 3px rgba(232,197,71,0.15);
}
.item-container .priceSelect .title {
  font-size: 0.67rem;
  font-weight: 600;
  color: rgba(255,255,255,0.6);
  line-height: 1.25;
  white-space: normal;
}
.item-container .priceSelect .bottom {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 1px;
  flex-shrink: 0;
}
.item-container .priceSelect .oldprice {
  font-size: 0.68rem;
  color: rgba(255,255,255,0.3);
  text-decoration: line-through;
}
.item-container .priceSelect .price {
  font-size: 1.3rem;
  font-weight: 900;
  color: #e8c547;
  margin: 0;
  line-height: 1;
  letter-spacing: -0.02em;
}

/* --- Butonlar --- */
.item-container .pricesBox {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.item-container .pricesBox .buynow,
.item-container .pricesBox .details,
.item-container .pricesBox .campaigns,
.item-container .pricesBox .channels { display: block; }
.item-container .pricesBox .linkBox { display: block; }

.item-container .btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 9px 12px;
  border-radius: 8px;
  font-size: 0.78rem;
  font-weight: 800;
  cursor: pointer;
  border: none;
  text-decoration: none;
  transition: filter .2s, transform .15s;
  box-sizing: border-box;
  line-height: 1.2;
  letter-spacing: .01em;
}
.item-container .btn span { pointer-events: none; }
.item-container .btn:active { transform: scale(0.98); }

.item-container .btn.yellow {
  background: linear-gradient(135deg, #e8c547 0%, #d4a832 100%);
  color: #1a0f24;
}
.item-container .btn.yellow:hover { filter: brightness(1.08); }

.item-container .btn.blue {
  background: rgba(91,26,122,0.6);
  color: #fff;
  border: 1px solid rgba(232,197,71,0.3);
}
.item-container .btn.blue:hover {
  background: rgba(91,26,122,0.9);
  border-color: rgba(232,197,71,0.6);
}

.item-container .btn.border {
  background: transparent;
  color: rgba(255,255,255,0.8);
  border: 1px solid rgba(255,255,255,0.2);
}
.item-container .btn.border:hover {
  border-color: rgba(255,255,255,0.45);
  color: #fff;
}

.item-container .btn.arrow {
  background: transparent;
  color: #e8c547;
  border: none;
  padding: 4px 0;
  font-size: 0.72rem;
  justify-content: flex-start;
  font-weight: 700;
}

/* --- Özellik listesi --- */
.item-container .descBox { margin-top: 10px; }
.item-container .descBox ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.item-container .descBox ul li {
  font-size: 0.7rem;
  color: rgba(255,255,255,0.6);
  padding-left: 14px;
  position: relative;
  line-height: 1.4;
}
.item-container .descBox ul li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #e8c547;
  font-size: 0.68rem;
  font-weight: 700;
}

/* Spor etiketleri */
.item-container .sportsBox { margin-top: 10px; }
.item-container .sportsTags {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
}
.item-container .sportsTags span {
  background: rgba(232,197,71,0.1);
  color: rgba(255,255,255,0.7);
  border: 1px solid rgba(232,197,71,0.2);
  border-radius: 999px;
  padding: 2px 8px;
  font-size: 0.65rem;
  font-weight: 600;
}

/* =====================================================
   TABLET
   ===================================================== */
@media screen and (max-width: 899px) {
  .nonOverflow.ev.active .packetsBox.ev {
    padding-left: 36px !important;
    padding-right: 36px !important;
  }
}

/* =====================================================
   MOBİL
   ===================================================== */
@media screen and (max-width: 559px) {
  /* EV & Digiturk: tam görsel, kırpma yok */
  #packages-ev .item-container .packetImg img,
  #packages-digiturk .item-container .packetImg img {
    aspect-ratio: 520 / 300;
  }

  .packetsBoxSeperator { padding: 0 4px; }
  .packetsBoxTitle { font-size: 1rem; }

  .nonOverflow.ev.active .packetsBox.ev {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
  /* Ok butonları gizle, pagination için alan bırak */
  .packetsBox .swiper-button-prev,
  .packetsBox .swiper-button-next { display: none !important; }
  .packages-list .container { padding: 0 14px; }

  /* Pagination: swiper dışına taşı (overflow:hidden içinde görünür kalsın) */
  #packages-ev,
  #packages-digiturk {
    padding-bottom: 36px !important;
    overflow: hidden;
  }
  #packages-ev .swiper-pagination,
  #packages-digiturk .swiper-pagination {
    position: absolute !important;
    bottom: 8px !important;
    top: auto !important;
    left: 0 !important;
    right: 0 !important;
    margin-top: 0;
    gap: 7px;
  }
  .packetsBox .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
  }
  .packetsBox .swiper-pagination-bullet-active {
    width: 22px;
  }
}

/* =====================================================
   HOMEPAGE KOYU TEMA — tüm bölümler
   ===================================================== */
body { background: #1a0f24 !important; }

.banner-section { background: #000 !important; }

/* Form / hero */
.hero-premium {
  background: linear-gradient(180deg, #2d0b40 0%, #1a0f24 100%) !important;
  padding: 56px 0 64px;
}
.hero-premium::before { display: none !important; }

.hero-digiturk-visual {
  background: linear-gradient(135deg, #2d0b40 0%, #5b1a7a 100%) !important;
  border-color: rgba(232,197,71,0.2) !important;
}
.hero-value-card__eyebrow { color: #e8c547 !important; }
.hero-value-card__title { color: #fff !important; font-size: 1.5rem !important; }
.hero-value-card__lead { color: rgba(255,255,255,0.7) !important; }
.hero-value-list__head { color: #fff !important; }
.hero-value-list__text { color: rgba(255,255,255,0.6) !important; }
.hero-value-list__mark {
  background: rgba(232,197,71,0.12) !important;
  color: #e8c547 !important;
}
.hero-premium .card {
  background: #fff !important;
  border-top: 4px solid #e8c547 !important;
  box-shadow: 0 24px 64px rgba(0,0,0,0.4) !important;
}
.hero-premium .card h2 { color: #2d0b40 !important; }

/* CTA */
.home-final-cta {
  background: #1a0f24 !important;
  padding-top: 2rem; padding-bottom: 3rem;
}
.home-final-cta__panel {
  background: linear-gradient(155deg, #3d114f 0%, #5b1a7a 100%) !important;
}
.home-final-cta__list {
  background: #2a0d3a !important;
  border-color: rgba(232,197,71,0.12) !important;
}
.home-final-cta__list > li { border-bottom-color: rgba(232,197,71,0.07) !important; }
.home-final-cta__step { color: #e8c547 !important; }
.home-final-cta__list strong { color: #fff !important; }
.home-final-cta__list p { color: rgba(255,255,255,0.6) !important; }
.home-final-cta__legal {
  background: rgba(232,197,71,0.04) !important;
  border-color: rgba(232,197,71,0.08) !important;
  color: rgba(255,255,255,0.45) !important;
}

/* Nasıl çalışır */
.home-how {
  background: #1a0f24 !important;
  border-top: 1px solid rgba(232,197,71,0.08);
}
.home-how-step {
  background: #2a0d3a !important;
  border-color: rgba(232,197,71,0.1) !important;
}
.home-how-step__num { background: #e8c547 !important; color: #1a0f24 !important; font-weight: 900 !important; }
.home-how-step__title { color: #fff !important; }
.home-how-step__text { color: rgba(255,255,255,0.6) !important; }
.home-how-step__text a { color: #e8c547 !important; }

/* Konular */
.home-topics { background: #1a0f24 !important; border-top: 1px solid rgba(232,197,71,0.07); }
.home-topic {
  background: #2a0d3a !important;
  border-color: rgba(232,197,71,0.1) !important;
  box-shadow: none !important;
  transition: border-color .2s, transform .2s;
}
.home-topic:hover {
  border-color: rgba(232,197,71,0.3) !important;
  transform: translateY(-2px);
}
.home-topic__h { color: #e8c547 !important; }
.home-topic__p { color: rgba(255,255,255,0.6) !important; }
.home-topics__note { color: rgba(255,255,255,0.4) !important; }

/* SSS */
.home-faq { background: #1a0f24 !important; border-top-color: rgba(232,197,71,0.08) !important; }
.home-faq__item { border-bottom-color: rgba(232,197,71,0.1) !important; }
.home-faq__item:first-of-type { border-top-color: rgba(232,197,71,0.1) !important; }
.home-faq__item summary { color: #fff !important; }
.home-faq__item summary::after { color: #e8c547 !important; }
.home-faq__body p { color: rgba(255,255,255,0.6) !important; }

/* Başlıklar */
.home-section-head__title { color: #fff !important; font-weight: 900 !important; }
.home-section-head__lead { color: rgba(255,255,255,0.65) !important; }
.home-section-head__lead a { color: #e8c547 !important; }

/* Footer */
footer {
  background: #100820 !important;
  border-top: 1px solid rgba(232,197,71,0.15) !important;
  margin-top: 0 !important;
}
.footer__brand { color: #e8c547 !important; }
.footer__info { color: rgba(255,255,255,0.5) !important; }
.footer__section-title { color: #fff !important; }
.footer__section-title::after { background: #e8c547 !important; }
.footer__links a { color: rgba(255,255,255,0.65) !important; transition: color .2s, padding-left .2s !important; }
.footer__links a:hover { color: #e8c547 !important; padding-left: 4px !important; }
.footer__contact { color: rgba(255,255,255,0.55) !important; }
.footer__contact-item svg { color: #e8c547 !important; }
.footer__contact-info a, .footer__contact-info span { color: #fff !important; }
.footer__contact-info label { color: rgba(255,255,255,0.4) !important; }
.footer__copyright {
  background: #0d0615 !important;
  border-top-color: rgba(232,197,71,0.08) !important;
  color: rgba(255,255,255,0.35) !important;
}
.footer__copyright strong { color: #e8c547 !important; }
footer > div a { color: rgba(255,255,255,0.45) !important; }
footer > div a:hover { color: #e8c547 !important; }

/* Mobile call bar */
.call-btn {
  background: linear-gradient(90deg, #3d114f, #5b1a7a) !important;
  border-top: 2px solid #e8c547 !important;
}

/* Breadcrumbs */
.breadcrumbs {
  background: #2a0d3a !important;
  border-bottom-color: rgba(232,197,71,0.1) !important;
}
.breadcrumbs li { color: rgba(255,255,255,0.5) !important; }
.breadcrumbs a { color: #e8c547 !important; }
