/* ═══════════════════════════════════════════ */
/* IPTVBEE - Premium Business Theme           */
/* Bootstrap 5.3 Override + Custom Components */
/* ═══════════════════════════════════════════ */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

/* ── LIGHT THEME (Default) ──────────────── */
:root {
  --sp-bg: #f0f4f8;
  --sp-bg2: #ffffff;
  --sp-bg3: #e8edf3;
  --sp-bg4: #dbe2ec;
  --sp-text: #0f172a;
  --sp-text2: #475569;
  --sp-text3: #94a3b8;
  --sp-accent: #d4a300;
  --sp-accent2: #000000;
  --sp-accent3: #FED700;
  --sp-green: #059669;
  --sp-red: #dc2626;
  --sp-yellow: #FED700;
  --sp-gold: #b8860b;
  --sp-border: rgba(15, 23, 42, 0.08);
  --sp-border2: rgba(15, 23, 42, 0.14);
  --sp-glass: rgba(255, 255, 255, 0.80);
  --sp-gradient: linear-gradient(135deg, #FED700, #d4a300);
  --sp-gradient2: linear-gradient(135deg, #000000, #1c1c1c);
  --sp-shadow: 0 4px 24px rgba(15, 23, 42, 0.08);
  --sp-shadow2: 0 8px 40px rgba(15, 23, 42, 0.12);
  --sp-glow: 0 0 30px rgba(254, 215, 0, 0.15);
  --sp-card-bg: #ffffff;
  --sp-navbar-bg: rgba(255, 255, 255, 0.88);
  --sp-navbar-scrolled: rgba(255, 255, 255, 0.97);
  --sp-dropdown-bg: #ffffff;
  --sp-badge-bg: rgba(254, 215, 0, 0.12);
  --sp-badge-color: #5c4700;
  --sp-sidebar-hover: rgba(15, 23, 42, 0.04);
  --sp-sidebar-active-bg: rgba(254, 215, 0, 0.12);
  --sp-sidebar-active-color: #000000;
  --sp-hero-glow1: rgba(254, 215, 0, 0.08);
  --sp-hero-glow2: rgba(0, 0, 0, 0.04);
  --sp-hero-glow3: rgba(254, 215, 0, 0.03);
}

/* ── DARK THEME ─────────────────────────── */
[data-theme="dark"] {
  --sp-bg: #000000;
  --sp-bg2: #080808;
  --sp-bg3: #121212;
  --sp-bg4: #1d1d1d;
  --sp-text: #ffffff;
  --sp-text2: #a3a3a3;
  --sp-text3: #5c5c5c;
  --sp-accent: #FED700;
  --sp-accent2: #ffdf33;
  --sp-accent3: #ffffff;
  --sp-green: #34d399;
  --sp-red: #f87171;
  --sp-yellow: #FED700;
  --sp-gold: #ffdf33;
  --sp-border: rgba(254, 215, 0, 0.08);
  --sp-border2: rgba(254, 215, 0, 0.15);
  --sp-glass: rgba(8, 8, 8, 0.75);
  --sp-gradient: linear-gradient(135deg, #FED700, #d4a300);
  --sp-gradient2: linear-gradient(135deg, #000000, #121212);
  --sp-shadow: 0 4px 24px rgba(0, 0, 0, 0.6);
  --sp-shadow2: 0 8px 40px rgba(0, 0, 0, 0.8);
  --sp-glow: 0 0 30px rgba(254, 215, 0, 0.15);
  --sp-card-bg: #080808;
  --sp-navbar-bg: rgba(0, 0, 0, 0.85);
  --sp-navbar-scrolled: rgba(0, 0, 0, 0.97);
  --sp-dropdown-bg: #0c0c0c;
  --sp-badge-bg: rgba(254, 215, 0, 0.1);
  --sp-badge-color: #FED700;
  --sp-sidebar-hover: rgba(255, 255, 255, 0.04);
  --sp-sidebar-active-bg: rgba(254, 215, 0, 0.1);
  --sp-sidebar-active-color: #FED700;
  --sp-hero-glow1: rgba(254, 215, 0, 0.15);
  --sp-hero-glow2: rgba(255, 255, 255, 0.02);
  --sp-hero-glow3: rgba(254, 215, 0, 0.05);
}

/* ── LOGO THEME SWITCHING ────────────────── */
.logo-dark {
  display: none !important;
}

[data-theme="dark"] .logo-dark {
  display: inline-block !important;
}

/* Only hide light logo in dark mode IF a dark logo sibling exists */
[data-theme="dark"] .logo-light:has(~ .logo-dark) {
  display: none !important;
}

/* Parent-level fallback for containers (navbar-brand, sidebar-brand a) */
[data-theme="dark"] :has(> .logo-dark)>.logo-light {
  display: none !important;
}

* {
  box-sizing: border-box;
}

html,
body {
  overflow-x: hidden;
  width: 100%;
  max-width: 100%;
}

body {
  font-family: 'Inter', sans-serif;
  background: var(--sp-bg);
  color: var(--sp-text);
  -webkit-font-smoothing: antialiased;
  transition: background .3s, color .3s;
}

::selection {
  background: rgba(254, 215, 0, 0.2);
  color: #000;
  /* BEE THEME ADJUSTMENT */
}

a {
  color: var(--sp-accent2);
  text-decoration: none;
  transition: color .2s;
}

a:hover {
  color: var(--sp-accent);
}

/* Scrollbar */
::-webkit-scrollbar {
  width: 6px;
}

::-webkit-scrollbar-track {
  background: var(--sp-bg);
}

::-webkit-scrollbar-thumb {
  background: var(--sp-bg4);
  border-radius: 3px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--sp-text3);
}

/* ── NAVBAR ─────────────────────────────── */
.navbar-sp {
  background: var(--sp-navbar-bg);
  backdrop-filter: blur(20px) saturate(1.2);
  border-bottom: 1px solid var(--sp-border);
  padding: .75rem 0;
  transition: all .3s;
}

.navbar-sp .navbar-brand {
  font-weight: 800;
  font-size: 1.25rem;
  color: var(--sp-text);
}

.navbar-sp .navbar-brand span {
  background: var(--sp-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.navbar-sp .nav-link {
  color: var(--sp-text2);
  font-weight: 500;
  font-size: .9rem;
  padding: .5rem 1rem;
  border-radius: 8px;
  transition: all .2s;
}

.navbar-sp .nav-link:hover {
  color: var(--sp-text) !important;
  background: var(--sp-bg3);
}

[data-theme="dark"] .navbar-sp .nav-link:hover {
  color: #ffffff !important;
  background: var(--sp-bg4);
}

.navbar-sp .nav-link.active {
  color: #FED700 !important;
  background: #000000 !important;
  border: 1px solid #000000 !important;
  font-weight: 700;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

[data-theme="dark"] .navbar-sp .nav-link.active {
  color: #000000 !important;
  background: #FED700 !important;
  border: 1px solid #FED700 !important;
  font-weight: 700;
  box-shadow: 0 4px 10px rgba(254, 215, 0, 0.25);
}

/* Navbar Nav Item Desktop Separator */
@media (min-width: 992px) {
  .navbar-sp .navbar-nav {
    display: flex;
    align-items: center;
    gap: 8px;
  }

  .navbar-sp .nav-item {
    display: flex;
    align-items: center;
  }

  .navbar-sp .nav-item:not(:last-child)::after {
    content: "";
    width: 1px;
    height: 12px;
    background-color: var(--sp-border);
    margin-left: 8px;
    opacity: 0.8;
    display: inline-block;
  }
}

.navbar-sp .btn-get-started {
  color: #000 !important;
  background: var(--sp-gradient);
  border: none;
  color: #000;
  /* BEE THEME ADJUSTMENT */
  font-weight: 600;
  padding: .5rem 1.25rem;
  border-radius: 8px;
  font-size: .85rem;
}

/* ── THEME TOGGLE ───────────────────────── */
.theme-toggle {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  border: 1px solid var(--sp-border2);
  background: var(--sp-bg2);
  color: var(--sp-text2);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all .2s;
  font-size: 1rem;
}

.theme-toggle:hover {
  background: var(--sp-bg3);
  color: var(--sp-accent);
  border-color: var(--sp-accent);
}

/* ── NAVBAR UTILITY BUTTONS (uniform height) ── */
.nav-util-btn {
  height: 36px !important;
  font-size: .82rem !important;
  padding: 0 12px !important;
  border-radius: 10px !important;
  line-height: 1 !important;
}

/* ── LOGO BADGE ─────────────────────────── */
.logo-badge {
  color: #000 !important;
  width: 36px;
  height: 36px;
  background: var(--sp-gradient);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #000;
  /* BEE THEME ADJUSTMENT */
  font-weight: 800;
  font-size: .8rem;
  margin-right: 8px;
  box-shadow: 0 2px 8px rgba(254, 215, 0, 0.25);
}

/* ── HERO ────────────────────────────────── */
.hero-section {
  position: relative;
  padding: 8rem 0 5rem;
  overflow: hidden;
  text-align: center;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background:
    radial-gradient(circle at 20% 50%, var(--sp-hero-glow1) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, var(--sp-hero-glow2) 0%, transparent 40%),
    radial-gradient(circle at 40% 80%, var(--sp-hero-glow3) 0%, transparent 40%);
  z-index: 0;
}

.hero-section>* {
  position: relative;
  z-index: 1;
}

.hero-section h1 {
  font-size: 3.5rem;
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 1.5rem;
}

.hero-section .lead {
  color: var(--sp-text2);
  font-size: 1.15rem;
  max-width: 600px;
  margin: 0 auto 2rem;
}

.gradient-text {
  background: var(--sp-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* ── GLASS CARD ──────────────────────────── */
.glass-card {
  background: var(--sp-card-bg);
  backdrop-filter: blur(12px);
  border: 1px solid var(--sp-border);
  border-radius: 16px;
  box-shadow: var(--sp-shadow);
  transition: all .35s cubic-bezier(.4, 0, .2, 1);
}

.glass-card:hover {
  border-color: var(--sp-border2);
  box-shadow: var(--sp-shadow2);
  transform: translateY(-3px);
}

/* ── PRODUCT CARD ────────────────────────── */
.product-card {
  background: var(--sp-card-bg);
  border: 1px solid var(--sp-border);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(15, 23, 42, 0.04);
  transition: all .4s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  z-index: 1;
  cursor: pointer;
}

.product-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: -150%;
  width: 50%;
  height: 100%;
  background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.4) 50%, rgba(255, 255, 255, 0) 100%);
  transform: skewX(-25deg);
  z-index: 2;
  transition: all 0.7s cubic-bezier(0.19, 1, 0.22, 1);
  pointer-events: none;
}

[data-theme="dark"] .product-card::after {
  background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.05) 50%, rgba(255, 255, 255, 0) 100%);
}

.product-card:hover::after {
  left: 200%;
}

.product-card:hover {
  transform: translateY(-8px) scale(1.01);
  border-color: var(--sp-accent);
  box-shadow: 0 20px 40px -10px rgba(254, 215, 0, 0.15), 0 0 20px rgba(254, 215, 0, 0.05) inset;
}

.product-card .card-img-wrap {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1/1;
  background: var(--sp-bg3);
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-card .card-img-wrap img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  padding: 12px;
  transition: transform .6s cubic-bezier(0.16, 1, 0.3, 1);
}

.product-card:hover .card-img-wrap img {
  transform: scale(1.08);
}

.product-card .card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(15, 23, 42, .7) 0%, transparent 60%);
  opacity: 0;
  transition: opacity .3s;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: 16px;
  gap: 8px;
  pointer-events: none;
  z-index: 3;
}

.product-card:hover .card-overlay {
  opacity: 1;
}

.product-card .card-body {
  padding: 1.25rem;
}

.product-card .card-title {
  font-weight: 600;
  font-size: 1rem;
  color: var(--sp-text);
  margin-bottom: .5rem;
}

.product-card .card-desc {
  font-size: .85rem;
  color: var(--sp-text2);
  margin-bottom: .75rem;
}

.product-card .price {
  font-weight: 700;
  color: var(--sp-green);
  font-size: 1.1rem;
}

.product-card .price-old {
  text-decoration: line-through;
  color: var(--sp-text3);
  font-size: .85rem;
  margin-left: 6px;
  font-weight: 400;
}

.product-card .tech-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  margin-top: 8px;
}

