* {
  line-height: normal;
}

.hidden {
  display: none !important;
}

/* ═══════════════════════════════════════════════════════
   ELITE NAVBAR  —  xn-header
   ═══════════════════════════════════════════════════════ */

.xn-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: background 0.35s ease, backdrop-filter 0.35s ease, box-shadow 0.35s ease, padding 0.35s ease;
  /* Transparent by default */
  background: transparent;
  padding: 10px 0;
}

/* Scrolled state — glassmorphism */
.xn-header--scrolled {
  background: rgba(10, 10, 14, 0.75);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 rgba(255,255,255,0.06), 0 8px 32px rgba(0,0,0,0.4);
  padding: 6px 0;
}

.xn-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  height: 64px;
}

/* ── Logo ── */
.xn-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  flex-shrink: 0;
}

.xn-logo-img {
  width: 40px;
  height: 40px;
  object-fit: contain;
  border-radius: 10px;
  transition: filter 0.3s ease;
}

.xn-logo:hover .xn-logo-img {
  filter: drop-shadow(0 0 10px color-mix(in srgb, var(--color-primary) 60%, transparent));
}

.xn-logo-text {
  display: flex;
  flex-direction: column;
  gap: 1px;
}

.xn-logo-name {
  font-size: 17px;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.xn-logo-slug {
  font-size: 11px;
  color: rgba(255,255,255,0.35);
  font-weight: 500;
  letter-spacing: 0.01em;
}

/* ── Desktop nav ── */
.xn-nav {
  align-items: center;
  gap: 2px;
  flex: 1;
  justify-content: center;
}

.xn-nav-link {
  position: relative;
  font-size: 14px;
  font-weight: 600;
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  padding: 8px 16px;
  border-radius: 8px;
  transition: color 0.2s ease, background 0.2s ease;
  background: transparent;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 5px;
  white-space: nowrap;
}

.xn-nav-link:hover {
  color: #fff;
  background: rgba(255,255,255,0.06);
}

.xn-nav-link--active {
  color: #fff;
  background: rgba(255,255,255,0.08);
}

.xn-nav-link--active::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 50%;
  transform: translateX(-50%);
  width: 16px;
  height: 2px;
  background: var(--color-primary);
  border-radius: 1px;
  box-shadow: 0 0 6px var(--color-primary);
}

.xn-chevron {
  transition: transform 0.25s ease;
  flex-shrink: 0;
  opacity: 0.5;
}

/* ── Dropdown (subcategory) ── */
.xn-dropdown-wrap {
  position: relative;
}

.xn-submenu {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  min-width: 200px;
  background: rgba(16, 16, 22, 0.92);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 14px;
  padding: 8px;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.5);
  z-index: 100;
  list-style: none;
  margin: 0;
}

.xn-submenu-link {
  display: block;
  font-size: 14px;
  font-weight: 500;
  color: rgba(255,255,255,0.65);
  text-decoration: none;
  padding: 9px 14px;
  border-radius: 8px;
  transition: all 0.2s ease;
}

.xn-submenu-link:hover,
.xn-submenu-link--active {
  background: rgba(255,255,255,0.07);
  color: #fff;
}

/* ── Right actions ── */
.xn-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

/* ── Currency button ── */
.xn-currency-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  color: rgba(255,255,255,0.55);
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 8px;
  padding: 7px 12px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.xn-currency-btn:hover {
  background: rgba(255,255,255,0.09);
  color: #fff;
}

.xn-currency-menu {
  position: absolute;
  right: 0;
  top: calc(100% + 8px);
  background: rgba(14, 14, 20, 0.95);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 14px;
  padding: 8px;
  backdrop-filter: blur(20px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.5);
  z-index: 200;
  list-style: none;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
  min-width: 160px;
}

.xn-currency-item {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  padding: 7px 12px;
  border-radius: 7px;
  transition: all 0.2s ease;
  text-align: center;
}

.xn-currency-item:hover,
.xn-currency-item--active {
  background: color-mix(in srgb, var(--color-primary) 15%, transparent);
  color: var(--color-primary);
}

/* ── Profile ── */
.xn-profile {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 10px;
  padding: 5px 10px 5px 5px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.xn-profile:hover {
  background: rgba(255,255,255,0.09);
}

.xn-avatar {
  width: 30px;
  height: 30px;
  border-radius: 7px;
  object-fit: cover;
}

.xn-profile-name {
  font-size: 13px;
  font-weight: 600;
  color: rgba(255,255,255,0.8);
}

.xn-profile-menu {
  min-width: 140px;
  background: rgba(14, 14, 20, 0.95);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
  padding: 8px;
  backdrop-filter: blur(20px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.5);
  z-index: 200;
  transition: all 0.2s ease;
}

.xn-profile-logout {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  color: #ff4a4a;
  text-decoration: none;
  padding: 8px 12px;
  border-radius: 8px;
  transition: background 0.2s;
}

.xn-profile-logout:hover {
  background: rgba(255, 74, 74, 0.12);
}

/* ── Basket + Login buttons ── */
.xn-basket-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--color-primary);
  color: #000;
  cursor: pointer;
  border: none;
  transition: all 0.25s ease;
  box-shadow: 0 4px 14px color-mix(in srgb, var(--color-primary) 35%, transparent);
}

.xn-basket-btn:hover {
  filter: brightness(1.12);
  transform: translateY(-1px);
}

.xn-login-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 700;
  padding: 8px 20px;
  border-radius: 10px;
  background: var(--color-primary);
  color: #000;
  border: none;
  cursor: pointer;
  transition: all 0.25s ease;
  box-shadow: 0 4px 14px color-mix(in srgb, var(--color-primary) 30%, transparent);
}

.xn-login-btn:hover {
  filter: brightness(1.12);
  transform: translateY(-1px);
}

/* ── Hamburger ── */
.xn-hamburger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: 8px;
  padding: 8px;
  cursor: pointer;
}

.xn-ham-line {
  width: 100%;
  height: 2px;
  background: rgba(255,255,255,0.7);
  border-radius: 1px;
  transition: all 0.3s ease;
  transform-origin: center;
}

.xn-hamburger--open .xn-ham-line:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.xn-hamburger--open .xn-ham-line:nth-child(2) { opacity: 0; transform: scaleX(0); }
.xn-hamburger--open .xn-ham-line:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── Mobile menu ── */
.xn-mobile-menu {
  background: rgba(10, 10, 14, 0.97);
  border-top: 1px solid rgba(255,255,255,0.06);
  backdrop-filter: blur(20px);
}

.xn-mobile-user {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  background: rgba(255,255,255,0.04);
  border-radius: 10px;
  margin-bottom: 12px;
}

.xn-mobile-avatar {
  width: 36px;
  height: 36px;
  border-radius: 8px;
}

.xn-mobile-username {
  font-size: 14px;
  font-weight: 600;
  color: #fff;
}

.xn-mobile-currency {
  margin-bottom: 8px;
}

.xn-mobile-currency-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  width: 100%;
  font-size: 14px;
  font-weight: 600;
  color: rgba(255,255,255,0.6);
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 10px;
  padding: 10px 16px;
  cursor: pointer;
}

.xn-mobile-currency-menu {
  list-style: none;
  margin: 6px 0 0;
  padding: 8px;
  background: rgba(14,14,20,0.98);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 12px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 4px;
  z-index: 50;
}

.xn-mobile-currency-item {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  padding: 7px;
  border-radius: 7px;
  text-align: center;
  transition: all 0.2s;
}

.xn-mobile-currency-item:hover {
  background: rgba(255,255,255,0.07);
  color: #fff;
}