.tech-tag {
  display: inline-block;
  padding: 2px 8px;
  font-size: .7rem;
  font-weight: 500;
  border-radius: 999px;
  background: var(--sp-badge-bg);
  color: var(--sp-badge-color);
}

/* ── CATEGORY CARD ───────────────────────── */
.category-card {
  background: var(--sp-card-bg);
  border: 1px solid var(--sp-border);
  border-radius: 16px;
  padding: 2rem 1.5rem;
  text-align: center;
  box-shadow: var(--sp-shadow);
  transition: all .3s;
}

.category-card:hover {
  border-color: var(--sp-border2);
  box-shadow: var(--sp-shadow2);
  transform: translateY(-3px);
}

.category-card .cat-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: var(--sp-badge-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  font-size: 1.4rem;
  color: var(--sp-accent);
}

.category-card h5 {
  font-weight: 600;
  color: var(--sp-text);
  margin-bottom: .25rem;
}

.category-card p {
  font-size: .85rem;
  color: var(--sp-text2);
  margin: 0;
}

/* ── SECTION HEADERS ─────────────────────── */
.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-header h2 {
  font-weight: 800;
  font-size: 2rem;
  margin-bottom: .5rem;
}

.section-header p {
  color: var(--sp-text2);
  max-width: 500px;
  margin: 0 auto;
}

/* ── STAT COUNTER ────────────────────────── */
.stat-box {
  text-align: center;
  padding: 2rem;
}

.stat-box .stat-num {
  font-size: 2.5rem;
  font-weight: 800;
  background: var(--sp-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.stat-box .stat-label {
  color: var(--sp-text2);
  font-size: .9rem;
  margin-top: .25rem;
}

/* ── BUTTONS ─────────────────────────────── */
.btn-sp {
  color: #000 !important;
  background: var(--sp-gradient);
  border: none;
  color: #000;
  /* BEE THEME ADJUSTMENT */
  font-weight: 600;
  padding: .65rem 1.5rem;
  border-radius: 10px;
  transition: all .25s;
  box-shadow: 0 4px 15px rgba(254, 215, 0, 0.3);
}

.btn-sp:hover {
  color: #000 !important;
  box-shadow: 0 6px 25px rgba(254, 215, 0, 0.45);
  transform: translateY(-2px);
  color: #000;
  /* BEE THEME ADJUSTMENT */
  filter: brightness(1.1);
}

.btn-sp-outline {
  background: transparent;
  border: 1px solid var(--sp-border2);
  color: var(--sp-text);
  font-weight: 600;
  padding: .65rem 1.5rem;
  border-radius: 10px;
  transition: all .2s;
}

.btn-sp-outline:hover {
  border-color: var(--sp-accent);
  background: var(--sp-badge-bg);
  color: var(--sp-accent);
}

.btn-sp-sm {
  padding: .4rem 1rem;
  font-size: .85rem;
}

.btn-sp-lg {
  padding: .85rem 2rem;
  font-size: 1.05rem;
}

/* ── FORMS ───────────────────────────────── */
.form-control,
.form-select {
  background: var(--sp-bg);
  border: 1px solid var(--sp-border2);
  color: var(--sp-text);
  border-radius: 10px;
  padding: .6rem .9rem;
  font-size: .9rem;
  transition: border-color .2s, box-shadow .2s;
}

.form-control:focus,
.form-select:focus {
  background: var(--sp-bg);
  border-color: var(--sp-accent2);
  box-shadow: 0 0 0 3px rgba(254, 215, 0, 0.12);
  color: var(--sp-text);
}

.form-control::placeholder {
  color: var(--sp-text3);
}

.form-label {
  font-size: .85rem;
  font-weight: 500;
  color: var(--sp-text2);
  margin-bottom: .35rem;
}

/* ── STAR RATING ─────────────────────────── */
.star-rating {
  display: flex;
  gap: 2px;
}

.star-rating .star {
  color: var(--sp-text3);
  font-size: .85rem;
  transition: color .15s;
}

.star-rating .star.filled {
  color: #f59e0b;
}

.star-rating.interactive .star {
  cursor: pointer;
}

/* ── FOOTER ──────────────────────────────── */
.footer-sp {
  background: var(--sp-bg2);
  border-top: 1px solid var(--sp-border);
  padding: 4rem 0 2rem;
  color: var(--sp-text2);
  font-size: .9rem;
}

.footer-sp h6 {
  color: var(--sp-text);
  font-weight: 600;
  font-size: .85rem;
  text-transform: uppercase;
  letter-spacing: .05em;
}

.footer-sp a {
  color: var(--sp-text2);
}

.footer-sp a:hover {
  color: var(--sp-accent);
}

.footer-bottom {
  border-top: 1px solid var(--sp-border);
  padding-top: 1.5rem;
  margin-top: 2rem;
  color: var(--sp-text3);
  font-size: .8rem;
}

/* ── BADGE ───────────────────────────────── */
.badge-sp {
  padding: 3px 10px;
  font-size: .75rem;
  font-weight: 500;
  border-radius: 999px;
}

/* ── AUTH CARDS ───────────────────────────── */
.auth-wrapper {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  background: var(--sp-bg);
  position: relative;
}

.auth-wrapper::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background:
    radial-gradient(circle at 30% 40%, var(--sp-hero-glow1) 0%, transparent 50%),
    radial-gradient(circle at 70% 60%, var(--sp-hero-glow2) 0%, transparent 40%);
  z-index: 0;
}

.auth-card {
  background: var(--sp-card-bg);
  border: 1px solid var(--sp-border);
  border-radius: 20px;
  padding: 2.5rem;
  width: 100%;
  max-width: 440px;
  position: relative;
  z-index: 1;
  box-shadow: var(--sp-shadow2);
}

/* ── PRODUCT GALLERY ─────────────────────── */
.product-gallery {
  position: relative;
}

.product-gallery .main-img {
  width: 100%;
  border-radius: 16px;
  border: 1px solid var(--sp-border);
  overflow: hidden;
  position: relative;
}

.product-gallery .main-img img {
  width: 100%;
  display: block;
  transition: opacity .25s ease;
}

.gallery-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(8px);
  border: none;
  color: #000;
  /* BEE THEME ADJUSTMENT */
  font-size: .9rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 5;
  transition: all .2s;
  opacity: 0;
}

.product-gallery:hover .gallery-arrow {
  opacity: 1;
}

.gallery-arrow:hover {
  background: rgba(0, 0, 0, 0.75);
  transform: translateY(-50%) scale(1.1);
}

.gallery-prev {
  left: 12px;
}

.gallery-next {
  right: 12px;
}

.gallery-counter {
  position: absolute;
  bottom: 12px;
  right: 12px;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(8px);
  color: #000;
  /* BEE THEME ADJUSTMENT */
  font-size: .75rem;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 20px;
  z-index: 5;
}