.xn-mobile-nav {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.xn-mobile-link {
  display: block;
  font-size: 15px;
  font-weight: 600;
  color: rgba(255,255,255,0.65);
  text-decoration: none;
  padding: 11px 16px;
  border-radius: 10px;
  transition: all 0.2s ease;
  background: transparent;
  border: none;
  cursor: pointer;
  text-align: left;
}

.xn-mobile-link:hover,
.xn-mobile-link--active {
  background: rgba(255,255,255,0.07);
  color: #fff;
}

.xn-mobile-sub-link {
  display: block;
  font-size: 14px;
  font-weight: 500;
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  padding: 8px 14px;
  border-radius: 8px;
  transition: all 0.2s;
}

.xn-mobile-sub-link:hover {
  background: rgba(255,255,255,0.05);
  color: #fff;
}

/* ═══════════════════════════════════════════════════════
   HERO AMBIENT LIGHTS
   ═══════════════════════════════════════════════════════ */

.hero-ambient-left {
  top: 0;
  bottom: 0;
  left: -100px;
  width: 420px;
  background: radial-gradient(ellipse at left center,
    color-mix(in srgb, var(--color-primary) 12%, transparent) 0%,
    transparent 70%
  );
  filter: blur(20px);
  animation: ambientPulse 7s ease-in-out infinite alternate;
}

.hero-ambient-right {
  top: 0;
  bottom: 0;
  right: -100px;
  width: 420px;
  background: radial-gradient(ellipse at right center,
    rgba(129, 140, 248, 0.10) 0%,
    transparent 70%
  );
  filter: blur(20px);
  animation: ambientPulse 9s ease-in-out infinite alternate-reverse;
}

.hero-ambient-top {
  top: -80px;
  left: 50%;
  transform: translateX(-50%);
  width: 900px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(ellipse,
    color-mix(in srgb, var(--color-primary) 10%, transparent) 0%,
    transparent 65%
  );
  filter: blur(30px);
  animation: ambientPulse 5s ease-in-out infinite alternate;
}

@keyframes ambientPulse {
  0%   { opacity: 0.5; }
  100% { opacity: 1; }
}

/* ── Hero featured wrap ─────────────────────────────────── */
.hero-featured-wrap {
  position: relative;
}

.hero-featured-fade-l,
.hero-featured-fade-r {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 140px;
  z-index: 2;
  pointer-events: none;
}

.hero-featured-fade-l {
  left: 0;
  background: linear-gradient(to right, var(--dark-color-primary), transparent);
}

.hero-featured-fade-r {
  right: 0;
  background: linear-gradient(to left, var(--dark-color-primary), transparent);
}

/* The JS createHotPackagesFromFeatured injects .featuredSwiper inside .hero-featured-wrap.
   Override section margin so it sits tight inside the hero */
.hero-featured-wrap .featured-products-section {
  margin-top: 0 !important;
}

/* Push body content down to account for fixed header */
body > nav,
body > header {
  /* already fixed */
}

/* ═══════════════════════════════════════════════════════
   ELITE HOMEPAGE — Hero, Services, Stats
   ═══════════════════════════════════════════════════════ */

/* ── Hero section ──────────────────────────────────────── */
.hero-section {
  /* Transparent — the global grid/starfield on body shows through,
     so the hero and the rest of the page share one continuous surface */
  background: transparent;
  position: relative;
}

/* ── Featured products section (JS-injected) ─────────── */
/* Kill the gray swiper-slide background */
.featuredSwiper .swiper-slide,
.featured-slide {
  background: transparent !important;
  display: flex !important;
  align-items: stretch;
}

/* Make the swiper wrapper transparent */
.featured-swiper-wrapper,
.featured-products-section {
  background: transparent !important;
}

/* featured pkg-card inside slide */
.featured-slide .pkg-card {
  width: 100%;
}



/* The dark color lives on <html>; body must stay transparent or its
   background paints OVER the fixed negative-z starfield layer below */
body {
  background: transparent !important;
}

/* ── Global starfield — continues the hero's space texture all the
     way down through the footer ───────────────────────────── */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background-image:
    radial-gradient(1px 1px at 22% 31%, rgba(255,255,255,0.35), transparent),
    radial-gradient(1px 1px at 43% 73%, rgba(255,255,255,0.25), transparent),
    radial-gradient(1.5px 1.5px at 61% 18%, rgba(255,255,255,0.30), transparent),
    radial-gradient(1px 1px at 78% 52%, rgba(255,255,255,0.22), transparent),
    radial-gradient(1.5px 1.5px at 89% 84%, rgba(255,255,255,0.28), transparent),
    radial-gradient(1px 1px at 11% 86%, rgba(255,255,255,0.25), transparent),
    radial-gradient(1.5px 1.5px at 52% 48%, color-mix(in srgb, var(--color-primary) 45%, transparent), transparent),
    radial-gradient(1px 1px at 33% 9%, rgba(255,255,255,0.22), transparent),
    radial-gradient(1px 1px at 68% 66%, color-mix(in srgb, var(--color-primary) 35%, transparent), transparent),
    /* Nebula clouds — soft galaxy haze, painted under the star dots */
    radial-gradient(ellipse 900px 480px at 78% 12%, color-mix(in srgb, var(--color-primary) 7%, transparent), transparent 70%),
    radial-gradient(ellipse 760px 520px at 12% 64%, rgba(99, 102, 241, 0.05), transparent 70%),
    radial-gradient(ellipse 1100px 600px at 50% 105%, rgba(76, 60, 150, 0.07), transparent 72%),
    radial-gradient(ellipse 620px 380px at 38% 28%, rgba(140, 90, 200, 0.04), transparent 70%);
  background-size:
    540px 540px, 470px 470px, 620px 620px, 560px 560px, 710px 710px,
    490px 490px, 650px 650px, 580px 580px, 530px 530px,
    100% 100%, 100% 100%, 100% 100%, 100% 100%;
}

/* Hero's own grid replaced by the global one above */
.hero-grid-bg {
  display: none;
}

/* ── Three.js hero canvas ─────────────────────────────────── */
/* No mask here — the WebGL canvas inside is position:fixed and serves
   as the full-page galaxy backdrop; a mask would clip it to the hero */
.hero-three {
  z-index: 0;
}

.hero-three canvas {
  display: block;
  width: 100% !important;
  height: 100% !important;
}

/* ── 3D trending package cards (CSS3D popups) ─────────────── */
.h3d-card {
  display: block;
  width: 340px;
  text-decoration: none;
  pointer-events: auto;
  cursor: pointer;
  isolation: isolate;
}

.h3d-inner {
  border-radius: 18px;
  overflow: hidden;
  background: rgb(22, 22, 28);
  border: 1px solid color-mix(in srgb, var(--color-primary) 35%, transparent);
  box-shadow:
    0 0 30px color-mix(in srgb, var(--color-primary) 18%, transparent),
    0 20px 50px rgba(0, 0, 0, 0.5);
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.h3d-card:hover .h3d-inner {
  transform: scale(1.07);
  border-color: color-mix(in srgb, var(--color-primary) 70%, transparent);
  box-shadow:
    0 0 50px color-mix(in srgb, var(--color-primary) 40%, transparent),
    0 26px 60px rgba(0, 0, 0, 0.6);
}

.h3d-img {
  position: relative;
  height: 170px;
  background: linear-gradient(135deg, color-mix(in srgb, var(--color-primary) 22%, transparent), #1b1b22);
}

.h3d-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.h3d-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.65), transparent 55%);
  pointer-events: none;
}

.h3d-trend {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 2;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.06em;
  color: #ffb597;
  background: rgba(0, 0, 0, 0.72);
  border: 1px solid rgba(255, 107, 53, 0.45);
  border-radius: 999px;
  padding: 5px 12px;
}

.h3d-disc {
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 2;
  font-size: 14px;
  font-weight: 900;
  color: #fff;
  background: linear-gradient(100deg, #ff4a6b, #ff7a4a);
  border-radius: 8px;
  padding: 5px 11px;
  box-shadow: 0 0 18px rgba(255, 74, 107, 0.55);
}

.h3d-body {
  padding: 14px 16px 15px;
}

.h3d-name {
  font-size: 16px;
  font-weight: 800;
  color: #fff;
  line-height: 1.3;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: 42px;
  margin-bottom: 10px;
}

.h3d-price-row {
  display: flex;
  align-items: baseline;
  gap: 8px;
  border-top: 1px solid rgba(255,255,255,0.07);
  padding-top: 10px;
}

.h3d-old {
  font-size: 14px;
  font-weight: 600;
  color: rgba(255,255,255,0.35);
  text-decoration: line-through;
}

.h3d-price {
  font-size: 24px;
  font-weight: 900;
  color: var(--color-primary);
  text-shadow: 0 0 16px color-mix(in srgb, var(--color-primary) 50%, transparent);
}

.h3d-view {
  margin-left: auto;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.4);
  transition: color 0.3s ease;
}

.h3d-card:hover .h3d-view {
  color: var(--color-primary);
}

/* ── Full hero frame ──────────────────────────────────────── */
.hero-frame {
  inset: 24px;
  border: 1px solid color-mix(in srgb, var(--color-primary) 14%, transparent);
  border-radius: 18px;
  opacity: 0.8;
}

.hero-section:hover .hero-frame {
  border-color: color-mix(in srgb, var(--color-primary) 24%, transparent);
}

/* ── Corner L-bracket decorations ─────────────────────────── */
.hero-corner {
  position: absolute;
  width: 48px;
  height: 48px;
  pointer-events: none;
  opacity: 0.35;
  transition: opacity 1s ease;
}

.hero-section:hover .hero-corner { opacity: 0.55; }

.hero-corner::before,
.hero-corner::after {
  content: '';
  position: absolute;
  background: var(--color-primary);
  border-radius: 2px;
}

/* Horizontal arm */
.hero-corner::before { width: 100%; height: 2px; }
/* Vertical arm */
.hero-corner::after  { width: 2px; height: 100%; }

.hero-corner--tl { top: 24px;    left: 24px;    }
.hero-corner--tl::before { top: 0;    left: 0; }
.hero-corner--tl::after  { top: 0;    left: 0; }

.hero-corner--tr { top: 24px;    right: 24px;   }
.hero-corner--tr::before { top: 0;    right: 0; left: unset; }
.hero-corner--tr::after  { top: 0;    right: 0; left: unset; }

.hero-corner--bl { bottom: 24px; left: 24px;    }
.hero-corner--bl::before { bottom: 0; top: unset; left: 0; }
.hero-corner--bl::after  { bottom: 0; top: unset; left: 0; }

.hero-corner--br { bottom: 24px; right: 24px;   }
.hero-corner--br::before { bottom: 0; top: unset; right: 0; left: unset; }
.hero-corner--br::after  { bottom: 0; top: unset; right: 0; left: unset; }

/* ── Center ring glow ──────────────────────────────────────── */
.hero-ring-glow {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -55%);
  width: min(700px, 90vw);
  height: min(700px, 90vw);
  border-radius: 50%;
  border: 1px solid color-mix(in srgb, var(--color-primary) 12%, transparent);
  box-shadow:
    0 0 60px color-mix(in srgb, var(--color-primary) 6%, transparent),
    inset 0 0 60px color-mix(in srgb, var(--color-primary) 4%, transparent);
  animation: ringPulse 6s ease-in-out infinite;
}

.hero-ring-glow::before {
  content: '';
  position: absolute;
  inset: 30px;
  border-radius: 50%;
  border: 1px solid color-mix(in srgb, var(--color-primary) 7%, transparent);
}

.hero-ring-glow::after {
  content: '';
  position: absolute;
  inset: 70px;
  border-radius: 50%;
  border: 1px solid color-mix(in srgb, var(--color-primary) 4%, transparent);
}

@keyframes ringPulse {
  0%,100% { opacity: 0.5; transform: translate(-50%, -55%) scale(1); }
  50%      { opacity: 1;   transform: translate(-50%, -55%) scale(1.03); }
}

/* ── Horizontal scan / accent lines ───────────────────────── */
.hero-scan-line {
  left: 10%;
  right: 10%;
  height: 1px;
  background: linear-gradient(90deg,
    transparent 0%,
    color-mix(in srgb, var(--color-primary) 15%, transparent) 30%,
    color-mix(in srgb, var(--color-primary) 25%, transparent) 50%,
    color-mix(in srgb, var(--color-primary) 15%, transparent) 70%,
    transparent 100%
  );
  animation: scanSlide 8s ease-in-out infinite alternate;
}

.hero-scan-line--1 { top: 30%; animation-delay: 0s; }
.hero-scan-line--2 { top: 68%; animation-delay: 2s; opacity: 0.5; }

@keyframes scanSlide {
  0%   { opacity: 0.3; transform: scaleX(0.6); }
  50%  { opacity: 1;   transform: scaleX(1); }
  100% { opacity: 0.3; transform: scaleX(0.7); }
}



/* Floating particles */
.hero-particle {
  position: absolute;
  left: var(--x);
  top: var(--y);
  width: var(--s, 4px);
  height: var(--s, 4px);
  border-radius: 50%;
  background: var(--color-primary);
  opacity: 0;
  animation: particleFloat var(--d, 5s) ease-in-out infinite;
  box-shadow: 0 0 6px var(--color-primary);
}

@keyframes particleFloat {
  0%   { opacity: 0; transform: translateY(0); }
  25%  { opacity: 0.6; }
  75%  { opacity: 0.4; }
  100% { opacity: 0; transform: translateY(-40px); }
}

/* Hero image fade */
.hero-image-fade {
  opacity: 0.45;
  transition: opacity 0.6s ease;
}

.hero-section:hover .hero-image-fade {
  opacity: 0.55;
}

/* Hero badge */
.hero-badge {
  font-size: 13px;
  font-weight: 600;
  color: var(--color-primary);
  background: color-mix(in srgb, var(--color-primary) 10%, transparent);
  border: 1px solid color-mix(in srgb, var(--color-primary) 25%, transparent);
  padding: 8px 16px;
  border-radius: 100px;
  letter-spacing: 0.02em;
  backdrop-filter: blur(8px);
  animation: badgePop 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

@keyframes badgePop {
  0%   { opacity: 0; transform: scale(0.85) translateY(-8px); }
  100% { opacity: 1; transform: scale(1) translateY(0); }
}

.hero-badge-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--color-primary);
  box-shadow: 0 0 8px var(--color-primary);
  animation: dotBlink 2s ease-in-out infinite;
}

@keyframes dotBlink {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.4; }
}

.hero-badge-arrow {
  color: var(--color-primary);
}

/* Subtitle line */
.hero-subtitle {
  letter-spacing: 0.18em;
}

/* Hero title */
.hero-title {
  font-size: clamp(48px, 8vw, 96px);
  line-height: 1.02;
}

/* Accent line under title */
.hero-title-line {
  width: 80px;
  height: 4px;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--color-primary), transparent);
  margin-top: 16px;
  box-shadow: 0 0 12px color-mix(in srgb, var(--color-primary) 50%, transparent);
}

/* Primary CTA button */
.hero-btn-primary {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 32px;
  border-radius: 12px;
  background: var(--color-primary);
  color: #000;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.01em;
  text-decoration: none;
  overflow: hidden;
  transition: all 0.35s cubic-bezier(0.23, 1, 0.32, 1);
  box-shadow: 0 8px 24px color-mix(in srgb, var(--color-primary) 35%, transparent);
}

.hero-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 40px color-mix(in srgb, var(--color-primary) 50%, transparent);
  filter: brightness(1.1);
}

.hero-btn-shimmer {
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, transparent 40%, rgba(255,255,255,0.35) 50%, transparent 60%);
  transform: translateX(-100%);
  transition: transform 0.6s ease;
}

.hero-btn-primary:hover .hero-btn-shimmer {
  transform: translateX(100%);
}

/* Secondary CTA button */
.hero-btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 32px;
  border-radius: 12px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.8);
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  backdrop-filter: blur(8px);
  transition: all 0.3s ease;
}

.hero-btn-secondary:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.2);
  color: #fff;
  transform: translateY(-2px);
}

/* Trust indicators */
.hero-trust-divider {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.08), transparent);
}

.hero-trust-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: rgba(255,255,255,0.3);
  white-space: nowrap;
}

.hero-trust-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--color-primary);
  opacity: 0.6;
  box-shadow: 0 0 6px var(--color-primary);
}

/* Scroll indicator */
.hero-scroll-indicator {
  opacity: 0.4;
  animation: fadeInUp 1s ease 1.5s both;
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translate(-50%, 10px); }
  to   { opacity: 0.4; transform: translate(-50%, 0); }
}

.hero-scroll-mouse {
  width: 24px;
  height: 38px;
  border: 2px solid rgba(255,255,255,0.3);
  border-radius: 12px;
  display: flex;
  justify-content: center;
  padding-top: 6px;
}

.hero-scroll-wheel {
  width: 4px;
  height: 8px;
  background: rgba(255,255,255,0.5);
  border-radius: 2px;
  animation: scrollWheel 1.5s ease-in-out infinite;
}

@keyframes scrollWheel {
  0%   { transform: translateY(0); opacity: 1; }
  100% { transform: translateY(12px); opacity: 0; }
}


/* ── Category page ────────────────────────────────────────── */
.category-section {
  min-height: 100vh;
}

/* All spacing lives here — don't rely on arbitrary Tailwind
   utilities, output.css is precompiled and won't include them. */
.category-inner {
  padding-top: 150px;
  padding-bottom: 100px;
}

@media (max-width: 767px) {
  .category-inner {
    padding-top: 120px;
    padding-bottom: 70px;
  }
}

.category-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 14px;
  margin-bottom: 44px;
}

.category-title {
  font-size: clamp(34px, 5vw, 56px);
  font-weight: 900;
  color: #fff;
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin: 0;
}

.category-sub {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.45);
  max-width: 520px;
  line-height: 1.7;
  margin: 0;
}

.category-grid {
  gap: 28px;
  min-height: 50vh;
}

.category-glow {
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.5;
}

.category-glow--top {
  top: -180px;
  left: 50%;
  transform: translateX(-50%);
  width: 700px;
  height: 380px;
  background: color-mix(in srgb, var(--color-primary) 14%, transparent);
}

.category-glow--left {
  top: 35%;
  left: -220px;
  width: 440px;
  height: 440px;
  background: color-mix(in srgb, var(--color-primary) 8%, transparent);
}

.category-glow--right {
  top: 60%;
  right: -220px;
  width: 440px;
  height: 440px;
  background: color-mix(in srgb, var(--color-primary) 8%, transparent);
}