.gallery-thumbs-wrap {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 12px;
}

.gallery-thumbs {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  scroll-behavior: smooth;
  flex: 1;
  scrollbar-width: none;
  padding: 4px 0;
}

.gallery-thumbs::-webkit-scrollbar {
  display: none;
}

.gallery-thumb {
  width: 80px;
  height: 56px;
  border-radius: 10px;
  overflow: hidden;
  border: 2px solid transparent;
  cursor: pointer;
  opacity: .5;
  flex-shrink: 0;
  transition: all .25s;
}

.gallery-thumb:hover {
  opacity: .8;
  border-color: var(--sp-border2);
}

.gallery-thumb.active {
  opacity: 1;
  border-color: var(--sp-accent);
  box-shadow: 0 0 0 2px rgba(254, 215, 0, 0.2);
}

.gallery-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.thumb-scroll-btn {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--sp-bg3);
  border: 1px solid var(--sp-border);
  color: var(--sp-text2);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  flex-shrink: 0;
  font-size: .7rem;
  transition: all .2s;
}

.thumb-scroll-btn:hover {
  background: var(--sp-accent);
  color: #000;
  /* BEE THEME ADJUSTMENT */
  border-color: var(--sp-accent);
}

/* ══ ADMIN PANEL ═════════════════════════ */
.admin-sidebar {
  position: fixed;
  left: 0;
  top: 0;
  bottom: 0;
  width: 260px;
  background: var(--sp-bg2);
  border-right: 1px solid var(--sp-border);
  overflow-y: auto;
  z-index: 1040;
  transition: transform .3s;
}

.admin-sidebar .sidebar-brand {
  height: 60px;
  display: flex;
  align-items: center;
  padding: 0 1.25rem;
  border-bottom: 1px solid var(--sp-border);
  font-weight: 800;
  font-size: 1rem;
  color: var(--sp-text);
}

.admin-sidebar .nav-group {
  padding: 1rem 0 0;
}

.admin-sidebar .nav-group-title {
  font-size: .68rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--sp-text3);
  padding: 0 1.25rem .5rem;
}

.admin-sidebar .sidebar-link {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: .6rem 1.25rem;
  margin: 2px .75rem;
  color: var(--sp-text2);
  font-size: .87rem;
  font-weight: 500;
  border-radius: 8px;
  transition: all .2s;
}

.admin-sidebar .sidebar-link:hover {
  background: var(--sp-sidebar-hover);
  color: var(--sp-text);
}

.admin-sidebar .sidebar-link.active {
  background: var(--sp-sidebar-active-bg);
  color: var(--sp-sidebar-active-color);
  font-weight: 600;
}

.admin-content {
  margin-left: 260px;
  min-height: 100vh;
}

.admin-header {
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 1.5rem;
  background: var(--sp-bg2);
  border-bottom: 1px solid var(--sp-border);
}

.admin-header .page-title {
  font-weight: 600;
  font-size: 1.1rem;
}

/* ── STAT CARD (Admin) ───────────────────── */
.admin-stat {
  background: var(--sp-card-bg);
  border: 1px solid var(--sp-border);
  border-radius: 14px;
  padding: 1.5rem;
  position: relative;
  overflow: hidden;
  box-shadow: var(--sp-shadow);
}

.admin-stat::after {
  content: '';
  position: absolute;
  top: -20px;
  right: -20px;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--sp-gradient);
  opacity: .06;
}

.admin-stat .stat-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  margin-bottom: .75rem;
}

.admin-stat .stat-value {
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--sp-text);
}

.admin-stat .stat-label {
  font-size: .8rem;
  color: var(--sp-text2);
  margin-top: .15rem;
}

/* ── DATA TABLE (Admin) ──────────────────── */
.table-sp {
  color: var(--sp-text);
}

.table-sp thead th {
  font-size: .75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .05em;
  color: var(--sp-text3);
  border-bottom: 1px solid var(--sp-border);
  padding: .85rem 1rem;
  background: transparent;
}

.table-sp tbody td {
  padding: .85rem 1rem;
  border-bottom: 1px solid var(--sp-border);
  vertical-align: middle;
  font-size: .9rem;
}

.table-sp tbody tr:hover {
  background: var(--sp-sidebar-hover);
}

/* ── PAGINATION ──────────────────────────── */
.pagination .page-link {
  background: var(--sp-bg2);
  border: 1px solid var(--sp-border);
  color: var(--sp-text2);
  font-size: .85rem;
  border-radius: 8px !important;
  margin: 0 2px;
  padding: .4rem .75rem;
}

.pagination .page-item.active .page-link {
  background: var(--sp-accent);
  border-color: var(--sp-accent);
  color: #000;
  /* BEE THEME ADJUSTMENT */
}

.pagination .page-item.disabled .page-link {
  color: var(--sp-text3);
}

/* ── PRODUCT DETAIL ──────────────────────── */
.product-gallery {
  position: relative;
}

.product-gallery .main-img {
  width: 100%;
  border-radius: 16px;
  border: 1px solid var(--sp-border);
  overflow: hidden;
}

.product-gallery .main-img img {
  width: 100%;
  display: block;
}

.product-gallery .thumbs {
  display: flex;
  gap: 8px;
  margin-top: 12px;
}

.product-gallery .thumb {
  width: 72px;
  height: 48px;
  border-radius: 8px;
  overflow: hidden;
  border: 2px solid transparent;
  cursor: pointer;
  opacity: .6;
  transition: all .2s;
}

.product-gallery .thumb.active,
.product-gallery .thumb:hover {
  border-color: var(--sp-accent);
  opacity: 1;
}

.product-gallery .thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ── MISC ────────────────────────────────── */
.divider {
  border-top: 1px solid var(--sp-border);
}

.text-accent {
  color: var(--sp-accent2) !important;
}

.bg-sp {
  background: var(--sp-bg2);
}

.bg-sp2 {
  background: var(--sp-bg3);
}

/* ── RESPONSIVE ──────────────────────────── */
@media (max-width: 992px) {
  .hero-section h1 {
    font-size: 2.5rem;
  }

  .admin-sidebar {
    transform: translateX(-100%);
  }

  .admin-sidebar.show {
    transform: translateX(0);
  }

  .admin-content {
    margin-left: 0;
  }
}

@media (max-width: 576px) {
  .hero-section {
    padding: 6rem 0 3rem;
  }

  .hero-section h1 {
    font-size: 2rem;
  }
}

/* ── SIDEBAR OVERLAY ─────────────────────── */
.sidebar-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1035;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s;
}

.sidebar-overlay.show {
  opacity: 1;
  pointer-events: auto;
}

/* ── FORM CHECK ──────────────────────────── */
.form-check-input {
  background-color: var(--sp-bg3);
  border-color: var(--sp-border2);
}

.form-check-input:checked {
  background-color: var(--sp-accent);
  border-color: var(--sp-accent);
}

.form-check-input:focus {
  box-shadow: 0 0 0 3px rgba(254, 215, 0, 0.12);
}

/* ── DROPDOWNS ───────────────────────────── */
.dropdown-menu {
  background: var(--sp-dropdown-bg);
  border: 1px solid var(--sp-border);
  border-radius: 12px;
  padding: .5rem;
  box-shadow: var(--sp-shadow2);
}

.dropdown-item {
  border-radius: 8px;
  padding: .5rem .75rem;
  font-size: .9rem;
  transition: all .15s;
  color: var(--sp-text2);
}

.dropdown-item:hover {
  background: var(--sp-badge-bg);
  color: var(--sp-accent);
}

/* ── PRODUCT DESCRIPTION ─────────────────── */
.product-description h1,
.product-description h2,
.product-description h3,
.product-description h4 {
  margin-top: 1.5rem;
  margin-bottom: .75rem;
}

.product-description ul,
.product-description ol {
  margin-bottom: 1rem;
  padding-left: 1.5rem;
}

.product-description li {
  margin-bottom: .35rem;
}

.product-description p {
  margin-bottom: 1rem;
}

/* ── BREADCRUMB ──────────────────────────── */
.breadcrumb {
  background: transparent;
  padding: 0;
  margin: 0;
}

.breadcrumb-item+.breadcrumb-item::before {
  color: var(--sp-text3);
}

.breadcrumb-item a {
  color: var(--sp-text2);
}

.breadcrumb-item a:hover {
  color: var(--sp-accent);
}

/* ── NAVBAR SCROLLED ─────────────────────── */
.navbar-sp.scrolled {
  background: var(--sp-navbar-scrolled);
  box-shadow: 0 4px 20px rgba(15, 23, 42, 0.06);
}

/* ── ANIMATIONS ──────────────────────────── */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.fade-up {
  animation: fadeUp .6s ease forwards;
}

.fade-in {
  animation: fadeIn .5s ease forwards;
}

/* ── ALERT OVERRIDES ─────────────────────── */
.alert {
  background: var(--sp-bg2);
  border: 1px solid var(--sp-border);
  color: var(--sp-text);
}

/* ── USER PANEL SIDEBAR ─────────────────── */
.user-sidebar {
  display: flex;
  flex-direction: column;
}

.user-sidebar .nav-group {
  padding: .5rem 0 0;
}

.user-sidebar .sidebar-link .badge {
  min-width: 22px;
  text-align: center;
}

.user-panel-content .table-sp tbody td {
  font-size: .88rem;
}

@media (max-width: 992px) {
  .user-sidebar {
    transform: translateX(-100%);
  }

  .user-sidebar.show {
    transform: translateX(0);
    box-shadow: 4px 0 20px rgba(0, 0, 0, 0.3);
  }

  .user-panel-content {
    margin-left: 0;
  }
}