.category-toolbar {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: center;
  gap: 12px;
  max-width: 680px;
  margin: 0 auto 48px;
}

@media (min-width: 768px) {
  .category-toolbar {
    flex-direction: row;
    align-items: center;
  }
}

.category-search-wrap {
  position: relative;
  flex: 1;
  min-width: 0;
}

.category-search-icon {
  position: absolute;
  left: 18px;
  /* No translateY(-50%) — half-pixel transforms render the icon blurry */
  top: calc(50% - 8px);
  pointer-events: none;
  width: 16px;
  height: 16px;
  color: rgba(255, 255, 255, 0.35);
}

.category-search-input {
  width: 100%;
  height: 50px;
  padding: 0 18px 0 52px;
  font-size: 14px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.85);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  outline: none;
  transition: border-color 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
}

.category-search-input::placeholder {
  color: rgba(255, 255, 255, 0.3);
}

.category-search-input:focus {
  border-color: color-mix(in srgb, var(--color-primary) 50%, transparent);
  background: rgba(255, 255, 255, 0.06);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--color-primary) 12%, transparent);
}

/* ── Elite section header (shared) ───────────────────────── */
.elite-section-header {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.elite-section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-primary);
  background: color-mix(in srgb, var(--color-primary) 10%, transparent);
  border: 1px solid color-mix(in srgb, var(--color-primary) 20%, transparent);
  padding: 6px 14px;
  border-radius: 100px;
}

.elite-section-label-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--color-primary);
  box-shadow: 0 0 8px var(--color-primary);
}

.elite-section-title {
  font-size: clamp(30px, 5vw, 54px);
  font-weight: 900;
  color: #fff;
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin: 0;
}

.elite-gradient-text {
  background: linear-gradient(135deg, var(--color-primary), color-mix(in srgb, var(--color-primary) 60%, #818cf8));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.elite-section-sub {
  font-size: 16px;
  color: rgba(255,255,255,0.45);
  max-width: 480px;
  line-height: 1.7;
  margin: 0;
}


/* ── Services cards grid ─────────────────────────────────── */
.elite-services-grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 20px;
}

@media (min-width: 768px) {
  .elite-services-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.elite-service-card {
  position: relative;
  overflow: hidden;
  background: linear-gradient(160deg, rgba(28,28,34,0.9), rgba(18,18,22,0.98));
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 20px;
  padding: 40px 32px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

.elite-service-card--featured {
  border-color: color-mix(in srgb, var(--color-primary) 20%, transparent);
  background: linear-gradient(160deg, rgba(32,32,40,0.95), rgba(18,18,22,0.99));
}

.elite-service-card:hover {
  transform: translateY(-8px);
  border-color: rgba(255,255,255,0.12);
  box-shadow: 0 24px 60px rgba(0,0,0,0.5);
}

.elite-service-card--featured:hover {
  border-color: color-mix(in srgb, var(--color-primary) 35%, transparent);
  box-shadow: 0 24px 60px rgba(0,0,0,0.5),
              0 0 60px color-mix(in srgb, var(--color-primary) 10%, transparent);
}

/* Glow orb behind card */
.elite-service-card-glow {
  position: absolute;
  top: -60px;
  right: -60px;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--glow-color), transparent 70%);
  opacity: 0.08;
  transition: opacity 0.4s ease;
  pointer-events: none;
}

.elite-service-card:hover .elite-service-card-glow {
  opacity: 0.18;
}

/* Icon wrap */
.elite-service-icon-wrap {
  width: 58px;
  height: 58px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: color-mix(in srgb, var(--icon-color) 12%, transparent);
  border: 1px solid color-mix(in srgb, var(--icon-color) 20%, transparent);
  font-size: 22px;
  color: var(--icon-color);
  transition: all 0.3s ease;
  box-shadow: 0 0 20px color-mix(in srgb, var(--icon-color) 15%, transparent);
}

.elite-service-card:hover .elite-service-icon-wrap {
  background: color-mix(in srgb, var(--icon-color) 18%, transparent);
  transform: scale(1.08);
  box-shadow: 0 0 30px color-mix(in srgb, var(--icon-color) 25%, transparent);
}

/* Card number */
.elite-service-number {
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.1);
  font-variant-numeric: tabular-nums;
}

/* Card title */
.elite-service-title {
  font-size: 22px;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.02em;
  margin: 0;
}

/* Card description */
.elite-service-desc {
  font-size: 14px;
  line-height: 1.7;
  color: rgba(255,255,255,0.45);
  margin: 0;
  flex: 1;
}

/* Bottom accent bar */
.elite-service-bar {
  width: 40px;
  height: 3px;
  border-radius: 2px;
  background: var(--bar-color);
  box-shadow: 0 0 8px var(--bar-color);
  transition: width 0.4s ease;
}

.elite-service-card:hover .elite-service-bar {
  width: 70px;
}


/* ── Stats panel ──────────────────────────────────────────── */
.elite-stats-panel {
  position: relative;
  background: linear-gradient(160deg, rgba(22,22,28,0.9), rgba(14,14,18,0.98));
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 24px;
  overflow: hidden;
}

.elite-stats-grid-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
  background-size: 40px 40px;
  pointer-events: none;
}

.elite-stats-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
}

@media (min-width: 768px) {
  .elite-stats-inner {
    grid-template-columns: 1fr auto 1fr auto 1fr;
    align-items: center;
  }
}

.elite-stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 12px;
  padding: 48px 32px;
}

.elite-stat-divider {
  width: 100%;
  height: 1px;
  background: rgba(255,255,255,0.05);
}

@media (min-width: 768px) {
  .elite-stat-divider {
    width: 1px;
    height: 100px;
  }
}

.elite-stat-icon-ring {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  color: var(--color-primary);
  transition: all 0.3s ease;
}

.elite-stat-item:hover .elite-stat-icon-ring {
  background: color-mix(in srgb, var(--color-primary) 12%, transparent);
  border-color: color-mix(in srgb, var(--color-primary) 25%, transparent);
  box-shadow: 0 0 20px color-mix(in srgb, var(--color-primary) 20%, transparent);
  transform: scale(1.1);
}

.elite-stat-value-wrap {
  display: flex;
  align-items: flex-end;
  gap: 2px;
}

.elite-stat-value {
  font-size: clamp(42px, 6vw, 60px);
  font-weight: 900;
  color: #fff;
  line-height: 1;
  letter-spacing: -0.04em;
  font-variant-numeric: tabular-nums;
}

.elite-stat-plus {
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 900;
  color: var(--color-primary);
  line-height: 1.1;
  text-shadow: 0 0 20px color-mix(in srgb, var(--color-primary) 50%, transparent);
}

.elite-stat-label {
  font-size: 14px;
  font-weight: 500;
  color: rgba(255,255,255,0.45);
  letter-spacing: 0.02em;
}

.elite-stat-progress {
  width: 80px;
  height: 3px;
  border-radius: 2px;
  background: rgba(255,255,255,0.06);
  overflow: hidden;
}

.elite-stat-progress-bar {
  height: 100%;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--color-primary), color-mix(in srgb, var(--color-primary) 50%, transparent));
  box-shadow: 0 0 8px color-mix(in srgb, var(--color-primary) 40%, transparent);
  transition: width 1.5s cubic-bezier(0.23, 1, 0.32, 1);
}

/* ── Stats top glow bar ───────────────────────────────── */
.elite-stats-top-glow {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--color-primary), transparent);
  box-shadow: 0 0 20px color-mix(in srgb, var(--color-primary) 50%, transparent);
}

/* Make stat icon rings larger and more visible */
.elite-stat-icon-ring {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.09);
  color: var(--color-primary);
  transition: all 0.35s ease;
}
.elite-stat-icon-ring svg {
  width: 26px;
  height: 26px;
}
.elite-stat-item:hover .elite-stat-icon-ring {
  background: color-mix(in srgb, var(--color-primary) 12%, transparent);
  border-color: color-mix(in srgb, var(--color-primary) 30%, transparent);
  box-shadow: 0 0 24px color-mix(in srgb, var(--color-primary) 25%, transparent);
  transform: scale(1.12);
}

/* ── Hero horizontal accent lines ─────────────────────── */
.hero-h-line {
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg,
    transparent 0%,
    rgba(255,255,255,0.06) 20%,
    rgba(255,255,255,0.1) 50%,
    rgba(255,255,255,0.06) 80%,
    transparent 100%
  );
}
.hero-h-line--top    { top: 100px; }
.hero-h-line--bottom { bottom: 80px; }

/* ── Hero centered title variant ──────────────────────── */
.hero-title--center {
  font-size: clamp(50px, 8.5vw, 104px);
  text-align: center;
  letter-spacing: -0.045em;
  /* White-to-brand gradient with a soft halo instead of flat white */
  background: linear-gradient(180deg,
    #ffffff 20%,
    #e8e7ff 55%,
    color-mix(in srgb, var(--color-primary) 75%, #fff) 100%
  );
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  filter: drop-shadow(0 0 36px color-mix(in srgb, var(--color-primary) 30%, transparent));
}

/* ── Hero trust bar (mini stats strip) ────────────────── */
/* ── Minimal hero stat strip (replaces old trust bar) ─── */
.hero-stat-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}

.hero-stat-strip-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 0 40px;
}

@media (max-width: 640px) {
  .hero-stat-strip-item { padding: 8px 20px; }
}

/* Number + plus sign on same line */
.hero-stat-strip-row {
  display: inline-flex;
  align-items: baseline;
  gap: 2px;
  line-height: 1;
}

.hero-stat-strip-num {
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 900;
  color: #fff;
  letter-spacing: -0.05em;
  line-height: 1;
  font-variant-numeric: tabular-nums;
}

.hero-stat-strip-plus {
  font-size: clamp(22px, 3vw, 30px);
  font-weight: 900;
  color: var(--color-primary);
  text-shadow: 0 0 18px color-mix(in srgb, var(--color-primary) 55%, transparent);
  line-height: 1;
  margin-left: 2px;
}

.hero-stat-strip-label {
  font-size: 11px;
  font-weight: 600;
  color: rgba(255,255,255,0.35);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-stat-strip-div {
  width: 1px;
  height: 36px;
  background: rgba(255,255,255,0.08);
  flex-shrink: 0;
  align-self: center;
}

@media (max-width: 640px) {
  .hero-stat-strip-div { display: none; }
}

/* ── Scroll indicator ─────────────────────────────────── */
.hero-scroll-indicator {
  opacity: 0.35;
  animation: fadeInUpScroll 1s ease 1.8s both;
}

@keyframes fadeInUpScroll {
  from { opacity: 0; transform: translate(-50%, 12px); }
  to   { opacity: 0.35; transform: translate(-50%, 0); }
}

.hero-scroll-mouse {
  width: 24px;
  height: 38px;
  border: 1.5px solid rgba(255,255,255,0.25);
  border-radius: 12px;
  display: flex;
  justify-content: center;
  padding-top: 6px;
}

.hero-scroll-wheel {
  width: 4px;
  height: 8px;
  background: rgba(255,255,255,0.5);
  border-radius: 2px;
  animation: scrollWheelAnim 1.6s ease-in-out infinite;
}

@keyframes scrollWheelAnim {
  0%   { transform: translateY(0); opacity: 1; }
  100% { transform: translateY(12px); opacity: 0; }
}



body {
  margin: 0;
  overflow-x: hidden;
}


*, html {

    scroll-behavior: smooth !important;
}

::-webkit-scrollbar {
  width: 4px;
  background-color: transparent;
}
::-webkit-scrollbar-thumb {
  background-color: #ffb53d;
}




.bg-image {

  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  opacity: 0.05;
  z-index: -1;
  position: absolute;
  top: -40px;
  left: 0;
  width: 100%;
  height: 30%;
  overflow: scroll;
}

.social-icons a i {
  transition: fill 0.2s, color 0.2s;
  fill: #ffffff17;
}
.social-icons a:hover i,
.social-icons a:focus i {
  fill: var(--color-primary); /* Tailwind red-500 */
  color: var(--color-primary);
}
/* for SVGs using only currentColor */
.social-icons a i  {
  transition: fill 0.2s;
}
.social-icons a:hover i ,
.social-icons a:focus i  {
  fill: var(--color-primary);
}

.flex-center {
  display: flex;
  align-items: center;
  justify-content: center;
}


.gradient-btn {
	position: relative;
	overflow: hidden;
}
.gradient-btn::before {
	content: '';
	position: absolute;
	top: -50%;
	left: -50%;
	width: 200%;
	height: 200%;
	background: linear-gradient(
		to right,
		transparent,
		rgba(255, 255, 255, 0.5),
		transparent
	);
	transform: rotate(60deg);
	transition: transform 1s;
	transform: translate(-100%, -100%);
}
.gradient-btn:hover::before {
	transform: translate(100%, 100%);
}

.absolute-center {
    position: absolute;
    top: calc(1/2 * 100%);
    left: calc(1/2 * 100%);
    --tw-translate-x: calc(calc(1/2 * 100%) * -1);
    --tw-translate-y: calc(calc(1/2 * 100%) * -1);
    translate: var(--tw-translate-x) var(--tw-translate-y);
}


input:focus {
  outline: none;
  border: none;
}

input:focus-visible {
  outline: none;
  border: none;
}

input {
  outline: none;
  border: none;
}

/* Swiper Slider Custom Styles */ 
.swiper-slide {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--dark-color-secondary);
}

.packageMainSwiper .swiper-slide {
  overflow: hidden;
}

.packageMainSwiper .swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
}

.packageThumbsSwiper .swiper-slide {
  opacity: 0.2;
  transition: opacity 0.3s ease, border 0.3s ease;
  cursor: pointer;
  border: 2px solid transparent;
}

.packageThumbsSwiper .swiper-slide-thumb-active { 
  opacity: 1 !important;
  border-color: var(--color-primary) !important;
}

.packageThumbsSwiper .swiper-slide:hover {
  opacity: 0.8;
}

.swiper-button-next,
.swiper-button-prev {
  background: rgba(22, 22, 26, 0.8) !important;
  width: 40px !important; 
  height: 40px !important;
  border-radius: 50% !important;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
  background-color: var(--color-primary) !important;
}

.swiper-button-next:after, 
.swiper-button-prev:after {
  font-size: 16px !important;
  color: #fff;
}

@media (max-width: 768px) {
  .swiper-button-next,
  .swiper-button-prev {
    width: 30px !important;
    height: 30px !important;
  }

  .swiper-button-next:after,
  .swiper-button-prev:after {
    font-size: 12px !important;
  }
}