/* ═══════════════════════════════════════════ */
/* MOBILE RESPONSIVE                          */
/* ═══════════════════════════════════════════ */

/* Desktop and Mobile responsive display system */
@media (min-width: 992px) {
  .mobile {
    display: none !important;
  }
}

@media (max-width: 991px) {
  .desktop {
    display: none !important;
  }
}

/* ── Tablet (≤992px) ─────────────────────── */
@media (max-width: 992px) {
  .hero-section {
    padding: 3rem 0;
  }

  .hero-section h1 {
    font-size: 2.2rem;
  }

  .section-header h2 {
    font-size: 1.5rem;
  }

  body {
    padding-bottom: 72px;
  }
}

/* ── Mobile (≤768px) ─────────────────────── */
@media (max-width: 768px) {
  body {
    font-size: 14px;
    padding-bottom: 72px;
  }

  .container {
    padding-left: 12px;
    padding-right: 12px;
  }

  /* Navbar */
  .navbar-sp {
    padding: .5rem .75rem;
  }

  .navbar-sp .navbar-brand img {
    height: 28px !important;
  }

  /* Hero */
  .hero-section {
    padding: 2rem 0;
  }

  .hero-section h1 {
    font-size: 1.8rem;
  }

  .hero-section .lead {
    font-size: .9rem;
  }

  .hero-section .btn {
    font-size: .85rem;
    padding: 8px 16px;
  }

  /* Stats */
  .stat-box {
    padding: 1rem !important;
  }

  .stat-num {
    font-size: 1.3rem;
  }

  .stat-label {
    font-size: .7rem;
  }

  /* Product Cards */
  .product-card .card-body {
    padding: .875rem !important;
  }

  .product-card .card-title {
    font-size: 1rem !important;
  }

  .product-card .card-desc {
    font-size: .8rem !important;
    margin-bottom: .75rem !important;
  }

  .card-img-wrap {
    min-height: 160px;
  }

  .card-img-wrap img {
    min-height: 160px;
  }

  /* Section Headers */
  .section-header h2 {
    font-size: 1.3rem;
  }

  .section-header p {
    font-size: .82rem;
  }

  /* Category Cards */
  .category-card {
    padding: 1rem;
  }

  .category-card h5 {
    font-size: .9rem;
  }

  .cat-icon {
    width: 48px;
    height: 48px;
    font-size: 1.2rem;
  }

  /* Glass Cards */
  .glass-card {
    padding: 1rem;
    border-radius: 12px;
  }

  /* Footer */
  .footer-sp {
    padding: 2rem 0 1rem;
  }

  .footer-sp .row {
    gap: 0;
  }

  .footer-sp h6 {
    font-size: .9rem;
    margin-bottom: .5rem;
  }

  .footer-sp p,
  .footer-sp a {
    font-size: .8rem;
  }

  .footer-sp .col-lg-4 {
    margin-bottom: 1rem;
  }

  .footer-bottom {
    font-size: .75rem;
    padding: .75rem 0;
  }

  /* Tables */
  .table-sp {
    font-size: .8rem;
  }

  .table-sp th,
  .table-sp td {
    padding: .5rem .4rem;
  }

  /* Buttons */
  .btn-sp-lg {
    padding: 10px 20px;
    font-size: .9rem;
  }

  /* Modals */
  .modal-dialog {
    margin: .5rem;
  }
}

/* ── Small Mobile (≤480px) ───────────────── */
@media (max-width: 480px) {
  .hero-section h1 {
    font-size: 1.5rem;
  }

  .hero-section .lead {
    font-size: .82rem;
  }

  .stat-num {
    font-size: 1.1rem;
  }

  .stat-label {
    font-size: .65rem;
  }

  .product-card .card-title {
    font-size: .92rem !important;
  }

  .price {
    font-size: 1.1rem !important;
  }

  .category-card h5 {
    font-size: .8rem;
  }

  .cat-icon {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }

  .section-header h2 {
    font-size: 1.15rem;
  }

  .tech-tag {
    font-size: .65rem !important;
    padding: 2px 6px !important;
  }
}

/* ═══════════════════════════════════════════ */
/* STICKY MOBILE BOTTOM NAV                   */
/* ═══════════════════════════════════════════ */
@media (max-width: 992px) {

  /* Prevent sticky nav from hiding content on ALL pages */
  body {
    padding-bottom: 70px !important;
  }

  .container.py-5,
  .container-fluid.py-5,
  .container.py-4 {
    padding-bottom: 100px !important;
  }

  .mobile-bottom-sheet {
    top: auto !important;
    bottom: 64px !important;
    /* Position it above the bottom navigation bar */
    left: 0 !important;
    right: 0 !important;
    width: 100% !important;
    height: calc(85vh - 64px) !important;
    transform: translateY(100%) !important;
    border-top-left-radius: 24px !important;
    border-top-right-radius: 24px !important;
    border-left: none !important;
    border-right: none !important;
    border-top: 2px solid rgba(254, 215, 0, 0.3) !important;
    box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.6) !important;
  }

  .mobile-bottom-sheet.show {
    transform: none !important;
  }
}

.mobile-bottom-nav {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1055 !important;
  display: flex;
  justify-content: space-around;
  align-items: stretch;
  height: 64px;
  background: var(--sp-navbar-scrolled);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-top: 1px solid var(--sp-border);
  box-shadow: 0 -2px 20px rgba(0, 0, 0, 0.08);
  padding: 0;
  padding-bottom: env(safe-area-inset-bottom, 0px);
}

.mobile-bottom-nav a {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  text-decoration: none;
  color: var(--sp-text2) !important;
  opacity: 0.75;
  font-size: .65rem;
  font-weight: 500;
  padding: 6px 0;
  position: relative;
  overflow: hidden;
  transition: all .2s ease;
  -webkit-tap-highlight-color: transparent;
}

.mobile-bottom-nav a i {
  font-size: 1.15rem;
  color: var(--sp-text2);
  transition: transform .2s ease, color .2s ease;
}

.mobile-bottom-nav a.active {
  color: var(--sp-accent) !important;
  opacity: 1;
}

.mobile-bottom-nav a.active i {
  color: var(--sp-accent) !important;
  transform: scale(1.1);
}

.mobile-bottom-nav a.active::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 28px;
  height: 3px;
  background: var(--sp-gradient);
  border-radius: 0 0 4px 4px;
}

/* Ripple effect */
.mobile-bottom-nav a::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: var(--sp-accent);
  opacity: 0;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width .4s ease, height .4s ease, opacity .4s ease;
}

.mobile-bottom-nav a:active::after {
  width: 80px;
  height: 80px;
  opacity: .08;
}

/* Badge on nav item */
.mobile-bottom-nav .nav-badge {
  position: absolute;
  top: 4px;
  right: calc(50% - 18px);
  min-width: 16px;
  height: 16px;
  padding: 0 4px;
  font-size: .6rem;
  font-weight: 700;
  line-height: 16px;
  text-align: center;
  color: #000;
  /* BEE THEME ADJUSTMENT */
  background: var(--sp-red);
  border-radius: 8px;
}

/* ═══════════════════════════════════════════ */
/* USER PANEL MOBILE BOTTOM NAV               */
/* ═══════════════════════════════════════════ */
.user-mobile-nav {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1040;
  display: flex;
  justify-content: space-around;
  align-items: stretch;
  height: 64px;
  background: var(--sp-navbar-scrolled);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-top: 1px solid var(--sp-border);
  box-shadow: 0 -2px 20px rgba(0, 0, 0, 0.08);
  padding: 0;
  padding-bottom: env(safe-area-inset-bottom, 0px);
}

.user-mobile-nav a {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  text-decoration: none;
  color: var(--sp-text2) !important;
  opacity: 0.75;
  font-size: .6rem;
  font-weight: 500;
  padding: 6px 0;
  position: relative;
  overflow: hidden;
  transition: all .2s ease;
  -webkit-tap-highlight-color: transparent;
}

.user-mobile-nav a i {
  font-size: 1.1rem;
  color: var(--sp-text2);
  transition: transform .2s ease, color .2s ease;
}

.user-mobile-nav a.active {
  color: var(--sp-accent) !important;
  opacity: 1;
}

.user-mobile-nav a.active i {
  color: var(--sp-accent) !important;
  transform: scale(1.1);
}

.user-mobile-nav a.active::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 24px;
  height: 3px;
  background: var(--sp-gradient);
  border-radius: 0 0 4px 4px;
}

/* Hide TinyMCE branding and promotion system-wide */
.tox-statusbar__branding,
.tox-promotion {
  display: none !important;
}

/* Card Grid Favorite & View Badges */
.favorite-grid-btn {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 12;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.4);
  color: #1e293b;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.favorite-grid-btn:hover {
  transform: scale(1.1);
  background: #fff;
  color: #ff3b30;
}

.favorite-grid-btn.active {
  background: #ff3b30;
  border-color: #ff3b30;
  color: #000;
  /* BEE THEME ADJUSTMENT */
  box-shadow: 0 4px 10px rgba(255, 59, 48, 0.3);
}

.favorite-grid-btn.active i {
  font-weight: 900;
}

.view-counter-grid-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 12;
  padding: 4px 10px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.4);
  color: #1e293b;
  font-size: 0.72rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 6px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  pointer-events: none;
}

[data-theme="dark"] .favorite-grid-btn {
  background: rgba(15, 23, 42, 0.75);
  border-color: rgba(255, 255, 255, 0.1);
  color: #f1f5f9;
}