.scrollbar-hide {
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.scrollbar-hide::-webkit-scrollbar {
  display: none;
}



.loading-data {
	width: 50px;
	padding: 8px;
	aspect-ratio: 1;
	border-radius: 50%;
	background: var(--color-primary);
	--_m: conic-gradient(#0000 10%, #000), linear-gradient(#000 0 0) content-box;
	-webkit-mask: var(--_m);
	mask: var(--_m);
	-webkit-mask-composite: source-out;
	mask-composite: subtract;
	animation: l3 1s infinite linear;
}
@keyframes l3 {
	to {
		transform: rotate(1turn);
	}
}


.btn-loading {
	width: 24px;
	height: 24px;
	border-radius: 50%;
	position: relative;
	animation: rotate1 1s linear infinite;
}
.btn-loading::before {
	content: '';
	box-sizing: border-box;
	position: absolute;
	inset: 0px;
	border-radius: 50%;
	border: 3px solid #16161A;
	animation: prixClipFix 2s linear infinite;
}


.bg-delete {
    background-color: #D84141;
} 


.bg-primary {
background-color: var(--color-primary) !important;
}


@keyframes rotate1 {
	100% {
		transform: rotate(360deg);
	}
}

@keyframes prixClipFix {
	0% {
		clip-path: polygon(50% 50%, 0 0, 0 0, 0 0, 0 0, 0 0); 
	}
	25% {
		clip-path: polygon(50% 50%, 0 0, 100% 0, 100% 0, 100% 0, 100% 0);
	}
	50% {
		clip-path: polygon(50% 50%, 0 0, 100% 0, 100% 100%, 100% 100%, 100% 100%);
	}
	75% {
		clip-path: polygon(50% 50%, 0 0, 100% 0, 100% 100%, 0 100%, 0 100%);
	}
	100% {
		clip-path: polygon(50% 50%, 0 0, 100% 0, 100% 100%, 0 100%, 0 0);
	}
}


.colored-toast.swal2-icon-success {
	background-color: #a5dc86 !important;
}

.colored-toast.swal2-icon-error {
	background-color: #f27474 !important;
}

.colored-toast.swal2-icon-warning {
	background-color: #f8bb86 !important;
}

.colored-toast.swal2-icon-info {
	background-color: #3fc3ee !important;
}

.colored-toast.swal2-icon-question {
	background-color: #87adbd !important;
}

.colored-toast .swal2-title {
	color: white;
}

.colored-toast .swal2-close {
	color: white;
}

.colored-toast .swal2-html-container {
	color: white;
}




.Btn {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgb(255 255 255 / 1%);
  border: solid 1.5px #ffffff03;
  font-weight: 600;
  gap: 8px;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition-duration: .3s;
}

.Btn path {
	fill: #ffffff5c;
	transition: all;
	transition-duration: 300ms;
}


.Btn:hover path {
	fill: var(--dark-color-secondary);
}


.Btn::before {
  width: 100%;
  height: 200px;
  position: absolute;
  content: "";
  background-color: var(--color-primary);
  border-radius: 50%;
  left: -100%;
  top: 0;
  z-index:1;
  transition-duration: .3s;
}

.Btn:hover::before {
  transition-duration: .3s;
  transform: translate(100%,-50%);
  border-radius: 0;
	
}

.Btn:active {
  transform: translate(5px,5px);
  transition-duration: .3s;
}

.Btn:hover {
	box-shadow: 5px 5px 10px rgb(36 36 36 / 24%);
	color: var(--dark-color-secondary)
}




@keyframes scaleUpDown {
  0%, 100% {
    transform: scaleY(1) scaleX(1);
  }

  50%, 90% {
    transform: scaleY(1.1);
  }

  75% {
    transform: scaleY(0.95);
  }

  80% {
    transform: scaleX(0.95);
  }
}

@keyframes shake {
  0%, 100% {
    transform: skewX(0) scale(1);
  }

  50% {
    transform: skewX(5deg) scale(0.9);
  }
}

@keyframes particleUp {
  0% {
    opacity: 0;
  }

  20% {
    opacity: 1;
  }

  80% {
    opacity: 1;
  }

  100% {
    opacity: 0;
    top: -100%;
    transform: scale(0.5);
  }
}

@keyframes glow {
  0%, 100% {
    background-color: #ef5a00;
  }

  50% {
    background-color: #ff7800;
  }
}

.fire {
  position: absolute;
  top: calc(8% - 50px);
  left: calc(100% - 50px);
  width: 35px;
  height: 35px;
  background-color: transparent;
  margin-left: auto;
  margin-right: auto;
}

.fire-center {
  position: absolute;
  height: 100%;
  width: 100%;
  animation: scaleUpDown 3s ease-out;
  animation-iteration-count: infinite;
  animation-fill-mode: both;
}

.fire-center .main-fire {
  position: absolute;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(farthest-corner at 10px 0, #d43300 0%, #ef5a00 95%);
  transform: scaleX(0.8) rotate(45deg);
  border-radius: 0 40% 60% 40%;
}

.fire-center .particle-fire {
  position: absolute;
  top: 60%;
  left: 45%;
  width: 10px;
  height: 10px;
  background-color: #ef5a00;
  border-radius: 50%;
  animation: particleUp 2s ease-out 0;
  animation-iteration-count: infinite;
  animation-fill-mode: both;
}

.fire-right {
  height: 100%;
  width: 100%;
  position: absolute;
  animation: shake 2s ease-out 0;
  animation-iteration-count: infinite;
  animation-fill-mode: both;
}

.fire-right .main-fire {
  position: absolute;
  top: 15%;
  right: -25%;
  width: 80%;
  height: 80%;
  background-color: #ef5a00;
  transform: scaleX(0.8) rotate(45deg);
  border-radius: 0 40% 60% 40%;
}

.fire-right .particle-fire {
  position: absolute;
  top: 45%;
  left: 50%;
  width: 15px;
  height: 15px;
  background-color: #ef5a00;
  transform: scaleX(0.8) rotate(45deg);
  border-radius: 50%;
  animation: particleUp 2s ease-out 0;
  animation-iteration-count: infinite;
  animation-fill-mode: both;
}

.fire-left {
  position: absolute;
  height: 100%;
  width: 100%;
  animation: shake 3s ease-out 0;
  animation-iteration-count: infinite;
  animation-fill-mode: both;
}

.fire-left .main-fire {
  position: absolute;
  top: 15%;
  left: -20%;
  width: 80%;
  height: 80%;
  background-color: #ef5a00;
  transform: scaleX(0.8) rotate(45deg);
  border-radius: 0 40% 60% 40%;
}

.fire-left .particle-fire {
  position: absolute;
  top: 10%;
  left: 20%;
  width: 10%;
  height: 10%;
  background-color: #ef5a00;
  border-radius: 50%;
  filter: drop-shadow(0 0 10px #d43322);
  animation: particleUp 3s infinite ease-out 0;
  animation-fill-mode: both;
}

.fire-bottom .main-fire {
  position: absolute;
  top: 30%;
  left: 20%;
  width: 75%;
  height: 75%;
  background-color: #ff7800;
  transform: scaleX(0.8) rotate(45deg);
  border-radius: 0 40% 100% 40%;
  filter: blur(10px);
  animation: glow 2s ease-out 0;
  animation-iteration-count: infinite;
  animation-fill-mode: both;
}




.package-description {
	--tw-text-opacity: 1;
	color: rgba(240,236,226,var(--tw-text-opacity));
	-webkit-text-decoration: none;
	text-decoration: none;
	text-transform: none;
	font-weight: 400
}

.package-description :not(:last-child) {
	margin-bottom: .85rem !important;
}

.package-description h1,.package-description h2,.package-description h3,.package-description h4 {
	margin-top: 1.5rem;
	margin-bottom: 1rem;
	--tw-text-opacity: 1;
	color: rgba(255,252,245,var(--tw-text-opacity));
	font-style: normal;
	-webkit-text-decoration: none;
	text-decoration: none;
	text-transform: capitalize;
	font-weight: 700
}

.package-description a {
	--tw-text-opacity: 1;
	color: var(--color-primary);
	transition-timing-function: cubic-bezier(.4,0,.2,1);
	transition-duration: .15s
}

.package-description a:hover {
	--tw-text-opacity: 1;
	text-decoration-line: underline !important;
	color: var(--color-primary);
}

.package-description b {
	--tw-text-opacity: 1;
	color: rgba(255,252,245,var(--tw-text-opacity))
}

.package-description ol li,.package-description ul li {
	position: relative;
	padding-left: 2ch;
	--tw-text-opacity: 1;
	color: rgba(240,236,226,var(--tw-text-opacity))
}

.package-description ul li:before {
	content: "";
	position: absolute;
	left: 0;
	top: .5rem;
	height: .5rem;
	width: .5rem;
	border-radius: .5rem;
	--tw-bg-opacity: 1;
	background-color: var(--color-primary);
}

.package-description ol {
	counter-reset: ol-counter
}

.package-description ol li {
	counter-increment: ol-counter
}

.package-description ol li:before {
	content: counter(ol-counter) ". ";
	position: absolute;
	left: 0;
	font-weight: 700;
	--tw-text-opacity: 1;
	color: var(--color-primary);
}

.package-description img {
	max-width: 100%;
}


.package-description hr {
	color:white;
	opacity: 0.1;
}

.package-description img.fr-rounded {
	border-radius: calc(.5rem*.85)
}

.package-description img.fr-shadow {
	--tw-shadow: 0 10px 15px -3px #0000001a,0 4px 6px -4px #0000001a;
	--tw-shadow-colored: 0 10px 15px -3px var(--tw-shadow-color),0 4px 6px -4px var(--tw-shadow-color);
	box-shadow: var(--tw-ring-offset-shadow,0 0 #0000),var(--tw-ring-shadow,0 0 #0000),var(--tw-shadow);
	--tw-shadow-color: #0000004d;
	--tw-shadow: var(--tw-shadow-colored)
}

.package-description img.fr-bordered {
	border-width: 2px;
	--tw-border-opacity: 1;
	border-color: rgba(31,94,255,var(--tw-border-opacity))
}

.package-description iframe {
	aspect-ratio: 16/9;
	height: 100%;
	width: 100%;
	border-radius: calc(.5rem*.85)
}



@keyframes pulse-subtle {
0%,
100% {
  transform: scale(1);
  box-shadow: 0 10px 25px -5px rgba(239, 68, 68, 0.3);
}
50% {
  transform: scale(1.05);
  box-shadow: 0 15px 30px -5px rgba(239, 68, 68, 0.5);
}
}
@keyframes gradient {
0%,
100% {
  background-position: 0% 50%;
}
50% {
  background-position: 100% 50%;
}
}
.animate-pulse-subtle {
animation: pulse-subtle 2s ease-in-out infinite;
}
.animate-gradient {
background-size: 200% 200%;
animation: gradient 3s ease infinite;
}


/* ═══════════════════════════════════════════════════════
   PACKAGE CARD  –  Redesign  (uses --color-primary)
   ═══════════════════════════════════════════════════════ */

/* Card base */
.pkg-card {
  height: 100%;
  background: linear-gradient(180deg, rgba(30, 30, 35, 0.8) 0%, rgba(22, 22, 26, 0.95) 100%);
  border: 1px solid rgba(255, 255, 255, 0.05);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  cursor: pointer;
  display: flex;
  flex-direction: column;
}

.pkg-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px -12px rgba(0, 0, 0, 0.55);
  border-color: color-mix(in srgb, var(--color-primary) 35%, transparent);
}

.pkg-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top right, color-mix(in srgb, var(--color-primary) 8%, transparent), transparent 70%);
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}

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

/* Image zoom on hover */
.pkg-img {
  transition: transform 0.55s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}
.pkg-card:hover .pkg-img {
  transform: scale(1.03);
}

/* Image overlay — keeps top-corner badges readable + smooth blend into body */
.pkg-img-shade {
  background:
    linear-gradient(180deg, rgba(0,0,0,0.45) 0%, rgba(0,0,0,0) 28%),
    linear-gradient(0deg, rgba(13,11,21,0.95) 0%, rgba(13,11,21,0) 38%);
}

/* Bottom accent bar */
.pkg-accent-bar {
  background: linear-gradient(90deg,
    var(--color-primary) 0%,
    color-mix(in srgb, var(--color-primary) 50%, transparent) 60%,
    transparent 100%);
  opacity: 0;
  transition: opacity 0.35s ease;
}
.pkg-card:hover .pkg-accent-bar {
  opacity: 1;
}

/* ── Framework tags (color-tinted, minimal) ────────────── */
.pkg-card .package-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.pkg-tag {
  --tc: var(--tag-dot-color, var(--color-primary));
  display: inline-flex;
  align-items: center;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  padding: 5px 9px;
  border-radius: 5px;
  color: color-mix(in srgb, var(--tc) 80%, #fff);
  background: color-mix(in srgb, var(--tc) 11%, transparent);
  border: 1px solid color-mix(in srgb, var(--tc) 22%, transparent);
  line-height: 1;
}

/* ── Tops badge (single glass pill, top-right of image) ── */
.pkg-card .package-tops span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  padding: 6px 11px;
  border-radius: 100px;
  background: rgba(10, 10, 14, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.92);
  line-height: 1;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.pkg-card .package-tops span::before {
  content: '';
  display: inline-block;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--color-primary);
  box-shadow: 0 0 6px var(--color-primary);
  flex-shrink: 0;
}

/* ── Price block ───────────────────────────────────────── */
.pkg-body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 18px 20px 20px;
}

.pkg-price-row {
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  display: flex;
  flex-direction: column;
  gap: 7px;
  margin-top: auto;
  padding-top: 16px;
}

.pkg-price-block {
  line-height: 1;
  gap: 7px;
}

.pkg-price-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
  line-height: 1;
}