[data-theme="dark"] .favorite-grid-btn:hover {
  background: rgba(15, 23, 42, 0.9);
  color: #ef4444;
}

[data-theme="dark"] .favorite-grid-btn.active {
  background: #ef4444;
  border-color: #ef4444;
  color: #000;
  /* BEE THEME ADJUSTMENT */
}

[data-theme="dark"] .view-counter-grid-badge {
  background: rgba(15, 23, 42, 0.75);
  border-color: rgba(255, 255, 255, 0.1);
  color: #f1f5f9;
}

/* Custom Homepage Redesign Styles */
.premium-section {
  position: relative;
  overflow: hidden;
}

.premium-title-container {
  margin-bottom: 3.5rem;
}

.channel-card {
  background: var(--sp-bg2);
  border: 1px solid var(--sp-border);
  border-radius: 24px;
  padding: 2.5rem 2.25rem;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  height: 100%;
  position: relative;
  overflow: hidden;
  box-shadow: var(--sp-shadow);
  display: flex;
  flex-direction: column;
}

.channel-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(800px circle at var(--x, 0px) var(--y, 0px), rgba(254, 215, 0, 0.06), transparent 40%);
  opacity: 0;
  transition: opacity 0.5s;
  pointer-events: none;
  z-index: 1;
}

.channel-card:hover::before {
  opacity: 1;
}

.channel-card:hover {
  transform: translateY(-6px);
  border-color: var(--sp-accent);
  box-shadow: var(--sp-shadow2), 0 0 20px rgba(254, 215, 0, 0.04);
}

.channel-icon-wrapper {
  width: 60px;
  height: 60px;
  border-radius: 16px;
  background: rgba(254, 215, 0, 0.1);
  color: var(--sp-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  font-size: 1.5rem;
  transition: all 0.3s ease;
}

.channel-card:hover .channel-icon-wrapper {
  background: var(--sp-accent);
  color: #000000;
  box-shadow: 0 0 20px rgba(254, 215, 0, 0.3);
}

.channel-card-title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: var(--sp-text);
}

.channel-card-description {
  font-size: 0.95rem;
  color: var(--sp-text2);
  line-height: 1.6;
  margin-bottom: 1.25rem;
  flex-grow: 1;
}

.channel-badge {
  align-self: flex-start;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 30px;
  background: var(--sp-bg3);
  color: var(--sp-text2);
  border: 1px solid var(--sp-border);
}

.channel-card:hover .channel-badge {
  background: rgba(254, 215, 0, 0.1);
  color: var(--sp-accent);
  border-color: rgba(254, 215, 0, 0.15);
}