.pkg-price-old {
  font-size: 13px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.32);
  text-decoration: line-through;
}

.pkg-price-value {
  font-size: 23px;
  font-weight: 800;
  letter-spacing: -0.5px;
  line-height: 1;
  color: #fff;
  transition: color 0.3s ease, text-shadow 0.3s ease;
}

.pkg-card:hover .pkg-price-value {
  color: color-mix(in srgb, var(--color-primary) 78%, white);
  text-shadow: 0 0 18px color-mix(in srgb, var(--color-primary) 35%, transparent);
}

.pkg-price-free {
  color: #2ecc71;
}

.pkg-card:hover .pkg-price-free {
  color: #43e08a;
  text-shadow: 0 0 18px rgba(46, 204, 113, 0.35);
}

/* ── Legacy price badge (used by hero.twig) ────────────── */
.pkg-price-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #34D399;
  line-height: 1;
  transition: all 0.3s ease;
  width: fit-content;
  text-shadow: 0 0 15px rgba(52, 211, 153, 0.3);
}

.pkg-free-badge {
  color: var(--color-primary);
  text-shadow: 0 0 15px color-mix(in srgb, var(--color-primary) 30%, transparent);
}

/* ── Button slide-up on hover ──────────────────────────── */
/* Overlays the bottom of the card on hover — card height never changes */
.pkg-btn-wrap {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 36px 14px 14px;
  background: linear-gradient(180deg, rgba(13, 11, 21, 0) 0%, rgba(13, 11, 21, 0.96) 48%);
  opacity: 0;
  transform: translateY(10px);
  pointer-events: none;
  transition: opacity 0.28s ease, transform 0.28s ease;
}

.pkg-card:hover .pkg-btn-wrap {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.pkg-btn {
  position: relative;
  overflow: hidden;
  background: color-mix(in srgb, var(--color-primary) 10%, transparent);
  border: 1px solid color-mix(in srgb, var(--color-primary) 28%, transparent);
  color: var(--color-primary);
  transition: background 0.22s, border-color 0.22s, color 0.22s, box-shadow 0.22s;
}

.pkg-btn:hover {
  background: var(--color-primary);
  border-color: var(--color-primary);
  color: var(--dark-color-primary);
  box-shadow: 0 0 20px color-mix(in srgb, var(--color-primary) 45%, transparent);
}

.pkg-btn path {
  fill: var(--color-primary);
  transition: fill 0.22s;
}
.pkg-btn:hover path {
  fill: var(--dark-color-primary);
}

/* ── Package detail page tags ──────────────────────────── */
.pkg-page-tag {
  background: color-mix(in srgb, var(--color-primary) 12%, transparent);
  border: 1px solid color-mix(in srgb, var(--color-primary) 28%, transparent);
  color: var(--color-primary);
}

/* ── line-clamp ────────────────────────────────────────── */
.line-clamp-2 {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}


/* ============================================================
   TEBEX DESCRIPTION PRESETS
   Tebex HTML editöründe şu yapıları kullanarak özel görünümler elde edebilirsiniz:

   1. FEATURE GRID (Özellik Kartları):
      <table>
        <tr>
          <td><strong>🚀 Özellik Adı</strong><br>Açıklama metni buraya</td>
          <td><strong>⚙️ Başka Özellik</strong><br>Açıklama metni buraya</td>
        </tr>
        <tr>
          <td><strong>🎵 Özellik</strong><br>Açıklama metni</td>
          <td><strong>📅 Özellik</strong><br>Açıklama metni</td>
        </tr>
      </table>

   2. INFO BOX (Bilgi Kutusu):
      <blockquote>Bu bir bilgi kutusudur, önemli notlar için kullanın.</blockquote>

   3. BADGE/ETİKET:
      <code>v1.0.0</code>  veya  <code>FiveM</code>

   4. BÖLÜM AYRAÇ:
      <hr>
   ============================================================ */

/* Feature Grid - <table> → kart grid */
.package-description table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  margin: 1.2rem 0;
}

.package-description table tr {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 12px;
}

.package-description table tr:last-child {
  margin-bottom: 0;
}

.package-description table td {
  flex: 1 1 200px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 12px;
  padding: 16px 18px;
  vertical-align: top;
  color: rgba(240, 236, 226, 0.85);
  font-size: 14px;
  line-height: 1.6;
}

.package-description table td strong {
  display: block;
  color: #fff;
  font-size: 15px;
  margin-bottom: 6px;
}

/* Info Box - <blockquote> */
.package-description blockquote {
  border-left: 3px solid var(--color-primary);
  padding: 14px 18px;
  margin: 1.2rem 0;
  background: rgba(255, 255, 255, 0.04);
  border-radius: 0 10px 10px 0;
  color: rgba(240, 236, 226, 0.8);
  font-size: 14px;
  line-height: 1.6;
}

/* Badge - <code> */
.package-description code {
  background: var(--color-primary);
  color: var(--dark-color-primary);
  padding: 3px 10px;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 700;
  font-family: inherit;
  letter-spacing: 0.3px;
}

/* Mobile: feature grid tek kolon */
@media (max-width: 480px) {
  .package-description table td {
    flex: 1 1 100%;
  }
}


/* ============================================================
   MOBILE RESPONSIVE FIXES
   ============================================================ */

/* Taşma engelleyici */
@media (max-width: 768px) {
  .container {
    max-width: 100%;
  }

  /* Package page - slider ve action panel sıralaması */
  .package-page > div:first-child {
    gap: 15px;
  }

  /* Package detail butonları mobile */
  .package-page .product-actions {
    flex-wrap: wrap;
  }

  /* Package detail butonları dar ekranda */
  .package-page .product-actions .package-add-to-cart {
    flex: 1;
    min-width: 0;
  }

  /* Hero section mobile padding */
  .hero-section {
    padding-left: 16px;
    padding-right: 16px;
  }
}

/* Yatay taşmayı engelle */
html {
  overflow-x: hidden;
}


/* ═══════════════════════════════════════════════════════
   FEATURED PRODUCTS SECTION — CYLEX STYLE
   ═══════════════════════════════════════════════════════ */

.featured-products-section {
  position: relative;
}

/* Background watermark text */
.featured-watermark {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -55%);
  font-size: clamp(55px, 11vw, 130px);
  font-weight: 900;
  letter-spacing: 0.08em;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.04);
  white-space: nowrap;
  pointer-events: none;
  user-select: none;
  z-index: 0;
}

/* "Featured Products" title */
.featured-title {
  position: relative;
  z-index: 1;
  font-size: clamp(22px, 4vw, 34px);
  font-weight: 700;
  color: #fff;
  margin: 0 0 14px;
}

/* Neon green underline */
.featured-underline {
  position: relative;
  z-index: 1;
  width: 72px;
  height: 3px;
  background: var(--color-primary);
  margin: 0 auto;
  border-radius: 2px;
  box-shadow: 0 0 8px var(--color-primary),
              0 0 22px color-mix(in srgb, var(--color-primary) 45%, transparent);
}

/* ── Featured Swiper wrapper ───────────────────────────── */
.featured-swiper-wrapper {
  padding: 10px 0 54px;
  position: relative;
}

.featuredSwiper {
  overflow: visible !important;
}

/* Non-active slides: dimmed + scaled down */
.featuredSwiper .swiper-slide {
  transition: transform 0.4s ease, opacity 0.4s ease;
  opacity: 0.45;
  transform: scale(0.91);
}

/* Active center slide: full opacity + full scale */
.featuredSwiper .swiper-slide-active {
  opacity: 1 !important;
  transform: scale(1) !important;
}

/* Static grid mode (all slides visible): every card is full-weight, no peek-dim.
   Emphasis comes from hover, not from killing the neighbours. */
.featuredSwiper.featured-static .swiper-slide {
  opacity: 1 !important;
  transform: none !important;
}

/* Center card: green left glow like Cylex */
.featuredSwiper .swiper-slide-active .pkg-card {
  border-color: color-mix(in srgb, var(--color-primary) 40%, transparent) !important;
  box-shadow: -3px 0 28px color-mix(in srgb, var(--color-primary) 22%, transparent),
              0 8px 40px rgba(0, 0, 0, 0.6),
              0 0 0 1px color-mix(in srgb, var(--color-primary) 20%, transparent);
}

/* In static grid mode the first slide is "active" but shouldn't look special —
   keep all three identical until hovered. */
.featuredSwiper.featured-static .swiper-slide-active .pkg-card {
  border-color: rgba(255, 255, 255, 0.06) !important;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3) !important;
}
.featuredSwiper.featured-static .swiper-slide .pkg-card:hover {
  border-color: color-mix(in srgb, var(--color-primary) 38%, transparent) !important;
  box-shadow: 0 18px 44px -12px rgba(0, 0, 0, 0.7),
              0 0 0 1px color-mix(in srgb, var(--color-primary) 22%, transparent),
              0 0 34px -6px color-mix(in srgb, var(--color-primary) 30%, transparent) !important;
}

/* Navigation buttons */
.featured-swiper-btn {
  background: rgba(8, 8, 10, 0.85) !important;
  border: 1px solid rgba(255, 255, 255, 0.09) !important;
  width: 44px !important;
  height: 44px !important;
  border-radius: 50% !important;
  transition: border-color 0.25s, background 0.25s !important;
}

.featured-swiper-btn:hover {
  border-color: color-mix(in srgb, var(--color-primary) 55%, transparent) !important;
  background: color-mix(in srgb, var(--color-primary) 10%, rgba(8,8,10,0.9)) !important;
}

.featured-swiper-btn::after {
  font-size: 15px !important;
}

/* Pagination dots */
.featured-pagination {
  bottom: 16px !important;
  position: absolute;
}

.featured-pagination .swiper-pagination-bullet {
  background: rgba(255, 255, 255, 0.22);
  opacity: 1;
  transition: width 0.3s, background 0.3s;
}

.featured-pagination .swiper-pagination-bullet-active {
  background: var(--color-primary);
  width: 18px;
  border-radius: 3px;
  box-shadow: 0 0 6px var(--color-primary);
}

/* ── VIEW DETAILS button (featured slides only) ────────── */
.pkg-view-details-wrap {
  display: none;
}

.featured-slide .pkg-view-details-wrap {
  display: block;
  padding: 0 14px 14px;
}

/* Hide the hover Add-to-Cart in featured slides */
.featured-slide .pkg-btn-wrap {
  display: none !important;
}

.pkg-view-details-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 13px;
  border: 1.5px solid color-mix(in srgb, var(--color-primary) 35%, transparent);
  border-radius: 10px;
  color: rgba(255, 255, 255, 0.92);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
  background: color-mix(in srgb, var(--color-primary) 8%, rgba(0, 0, 0, 0.35));
  transition: background 0.25s ease, border-color 0.25s ease,
              box-shadow 0.25s ease, color 0.25s ease;
  cursor: pointer;
}

.pkg-view-details-arrow {
  display: inline-block;
  transition: transform 0.25s ease;
}

/* In the static grid every card's button is idle until hovered;
   keep the active-slide auto-highlight only for the real carousel. */
.featured-slide:hover .pkg-view-details-btn,
.featuredSwiper:not(.featured-static) .swiper-slide-active .pkg-view-details-btn {
  border-color: var(--color-primary);
  background: var(--color-primary);
  color: var(--dark-color-primary, #0c0a14);
  box-shadow: 0 8px 24px -6px color-mix(in srgb, var(--color-primary) 55%, transparent);
}

.featured-slide:hover .pkg-view-details-arrow,
.featuredSwiper:not(.featured-static) .swiper-slide-active .pkg-view-details-arrow {
  transform: translateX(4px);
}

/* ── VIEW ALL PACKAGES button ──────────────────────────── */
.view-all-packages-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 36px;
  border: 1.5px solid color-mix(in srgb, var(--color-primary) 60%, transparent);
  border-radius: 40px;
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  text-decoration: none;
  background: transparent;
  cursor: pointer;
  transition: background 0.3s, border-color 0.3s, box-shadow 0.3s;
}

.view-all-packages-btn:hover {
  border-color: var(--color-primary);
  background: color-mix(in srgb, var(--color-primary) 10%, transparent);
  box-shadow: 0 0 22px color-mix(in srgb, var(--color-primary) 25%, transparent);
}

.view-all-packages-btn .btn-arrow {
  display: inline-block;
  transition: transform 0.3s;
}

.view-all-packages-btn:hover .btn-arrow {
  transform: translateX(6px);
}

/* ── SAVE badge ────────────────────────────────────────── */
.pkg-save-badge {
  display: inline-flex;
  align-items: center;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.5px;
  padding: 5px 10px;
  border-radius: 8px;
  background: color-mix(in srgb, var(--color-primary) 15%, transparent);
  border: 1px solid color-mix(in srgb, var(--color-primary) 30%, transparent);
  color: var(--color-primary);
  white-space: nowrap;
  box-shadow: 0 2px 8px color-mix(in srgb, var(--color-primary) 20%, transparent);
  transition: all 0.3s ease;
}

.pkg-card:hover .pkg-save-badge {
  background: var(--color-primary);
  color: #fff;
  transform: rotate(2deg);
}

/* ── Discount badge on image (Cylex red) ───────────────── */
.pkg-discount-badge {
  background: #e53e3e;
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  padding: 3px 9px;
  border-radius: 6px;
  letter-spacing: 0.2px;
  line-height: 1.4;
}

/* ── Price main (large featured price) ─────────────────── */
.pkg-price-main {
  font-size: 18px !important;
  font-weight: 800 !important;
  padding: 6px 14px !important;
}

/* ── Package description in cards ──────────────────────── */
.pkg-description {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin: 0;
  opacity: 0.6;
  transition: opacity 0.3s ease;
}

.pkg-card:hover .pkg-description {
  opacity: 1;
}

/* ── Hot Packages Branding ── */
.hot-badge {
  background: rgba(239, 68, 68, 0.1) !important;
  border-color: rgba(239, 68, 68, 0.3) !important;
  color: #ef4444 !important;
}

.hot-badge-fire {
  font-size: 14px;
  margin-right: 4px;
  animation: fire-pulse 1.5s ease-in-out infinite;
}

@keyframes fire-pulse {
  0%, 100% { transform: scale(1); filter: drop-shadow(0 0 0px #ef4444); }
  50% { transform: scale(1.2); filter: drop-shadow(0 0 8px #ef4444); }
}

.featured-slide-active .pkg-card {
  border-color: rgba(239, 68, 68, 0.4) !important;
  box-shadow: 0 0 30px rgba(239, 68, 68, 0.15) !important;
}

.hot-glow-orb {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(239, 68, 68, 0.08) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}
/* ── Mobile navbar overflow fix ───────────────────────────
   On small screens the currency picker + login + hamburger
   don't fit next to the logo; currency already lives inside
   the mobile menu, so hide the navbar copy. */
@media (max-width: 640px) {
  .xn-currency-wrap { display: none; }
}
@media (max-width: 420px) {
  .xn-logo-slug { display: none; }
}