/* Accordion Styles */
.custom-faq-accordion .accordion-item {
  background: rgba(20, 20, 20, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 16px !important;
  margin-bottom: 1rem;
  overflow: hidden;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

[data-theme="light"] .custom-faq-accordion .accordion-item {
  background: rgba(255, 255, 255, 0.6);
  border-color: rgba(0, 0, 0, 0.06);
}

.custom-faq-accordion .accordion-item:hover {
  border-color: rgba(254, 215, 0, 0.3);
}

.custom-faq-accordion .accordion-button {
  background: transparent !important;
  color: var(--sp-text) !important;
  font-weight: 600;
  font-size: 1.05rem;
  padding: 1.25rem 1.5rem;
  border: none !important;
  box-shadow: none !important;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.custom-faq-accordion .accordion-button::after {
  background-image: none !important;
  content: '\f078';
  font-family: 'Font Awesome 6 Free', 'Font Awesome 5 Free', sans-serif;
  font-weight: 900;
  font-size: 0.9rem;
  color: var(--sp-text3);
  transform: rotate(0deg);
  transition: transform 0.3s ease, color 0.3s ease;
  width: auto;
  height: auto;
}

.custom-faq-accordion .accordion-button:not(.collapsed)::after {
  transform: rotate(180deg);
  color: var(--sp-accent);
}

.custom-faq-accordion .accordion-button:not(.collapsed) {
  color: var(--sp-accent) !important;
}

.custom-faq-accordion .accordion-body {
  padding: 0 1.5rem 1.5rem 1.5rem;
  color: var(--sp-text2);
  font-size: 0.95rem;
  line-height: 1.7;
}

.highlight-list {
  list-style: none;
  padding-left: 0;
}

.highlight-list li {
  position: relative;
  padding-left: 1.75rem;
  margin-bottom: 0.75rem;
}

.highlight-list li::before {
  content: '\f058';
  font-family: 'Font Awesome 6 Free', 'Font Awesome 5 Free', sans-serif;
  font-weight: 900;
  position: absolute;
  left: 0;
  color: var(--sp-accent);
}

.mobile-bottom-nav a {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1px;
  text-decoration: none;
  color: var(--sp-text2) !important;
  opacity: 0.75;
  font-size: .56rem;
  font-weight: 500;
  padding: 6px 0;
  position: relative;
  overflow: hidden;
  transition: all .2s ease;
  -webkit-tap-highlight-color: transparent;
}

.mobile-bottom-nav a i {
  font-size: 1.1rem;
  color: var(--sp-text2);
  transition: transform .2s ease, color .2s ease;
}

/* Force product titles to remain on a single line */
.product-card .card-title {
  white-space: nowrap !important;
  overflow: hidden !important;
  text-overflow: ellipsis !important;
}

/* ==========================================================================
   DIGITURK PLAY STYLE HERO SLIDER COMPONENT (HONEY BEE THEME)
   ========================================================================== */

.hero {
  width: 100%;
  height: calc(100vh - 90px);
  min-height: 720px;
  position: relative;
  overflow: hidden;
  background: var(--sp-bg2);
}

.hero-top {
  width: 100%;
  height: calc(100% - 144px);
  min-height: 536px;
  position: relative;
  background: linear-gradient(135deg, var(--sp-bg) 0%, var(--sp-bg2) 100%);
  background-size: cover;
  background-position: center;
  transition: background-color 0.5s ease, background-image 0.3s ease;
  overflow: hidden;
}

.hero-bg-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
  transition: background-color 0.5s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.5s ease;
  background-color: rgba(240, 244, 248, 0.15) !important;
}

[data-theme="dark"] .hero-bg-overlay {
  background-color: rgba(0, 0, 0, 0.85) !important;
}

.hero-top .container {
  height: 100%;
  position: relative;
}

.hero-holder {
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  display: none;
}

.hero-holder:first-child {
  display: block;
}

.hero-big-img,
.hero-small-img {
  position: absolute;
  transform: rotate(45deg);
  transform-origin: center;
  transition: all 1.2s cubic-bezier(.71, -.3, .24, 1.3);
  z-index: 2;
  pointer-events: none;
}

.hero-big-img {
  left: 55%;
  top: -10%;
  max-height: 100%;
  height: 80vh;
  width: auto;
}

.hero-big-img.out {
  transform: rotate(45deg) translateX(-150%);
  opacity: 0;
}

.hero-small-img {
  left: 56%;
  bottom: -15%;
  height: 50vh;
  width: auto;
}

.hero-small-img.out {
  transform: rotate(45deg) translateX(150%);
  opacity: 0;
}

.hero-info {
  padding: 95px 0 50px 0;
  max-width: 50%;
  position: relative;
  z-index: 3;
}

.hero-title {
  color: var(--sp-text);
  font-weight: 900;
  font-size: 54px;
  line-height: 58px;
  letter-spacing: -.5px;
  margin-bottom: 18px;
  transition: all .5s ease;
}

.hero-subtitle {
  font-size: 16px;
  color: var(--sp-text2);
  margin-bottom: 20px;
  line-height: 1.6;
}

.hero-info .package-props {
  margin-bottom: 20px;
}

.hero-info .package-prop {
  color: var(--sp-text);
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
}

.hero-info .package-prop i {
  color: var(--sp-accent);
  margin-right: 12px;
  font-size: 1.1rem;
}

.hero-info .price-info {
  display: flex;
  flex-direction: row;
  align-items: center;
  margin: 20px 0 12px;
  gap: 20px;
}

.hero-info .price-info-subtitle {
  font-size: 14px;
  color: var(--sp-text2);
}

.hero-info .price-left {
  display: flex;
  flex-direction: column;
}

.hero-info .price-monthly {
  color: var(--sp-text2);
  font-size: 15px;
}

.hero-info .price-old {
  font-size: 17px;
  color: var(--sp-red);
  text-decoration: line-through;
  font-weight: 700;
}

.hero-info .price-right {
  font-size: 40px;
  color: var(--sp-accent);
  font-weight: 900;
}

.hero-btns {
  display: flex;
  align-items: center;
  gap: 15px;
}

.hero-btn {
  height: 48px;
  padding: 0 22px;
  font-size: 16px;
  font-weight: 800;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  transition: all 0.3s;
  border: 3px solid var(--sp-accent);
  background: transparent;
  color: var(--sp-accent);
}

.hero-btn:hover {
  box-shadow: 0 4px 15px rgba(254, 215, 0, 0.25);
  color: var(--sp-accent);
  transform: translateY(-2px);
}

.hero-btn.red {
  background: var(--sp-accent);
  color: #000 !important;
  border-color: var(--sp-accent);
}

.hero-btn.red:hover {
  background: var(--sp-accent2);
  border-color: var(--sp-accent2);
  color: #fff !important;
  box-shadow: 0 4px 15px rgba(254, 215, 0, 0.4);
}

.hero-subdetail {
  color: var(--sp-text3);
  font-size: 12px;
  margin-top: 15px;
}

.hero-bottom {
  height: 144px;
  width: 100%;
  background-color: var(--sp-bg2);
  border-top: none;
  position: relative;
  z-index: 4;
}

.hero-info .anim {
  transition: all .5s ease;
  opacity: 1;
  transform: translateY(0);
}

.hero-info .anim.out {
  transform: translateY(50px);
  opacity: 0;
}

.hero-title.anim {
  transition-delay: 0s;
}

.hero-subtitle.anim {
  transition-delay: .1s;
}

.package-props.anim {
  transition-delay: .2s;
}

.price-info.anim {
  transition-delay: .3s;
}

.hero-subdetail.anim {
  transition-delay: .4s;
}

.hero-title.anim.out {
  transition-delay: .4s;
}

.hero-subtitle.anim.out {
  transition-delay: .3s;
}

.package-props.anim.out {
  transition-delay: .2s;
}

.price-info.anim.out {
  transition-delay: .1s;
}

.hero-subdetail.anim.out {
  transition-delay: 0s;
}

.package-box {
  display: flex;
  justify-content: space-between;
  transform: translateY(0);
  gap: 20px;
}

.package-btn {
  border-radius: 12px;
  height: 140px;
  width: calc((100% - 40px) / 3);
  padding: 20px;
  color: var(--sp-text);
  background-color: var(--sp-bg2);
  border: 1px solid var(--sp-border);
  box-shadow: var(--sp-shadow);
  transition: all .4s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  cursor: pointer;
}

.package-btn.active {
  color: #000;
  background-color: var(--sp-accent);
  border-color: var(--sp-accent);
  box-shadow: 0 10px 30px rgba(254, 215, 0, 0.2);
  transform: translateY(-15px);
  height: 148px;
}

.package-btn.active .package-price .price-right {
  color: #000;
}

.package-btn.active .package-price .price-old {
  color: rgba(0, 0, 0, 0.6);
}

.package-btn.active .package-price-sub {
  color: rgba(0, 0, 0, 0.7);
}

.package-btn.active:before {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  margin: auto;
  top: -8px;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 8px 8px;
  border-color: transparent transparent var(--sp-accent);
}

.package-btn .package-detail-btn {
  color: var(--sp-accent);
  font-weight: 700;
  font-size: 14px;
  text-decoration: underline;
}

.package-btn.active .package-detail-btn {
  color: #000;
}

.package-title {
  font-weight: 850;
  font-size: 20px;
  margin-bottom: 8px;
  letter-spacing: -.5px;
  white-space: nowrap !important;
  overflow: hidden !important;
  text-overflow: ellipsis !important;
  max-width: 100%;
}

.package-detail-holder {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}

.package-price-holder {
  width: 60%;
}

.package-btn-holder {
  width: 40%;
  text-align: right;
}

.package-price {
  display: flex;
  align-items: baseline;
  gap: 5px;
  margin-bottom: 5px;
}

.package-price .price-old {
  font-size: 14px;
  color: var(--sp-red);
  text-decoration: line-through;
  font-weight: 650;
}

.package-price .price-right {
  font-weight: 900;
  font-size: 24px;
  color: var(--sp-accent);
}

.package-price-sub {
  font-weight: 650;
  font-size: 10px;
  color: var(--sp-text3);
}

.package-apply-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 38px;
  padding: 0 12px;
  border-radius: 8px;
  font-weight: 800;
  font-size: 12px;
  background: var(--sp-accent);
  color: #000 !important;
  border: none;
  transition: all 0.2s;
}

.package-btn.active .package-apply-btn {
  background: #000;
  color: var(--sp-accent) !important;
}

/* Laptop Hero Scale Constraints */
@media (min-width: 1201px) and (max-width: 1440px) {
  .hero-title {
    font-size: 46px !important;
    line-height: 50px !important;
    margin-bottom: 15px !important;
  }
  .hero-subtitle {
    font-size: 15px !important;
    margin-bottom: 15px !important;
  }
  .hero-info {
    padding-top: 90px !important;
    padding-bottom: 40px !important;
  }
}

/* Tablet & Laptop Hero Scale Constraints */
@media (max-width: 1200px) {
  .hero-big-img {
    left: 58%;
    height: 70vh;
  }

  .hero-small-img {
    left: 60%;
    height: 42vh;
  }

  .hero-info {
    max-width: 48%;
    padding-top: 85px !important;
    padding-bottom: 30px !important;
  }

  .hero-title {
    font-size: 40px !important;
    line-height: 44px !important;
    margin-bottom: 12px !important;
  }

  .hero-subtitle {
    font-size: 14px !important;
    margin-bottom: 15px !important;
  }
}

/* Responsive & Mobile Hero Navigation Style */
@media (max-width: 991px) {

  /* Logo Center & Utility Alignments */
  .navbar-sp {
    position: relative;
  }

  .navbar-sp .navbar-brand {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1060;
    margin-right: 0 !important;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .navbar-sp .navbar-brand img {
    height: 48px !important;
    width: auto !important;
    max-height: none !important;
  }

  .hero {
    height: auto;
  }

  .hero-top {
    height: auto;
    padding-top: 5px !important;
    /* Reduced top padding to 5px as requested */
    padding-bottom: 10px;
  }

  .hero-holder {
    position: relative !important;
    /* Change from absolute to relative to let container auto-expand */
    height: auto !important;
  }

  .hero-info {
    max-width: 100%;
    text-align: center;
    padding: 15px 0 0;
    /* Reduced top padding */
  }

  .hero-title {
    font-size: 28px !important;
    line-height: 32px !important;
    text-align: center;
    margin-bottom: 12px !important;
  }

  .hero-subtitle {
    font-size: 14px !important;
    line-height: 1.5 !important;
    margin-bottom: 15px !important;
    padding: 0 15px;
  }

  .hero-info .package-prop {
    justify-content: center;
  }

  .hero-info .price-info {
    justify-content: center;
    margin: 15px 0 10px;
    gap: 15px;
  }

  .hero-info .price-right {
    font-size: 32px !important;
  }

  .hero-info .price-old {
    font-size: 16px !important;
  }

  .hero-btns {
    justify-content: center;
    gap: 10px;
  }

  .hero-btn {
    height: 38px !important;
    padding: 0 12px !important;
    font-size: 11px !important;
    font-weight: 800 !important;
    border-width: 1.5px !important;
    white-space: nowrap !important;
    /* Prevent text wrapping */
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
  }

  .hero-big-img,
  .hero-small-img {
    display: none;
  }

  .hero-mobile {
    display: block;
    max-width: 90% !important;
    margin: 0 auto 10px auto !important;
    /* Reduced bottom margin */
    height: auto;
    border-radius: 12px;
    box-shadow: var(--sp-shadow2);
  }

  .hero-bottom {
    display: none;
  }

  .hero-bottom-mobile {
    display: block;
    width: 100%;
    padding: 12px 0 !important;
    /* Reduced padding */
    background: var(--sp-bg2);
    border-top: none;
    overflow: hidden !important;
    /* Disable horizontal scrolling since buttons fit */
  }

  .hero-bottom-nav {
    display: flex;
    padding: 0 10px !important;
    gap: 6px !important;
    width: 100% !important;
    justify-content: space-between;
  }

  .hero-nav-mobile-btn {
    display: inline-block;
    flex: 1;
    text-align: center;
    padding: 8px 4px !important;
    /* Compact padding */
    font-size: 11px !important;
    /* Slightly smaller font to guarantee fit */
    font-weight: 800;
    color: var(--sp-text);
    background: var(--sp-bg2);
    border: 1px solid var(--sp-border);
    border-radius: 8px !important;
    /* Soft rectangular shape */
    white-space: nowrap;
    transition: all 0.3s;
  }

  .hero-nav-mobile-btn.active {
    background: var(--sp-accent);
    color: #000;
    border-color: var(--sp-accent);
    box-shadow: 0 4px 10px rgba(254, 215, 0, 0.2);
  }
}

/* Extra Small Devices Slider Adjustments */
@media (max-width: 576px) {
  .hero-title {
    font-size: 22px !important;
    line-height: 26px !important;
  }

  .hero-subtitle {
    font-size: 13px !important;
    margin-bottom: 12px !important;
  }

  .hero-info .price-right {
    font-size: 26px !important;
  }

  .hero-btn {
    height: 38px !important;
    padding: 0 12px !important;
    font-size: 13px !important;
  }

  .hero-mobile {
    max-width: 95% !important;
  }
}

/* ==========================================================================
   DIGITURK PLAY STYLE ADDITIONAL HOMEPAGE SECTIONS
   ========================================================================== */

/* ── Properties Section ── */
.properties {
  background: var(--sp-bg2);
  border-bottom: 1px solid var(--sp-border);
  padding: 40px 0;
  position: relative;
  z-index: 10;
}

.properties .container.desktop {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.property-box {
  text-align: center;
  width: calc((100% - 120px) / 4);
  padding: 10px;
  transition: transform 0.3s;
}

.property-box:hover {
  transform: translateY(-5px);
}

.property-box .img {
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 15px;
  color: var(--sp-accent);
}

.property-box .img i,
.property-box .img svg {
  font-size: 2.2rem;
  color: var(--sp-accent);
}

.property-title {
  font-weight: 800;
  font-size: 18px;
  margin-bottom: 8px;
  color: var(--sp-text);
}

.property-subtitle {
  font-size: 14px;
  color: var(--sp-text2);
  line-height: 1.5;
}

.property-plus {
  font-size: 20px;
  color: var(--sp-border2);
  font-weight: 300;
}

/* ── Packages Comparison Grid ── */
.packages {
  padding: 80px 0;
  background: var(--sp-bg);
}

.packages-title {
  font-weight: 900;
  font-size: 42px;
  text-align: center;
  color: var(--sp-text);
  margin-bottom: 50px;
  letter-spacing: -1px;
}

.packages-card-holder {
  display: flex;
  justify-content: space-between;
  gap: 30px;
}

.packages-card {
  background: var(--sp-bg2);
  border: 1px solid var(--sp-border);
  border-radius: 16px;
  width: calc((100% - 60px) / 3);
  padding: 40px 30px 30px;
  text-align: center;
  box-shadow: var(--sp-shadow);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.packages-card:hover {
  transform: translateY(-8px);
  border-color: var(--sp-accent);
  box-shadow: 0 20px 40px rgba(254, 215, 0, 0.1);
}

.packages-card.popular {
  border: 2px solid var(--sp-accent);
  box-shadow: 0 15px 35px rgba(254, 215, 0, 0.15);
}

.packages-card.popular:before {
  content: 'MOST POPULAR';
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--sp-accent);
  color: #000;
  font-size: 11px;
  font-weight: 900;
  padding: 4px 16px;
  border-radius: 30px;
  box-shadow: 0 4px 10px rgba(254, 215, 0, 0.3);
  letter-spacing: 0.5px;
}

.packages-card .package-title {
  font-size: 26px;
  font-weight: 900;
  color: var(--sp-text);
  margin-bottom: 20px;
}

.packages-card .package-price {
  display: flex;
  justify-content: center;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 25px;
}

.packages-card .price-right {
  font-size: 42px;
  font-weight: 900;
  color: var(--sp-accent);
}

.packages-card .price-old {
  font-size: 18px;
  text-decoration: line-through;
  color: var(--sp-red);
  font-weight: 700;
}

.packages-card .package-middle-holder {
  width: 100%;
  margin-bottom: 30px;
  flex-grow: 1;
}

.packages-card .package-props {
  display: flex;
  flex-direction: column;
  gap: 12px;
  text-align: left;
  border-top: 1px solid var(--sp-border);
  border-bottom: 1px solid var(--sp-border);
  padding: 20px 0;
}

.packages-card .package-prop {
  font-size: 14px;
  color: var(--sp-text2);
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
}

.packages-card .package-prop i {
  color: var(--sp-accent);
  font-size: 1.1rem;
}

.packages-card .package-detail-btn {
  font-weight: 800;
  color: var(--sp-accent);
  font-size: 14px;
  text-decoration: underline;
  margin-bottom: 20px;
}

.packages-card .package-apply-btn {
  width: 100%;
  height: 52px;
  font-size: 16px;
  font-weight: 900;
  border-radius: 8px;
  background: var(--sp-accent);
  color: #000 !important;
  border: none;
  box-shadow: 0 4px 15px rgba(254, 215, 0, 0.25);
  transition: all 0.3s;
}

.packages-card .package-apply-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(254, 215, 0, 0.4);
  filter: brightness(1.05);
}

.packages-card .package-price-sub {
  font-size: 11px;
  color: var(--sp-text3);
  margin-top: 12px;
  font-weight: 600;
}

/* ── Devices Dilediğin Yerde İzle ── */
.devices {
  background: var(--sp-bg2);
  padding: 80px 0;
  text-align: center;
  overflow: hidden;
  position: relative;
  border-top: 1px solid var(--sp-border);
}

.devices-title {
  font-size: 42px;
  font-weight: 900;
  color: var(--sp-text);
  margin-bottom: 20px;
}

.devices-subtitle {
  font-size: 18px;
  color: var(--sp-text2);
  max-width: 800px;
  margin: 0 auto 40px;
  line-height: 1.6;
}

.devices .img-holder {
  position: relative;
  max-width: 1000px;
  margin: 0 auto 50px;
}

.devices .img-holder img {
  width: 100%;
  height: auto;
  filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.15));
}

.devices-holder {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px;
  max-width: 900px;
  margin: 0 auto;
}

.devices-holder .device-icon-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 90px;
  gap: 8px;
  opacity: 0.7;
  transition: all 0.3s;
}

.devices-holder .device-icon-box:hover {
  opacity: 1;
  transform: translateY(-3px);
}

.devices-holder .device-icon-box i {
  font-size: 2.2rem;
  color: var(--sp-text);
}

.devices-holder .device-icon-box span {
  font-size: 11px;
  font-weight: 700;
  color: var(--sp-text2);
  text-transform: uppercase;
}

/* Responsive Styles */
@media (max-width: 991px) {
  .property-box {
    width: 100%;
  }

  .property-plus {
    display: none;
  }

  .packages-card-holder {
    flex-direction: column;
    gap: 30px;
  }

  .packages-card {
    width: 100%;
  }

  .packages-title,
  .devices-title {
    font-size: 32px;
  }

  .devices-subtitle {
    font-size: 15px;
  }

  .devices-holder {
    gap: 20px;
  }

  .devices-holder .device-icon-box {
    width: 70px;
  }

  .devices-holder .device-icon-box i {
    font-size: 1.8rem;
  }
}

/* ==========================================================================
   ENTERTAINMENT INFO & VOD GALLERY STYLES
   ========================================================================== */
.entertainment-info {
  padding: 80px 0;
  background: var(--sp-bg3);
  border-top: 1px solid var(--sp-border);
  border-bottom: 1px solid var(--sp-border);
}

.entertainment-info .title {
  font-size: 36px;
  font-weight: 900;
  color: var(--sp-text);
  margin-bottom: 15px;
  letter-spacing: -0.5px;
}

.entertainment-info .subtitle {
  font-size: 16px;
  color: var(--sp-text2);
  margin-bottom: 40px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

.entertainment-carousel-menu {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 15px;
  margin-bottom: 40px;
}

.entertainment-carousel-btn {
  padding: 12px 24px;
  font-size: 14px;
  font-weight: 700;
  color: var(--sp-text2);
  background: var(--sp-bg2);
  border: 1px solid var(--sp-border);
  border-radius: 8px;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: var(--sp-shadow);
}

.entertainment-carousel-btn:hover {
  color: var(--sp-text);
  border-color: var(--sp-border2);
  transform: translateY(-2px);
}

.entertainment-carousel-btn.active {
  color: #000 !important;
  background: var(--sp-gradient);
  border-color: var(--sp-accent);
  box-shadow: 0 4px 15px rgba(254, 215, 0, 0.25);
}

.entertainment-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 20px;
  width: 100%;
}

.entertainment-carousel-item {
  background: var(--sp-bg2);
  border: 1px solid var(--sp-border);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--sp-shadow);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  aspect-ratio: 2/3;
  cursor: pointer;
}

.entertainment-carousel-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.entertainment-carousel-item:hover {
  transform: translateY(-8px) scale(1.03);
  border-color: var(--sp-accent);
  box-shadow: 0 15px 30px rgba(254, 215, 0, 0.15);
}

.entertainment-carousel-item:hover img {
  transform: scale(1.08);
}

.entertainment-carousel-item .item-title {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px 15px 15px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.95) 0%, rgba(0, 0, 0, 0.4) 60%, transparent 100%);
  color: #ffffff;
  font-size: 14px;
  font-weight: 700;
  text-align: center;
  transform: translateY(0);
  transition: all 0.3s;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Entertainment responsive grid settings */
@media (max-width: 1200px) {
  .entertainment-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (max-width: 768px) {
  .entertainment-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
  }

  .entertainment-info {
    padding: 50px 0;
  }

  .entertainment-info .title {
    font-size: 28px;
  }
}

@media (max-width: 480px) {
  .entertainment-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .entertainment-carousel-btn {
    padding: 10px 18px;
    font-size: 12px;
  }
}

/* ==========================================================================
   FAQ PAGE WATCH ANYWHERE SECTION STYLES
   ========================================================================== */
.faq-watch-anywhere {
  background: radial-gradient(circle at 50% 50%, rgba(254, 215, 0, 0.08), transparent 60%), #0B0B0C !important;
  border-top: 1px solid rgba(254, 215, 0, 0.15) !important;
  border-bottom: 1px solid rgba(254, 215, 0, 0.15) !important;
  padding: 6rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

[data-theme="light"] .faq-watch-anywhere {
  background: radial-gradient(circle at 50% 50%, rgba(254, 215, 0, 0.08), transparent 60%), #0B0B0C !important;
}

.faq-watch-title {
  color: #FFFFFF !important;
}

.faq-watch-subtitle {
  color: rgba(255, 255, 255, 0.75) !important;
}

.faq-watch-anywhere .devices-holder {
  display: flex !important;
  justify-content: center !important;
  flex-wrap: wrap !important;
  gap: 30px !important;
  max-width: 900px !important;
  margin: 4rem auto 0 auto !important;
  align-items: center !important;
}

.faq-watch-anywhere .devices-holder img {
  height: 32px !important;
  width: auto !important;
  opacity: 0.75 !important;
  transition: all 0.3s ease !important;
  filter: brightness(0) invert(1) !important;
}

.faq-watch-anywhere .devices-holder img:hover {
  opacity: 1 !important;
  transform: translateY(-3px) scale(1.05) !important;
}

@media (max-width: 991px) {
  .faq-watch-anywhere .devices-holder {
    gap: 20px !important;
  }

  .faq-watch-anywhere .devices-holder img {
    height: 24px !important;
  }
}

/* ── IPTVBEE Premium Promo Banner Section ── */
.iptvbee-promo-banner-section {
  background: linear-gradient(135deg, #0a0a0c 0%, #1c1c21 40%, #FED700 100%);
  position: relative;
  overflow: hidden;
}

.iptvbee-promo-banner-section .btn-sp-dark {
  background: #0f172a !important;
  color: #ffffff !important;
  border: 1px solid rgba(255, 255, 255, 0.15) !important;
  transition: all 0.25s ease !important;
}

.iptvbee-promo-banner-section .btn-sp-dark:hover {
  background: #1e293b !important;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(15, 23, 42, 0.3);
}

.iptvbee-promo-banner-section .btn-sp-light {
  background: #ffffff !important;
  color: #0f172a !important;
  border: 1px solid #ffffff !important;
  transition: all 0.25s ease !important;
}

.iptvbee-promo-banner-section .btn-sp-light:hover {
  background: #f1f5f9 !important;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(255, 255, 255, 0.2);
}

.iptvbee-mockup-img {
  transition: transform 0.5s ease;
}

.iptvbee-promo-banner-section:hover .iptvbee-mockup-img {
  transform: scale(1.03) rotate(1deg);
}

@media (max-width: 991px) {
  .iptvbee-promo-banner-section {
    text-align: center;
  }

  .iptvbee-bg-viewer {
    background-position: center !important;
  }

  .iptvbee-promo-banner-section .btn-sp-dark,
  .iptvbee-promo-banner-section .btn-sp-light {
    width: 100%;
    justify-content: center;
  }
}

/* ==========================================================================
   PACKAGES PAGE HEADER BANNER CAROUSEL SLIDER STYLES
   ========================================================================== */
.products-container {
  padding-top: 80px;
}

@media (max-width: 991px) {
  .products-container {
    padding-top: 0;
  }
}

#packagesBannerSlider {
  background-color: #080808;
  aspect-ratio: 1024 / 455;
  width: 100%;
  max-height: 600px;
}

#packagesBannerSlider .carousel-inner,
#packagesBannerSlider .carousel-item {
  height: 100%;
  max-height: 600px;
}

#packagesBannerSlider .carousel-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

#packagesBannerSlider .carousel-indicators [data-bs-target] {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #ffffff;
  opacity: 0.5;
  transition: all 0.3s ease;
  border: none;
  margin: 0 4px;
}

#packagesBannerSlider .carousel-indicators .active {
  width: 24px;
  border-radius: 5px;
  background-color: #FED700 !important;
  opacity: 1;
}

#packagesBannerSlider .carousel-control-prev,
#packagesBannerSlider .carousel-control-next {
  width: 44px;
  height: 44px;
  background: rgba(0, 0, 0, 0.6);
  border-radius: 50%;
  top: 50%;
  transform: translateY(-50%);
  margin: 0 20px;
  transition: all 0.3s ease;
  border: 1px solid rgba(254, 215, 0, 0.3);
  opacity: 0;
}

#packagesBannerSlider:hover .carousel-control-prev,
#packagesBannerSlider:hover .carousel-control-next {
  opacity: 0.85;
}

#packagesBannerSlider .carousel-control-prev:hover,
#packagesBannerSlider .carousel-control-next:hover {
  background: #FED700;
  border-color: #FED700;
  opacity: 1;
}

#packagesBannerSlider .carousel-control-prev:hover .carousel-control-prev-icon,
#packagesBannerSlider .carousel-control-next:hover .carousel-control-next-icon {
  filter: brightness(0);
}

@media (max-width: 768px) {
  #packagesBannerSlider {
    aspect-ratio: auto;
    height: 280px;
  }

  #packagesBannerSlider .carousel-inner,
  #packagesBannerSlider .carousel-item {
    height: 280px;
  }

  #packagesBannerSlider .carousel-control-prev,
  #packagesBannerSlider .carousel-control-next {
    width: 32px;
    height: 32px;
    margin: 0 10px;
  }
}

.carousel-caption-overlay {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.1) 50%, rgba(0, 0, 0, 0) 100%);
  display: flex;
  align-items: center;
  padding: 0 8%;
  z-index: 2;
}

.caption-content {
  max-width: 550px;
  text-align: left;
}

.caption-badge {
  background: #FED700 !important;
  color: #000 !important;
  font-size: 0.8rem;
  letter-spacing: 1px;
  border-radius: 50px;
}

.slider-title {
  font-size: 2.8rem;
  line-height: 1.15;
  font-weight: 800;
  text-shadow: 0 2px 15px rgba(0, 0, 0, 0.8), 0 1px 5px rgba(0, 0, 0, 0.8);
}

.slider-desc {
  font-size: 1.05rem;
  line-height: 1.6;
  text-shadow: 0 1px 10px rgba(0, 0, 0, 0.8), 0 1px 4px rgba(0, 0, 0, 0.8);
}

.slider-btn {
  box-shadow: 0 4px 15px rgba(254, 215, 0, 0.4);
}

@media (max-width: 1200px) {
  .slider-title {
    font-size: 2.2rem;
  }

  .slider-desc {
    font-size: 0.95rem;
  }
}

@media (max-width: 991px) {
  .carousel-caption-overlay {
    background: linear-gradient(to top, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.3) 50%, rgba(0, 0, 0, 0.6) 100%);
    align-items: center;
    padding: 30px 20px;
  }

  .caption-content {
    max-width: 100%;
    text-align: center;
    width: 100%;
  }

  .slider-title {
    font-size: 1.6rem;
    margin-bottom: 6px !important;
  }

  .slider-desc {
    font-size: 0.85rem;
    margin-bottom: 10px !important;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

  .caption-badge {
    font-size: 0.7rem;
    padding: 4px 10px !important;
    margin-bottom: 6px !important;
  }

  .slider-btn {
    padding: 6px 14px !important;
    font-size: 0.75rem;
  }
}

@media (max-width: 576px) {
  .carousel-caption-overlay {
    padding: 20px 15px;
  }

  .slider-title {
    font-size: 1.35rem;
    margin-bottom: 6px !important;
  }

  .slider-desc {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    font-size: 0.8rem;
    margin-bottom: 10px !important;
  }

  .caption-badge {
    display: inline-block;
    font-size: 0.65rem;
    padding: 4px 10px !important;
    margin-bottom: 8px !important;
  }

  .slider-btn {
    margin-top: 6px;
    padding: 6px 14px !important;
    font-size: 0.75rem;
  }
}

/* ── OVERHANGING NAV LOGO EFFECT (DESKTOP) ── */
@media (min-width: 992px) {
  .navbar-brand {
    position: relative;
    z-index: 1060;
    width: 160px;
    height: 40px;
    margin: 0;
    padding: 0 !important;
  }

  .navbar-brand img.logo-light,
  .navbar-brand img.logo-dark {
    position: absolute;
    top: -2px;
    left: 0;
    height: 120px !important;
    width: auto !important;
    max-height: none !important;
    filter: drop-shadow(0 8px 16px rgba(0, 0, 0, 0.4));
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  }

  .navbar-brand:hover img.logo-light,
  .navbar-brand:hover img.logo-dark {
    transform: scale(1.06) translateY(2px);
    filter: drop-shadow(0 12px 24px rgba(254, 215, 0, 0.45)) drop-shadow(0 4px 6px rgba(0, 0, 0, 0.3));
  }
}

/* Custom Offcanvas Close Button & Borders */
.offcanvas-close-btn {
  background: rgba(255, 255, 255, 0.05) !important;
  border: 1px solid var(--sp-border) !important;
  color: var(--sp-text) !important;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  transition: all 0.2s ease;
  cursor: pointer;
  padding: 0;
  line-height: 1;
}

.offcanvas-close-btn:hover {
  background: var(--sp-accent) !important;
  color: #000 !important;
  border-color: var(--sp-accent) !important;
  transform: rotate(90deg);
}

.offcanvas.offcanvas-end {
  border-left: 1px solid rgba(254, 215, 0, 0.15) !important;
  box-shadow: -10px 0 40px rgba(0, 0, 0, 0.6) !important;
}

/* ── TAWK.TO WIDGET POSITIONING FOR MOBILE DEVICES ── */
@media (max-width: 991px) {

  #tawk-chat-widget,
  iframe[title="chat widget"],
  iframe[src*="tawk.to"],
  .tawk-minimized,
  .tawk-card,
  .tawk-button {
    bottom: 85px !important;
  }
}

/* ── CUSTOM LIVE CHAT WIDGET STYLING ── */
.custom-live-chat {
  position: fixed;
  bottom: 85px;
  right: 20px;
  z-index: 9999;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  user-select: none;
}

.custom-chat-container {
  position: relative;
  display: flex;
  align-items: center;
}

.custom-chat-bar {
  background: #00b159;
  color: #ffffff;
  padding: 12px 24px;
  border-radius: 12px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 700;
  box-shadow: 0 8px 24px rgba(0, 177, 89, 0.25), 0 4px 12px rgba(0, 0, 0, 0.15);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  letter-spacing: 0.5px;
}

.custom-chat-bar:hover {
  background: #00c864;
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(0, 177, 89, 0.35), 0 6px 16px rgba(0, 0, 0, 0.2);
}

.custom-chat-bar i {
  font-size: 16px;
}

@media (max-width: 991px) {
  .custom-live-chat {
    bottom: 85px;
    right: 15px;
  }

  .custom-chat-bar {
    font-size: 13px;
    padding: 10px 20px;
  }
}

/* ── AUTH PAGES CONTAINER ───────────────── */
.auth-page-container {
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8rem 1rem;
}

@media (max-width: 767px) {
  .auth-page-container {
    padding-top: 10px !important;
    padding-bottom: 2rem !important;
  }
}