/* ==========================================================================
   XNIXA - Components Stylesheet
   Navbar, Footer, Product Cards, Cart Drawer, Checkout, Modals, Toasts
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. STICKY NAVBAR
   -------------------------------------------------------------------------- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  transition: var(--transition-smooth);
}

.site-header.scrolled {
  background: rgba(6, 6, 9, 0.88);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(160, 158, 181, 0.12);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.navbar-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}

.brand-logo-link {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.brand-logo-img {
  height: 48px;
  width: auto;
  filter: drop-shadow(0 0 12px rgba(176, 38, 255, 0.4));
  transition: var(--transition-smooth);
}

.brand-logo-link:hover .brand-logo-img {
  filter: drop-shadow(0 0 18px rgba(0, 240, 255, 0.7));
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-link {
  font-family: var(--font-main);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-muted);
  position: relative;
  padding: 6px 0;
}

.nav-link:hover, .nav-link.active {
  color: #FFFFFF;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--grad-brand);
  transition: var(--transition-smooth);
  border-radius: 2px;
}

.nav-link:hover::after, .nav-link.active::after {
  width: 100%;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

.icon-btn {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-subtle);
  color: var(--text-pure);
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  position: relative;
  transition: var(--transition-bounce);
}

.icon-btn:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: var(--neon-purple-bright);
  color: var(--neon-cyan);
  transform: translateY(-2px);
}

.badge-count {
  position: absolute;
  top: -4px;
  right: -4px;
  background: var(--grad-brand);
  color: #FFFFFF;
  font-size: 0.7rem;
  font-weight: 800;
  min-width: 18px;
  height: 18px;
  padding: 0 4px;
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 10px rgba(176, 38, 255, 0.6);
}

.hamburger-btn {
  display: none;
  background: none;
  border: none;
  color: #FFFFFF;
  font-size: 1.5rem;
  cursor: pointer;
  padding: 8px;
}

/* --------------------------------------------------------------------------
   2. HERO SECTION
   -------------------------------------------------------------------------- */
.hero-section {
  padding-top: 150px;
  padding-bottom: 90px;
  position: relative;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  align-items: center;
  gap: 50px;
}

.hero-tagline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 18px;
  border-radius: var(--radius-full);
  background: rgba(176, 38, 255, 0.1);
  border: 1px solid rgba(176, 38, 255, 0.3);
  font-family: var(--font-tech);
  font-size: 0.85rem;
  color: var(--neon-cyan);
  margin-bottom: 24px;
}

.hero-tagline .pulse-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--neon-cyan);
  box-shadow: 0 0 10px var(--neon-cyan);
  animation: pulseGlow 1.5s infinite;
}

.hero-title {
  font-size: 3.8rem;
  font-weight: 800;
  line-height: 1.12;
  margin-bottom: 20px;
  letter-spacing: -0.03em;
}

.hero-desc {
  font-size: 1.18rem;
  color: var(--text-muted);
  max-width: 540px;
  margin-bottom: 36px;
  line-height: 1.6;
}

.hero-cta-group {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.hero-features-bar {
  display: flex;
  align-items: center;
  gap: 24px;
  padding-top: 24px;
  border-top: 1px solid var(--border-subtle);
}

.hero-feature-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-pure);
}

.hero-feature-item svg {
  color: var(--neon-cyan);
}

.hero-visual-wrapper {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-main-card {
  width: 100%;
  max-width: 460px;
  background: var(--grad-dark-card);
  border: 1px solid rgba(176, 38, 255, 0.35);
  border-radius: var(--radius-xl);
  padding: 30px;
  box-shadow: var(--shadow-card), 0 0 50px rgba(176, 38, 255, 0.2);
  position: relative;
  animation: floatSlow 6s ease-in-out infinite;
}

.hero-card-img {
  width: 100%;
  height: 320px;
  object-fit: contain;
  filter: drop-shadow(0 15px 25px rgba(0, 0, 0, 0.6));
}

.hero-floating-badge {
  position: absolute;
  background: rgba(13, 13, 20, 0.9);
  backdrop-filter: blur(14px);
  border: 1px solid var(--border-active);
  padding: 12px 18px;
  border-radius: var(--radius-md);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.8);
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 2;
}

.badge-top-right {
  top: -15px;
  right: -15px;
  border-color: var(--neon-cyan);
}

.badge-bottom-left {
  bottom: -20px;
  left: -20px;
  border-color: var(--neon-purple-bright);
}

/* --------------------------------------------------------------------------
   3. CATEGORY CARDS & GRIDS
   -------------------------------------------------------------------------- */
.categories-section {
  padding: 80px 0;
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 20px;
}

.category-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 24px 16px;
  text-align: center;
  transition: var(--transition-bounce);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
}

.category-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--grad-brand);
  opacity: 0;
  transition: var(--transition-smooth);
}

.category-card:hover {
  transform: translateY(-6px);
  border-color: var(--border-active);
  background: var(--bg-card-hover);
  box-shadow: var(--shadow-hover);
}

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

.cat-icon-wrap {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.04);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  border: 1px solid var(--border-subtle);
  transition: var(--transition-smooth);
}

.category-card:hover .cat-icon-wrap {
  background: rgba(176, 38, 255, 0.15);
  border-color: var(--neon-purple-bright);
  transform: scale(1.1);
}

.cat-icon-wrap img {
  width: 44px;
  height: 44px;
  object-fit: contain;
}

.cat-title {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-pure);
  margin-bottom: 4px;
}

.cat-count {
  font-size: 0.78rem;
  color: var(--neon-cyan);
  font-weight: 600;
}

/* --------------------------------------------------------------------------
   4. PRODUCT CARDS & LISTING
   -------------------------------------------------------------------------- */
.products-section {
  padding: 80px 0;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 28px;
}

.product-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition-bounce);
  display: flex;
  flex-direction: column;
  position: relative;
}

.product-card:hover {
  transform: translateY(-8px);
  border-color: var(--border-active);
  box-shadow: var(--shadow-hover);
}

.product-img-wrapper {
  position: relative;
  width: 100%;
  height: 260px;
  background: radial-gradient(circle at 50% 50%, rgba(30, 24, 50, 0.8), rgba(10, 10, 16, 0.95));
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  overflow: hidden;
}

.product-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: var(--transition-bounce);
}

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

.product-badge-float {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 2;
}

.product-wishlist-btn {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(13, 13, 20, 0.7);
  backdrop-filter: blur(8px);
  border: 1px solid var(--border-subtle);
  color: var(--text-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 2;
  transition: var(--transition-smooth);
}

.product-wishlist-btn:hover, .product-wishlist-btn.active {
  background: #E024FF;
  border-color: #E024FF;
  color: #FFFFFF;
  transform: scale(1.15);
}

.product-info {
  padding: 22px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.product-cat-name {
  font-size: 0.75rem;
  color: var(--neon-cyan);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 6px;
}

.product-name-link {
  text-decoration: none;
  color: inherit;
}

.product-name {
  font-size: 1.12rem;
  font-weight: 700;
  color: var(--text-pure);
  margin-bottom: 8px;
  line-height: 1.35;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  transition: var(--transition-smooth);
}

.product-name-link:hover .product-name {
  color: var(--neon-purple-bright);
}

.product-rating-row {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
  font-size: 0.85rem;
}

.stars {
  color: #FFB800;
  display: flex;
  gap: 2px;
}

.reviews-cnt {
  color: var(--text-subtle);
  font-size: 0.8rem;
}

.product-desc-short {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-bottom: 18px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.product-card-footer {
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding-top: 16px;
  border-top: 1px solid var(--border-subtle);
}

.card-btn-group {
  display: flex;
  align-items: center;
  gap: 8px;
}

/* --------------------------------------------------------------------------
   5. WHY CHOOSE XNIXA SECTION
   -------------------------------------------------------------------------- */
.why-section {
  padding: 90px 0;
  background: linear-gradient(180deg, var(--bg-black) 0%, #0c0916 50%, var(--bg-black) 100%);
  position: relative;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.why-card {
  background: rgba(18, 18, 30, 0.5);
  backdrop-filter: blur(12px);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  text-align: center;
  transition: var(--transition-smooth);
}

.why-card:hover {
  transform: translateY(-6px);
  border-color: var(--border-active);
  box-shadow: 0 15px 35px -5px rgba(176, 38, 255, 0.2);
}

.why-icon {
  width: 64px;
  height: 64px;
  border-radius: 18px;
  background: rgba(176, 38, 255, 0.12);
  border: 1px solid rgba(176, 38, 255, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px auto;
  color: var(--neon-cyan);
}

.why-title {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.why-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* --------------------------------------------------------------------------
   6. CTA BANNER
   -------------------------------------------------------------------------- */
.cta-banner-section {
  padding: 80px 0;
}

.cta-banner-card {
  background: linear-gradient(135deg, #1d1238 0%, #0e1226 100%);
  border: 1px solid rgba(176, 38, 255, 0.4);
  border-radius: var(--radius-xl);
  padding: 60px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-card);
}

.cta-banner-card::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(0, 240, 255, 0.2) 0%, transparent 70%);
  pointer-events: none;
}

.cta-content {
  max-width: 600px;
  z-index: 1;
}

.cta-title {
  font-size: 2.4rem;
  font-weight: 800;
  margin-bottom: 14px;
}

.cta-desc {
  font-size: 1.05rem;
  color: var(--text-muted);
  margin-bottom: 24px;
}

.cta-btn-group {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* --------------------------------------------------------------------------
   7. CART DRAWER (SLIDE-IN)
   -------------------------------------------------------------------------- */
.cart-drawer-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(8px);
  z-index: 2000;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-smooth);
}

.cart-drawer-overlay.open {
  opacity: 1;
  visibility: visible;
}

.cart-drawer {
  position: fixed;
  top: 0;
  right: -480px;
  width: 100%;
  max-width: 460px;
  height: 100vh;
  background: #0d0d16;
  border-left: 1px solid var(--border-subtle);
  box-shadow: -10px 0 40px rgba(0, 0, 0, 0.9);
  z-index: 2001;
  display: flex;
  flex-direction: column;
  transition: right 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.cart-drawer-overlay.open .cart-drawer {
  right: 0;
}

.cart-drawer-header {
  padding: 24px;
  border-bottom: 1px solid var(--border-subtle);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.cart-drawer-title {
  font-size: 1.25rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  gap: 10px;
}

.cart-close-btn {
  background: none;
  border: none;
  color: var(--text-muted);
  font-size: 1.4rem;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.cart-close-btn:hover {
  color: #FFFFFF;
  transform: rotate(90deg);
}

.cart-items-list {
  flex-grow: 1;
  overflow-y: auto;
  padding: 20px 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.cart-item {
  display: flex;
  gap: 14px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 12px;
  align-items: center;
}

.cart-item-img {
  width: 64px;
  height: 64px;
  border-radius: var(--radius-sm);
  background: #141322;
  object-fit: contain;
  padding: 4px;
  flex-shrink: 0;
}

.cart-item-details {
  flex-grow: 1;
}

.cart-item-title {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text-pure);
  margin-bottom: 4px;
  line-height: 1.3;
}

.cart-item-variant {
  font-size: 0.78rem;
  color: var(--neon-cyan);
  margin-bottom: 6px;
}

.cart-item-price {
  font-weight: 800;
  color: var(--text-pure);
  font-size: 0.95rem;
}

.cart-qty-control {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-sm);
  padding: 2px 6px;
}

.qty-btn {
  background: none;
  border: none;
  color: var(--text-pure);
  font-size: 1rem;
  width: 22px;
  height: 22px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.qty-number {
  font-size: 0.85rem;
  font-weight: 700;
  min-width: 16px;
  text-align: center;
}

.cart-item-remove {
  background: none;
  border: none;
  color: var(--text-subtle);
  cursor: pointer;
  padding: 6px;
  transition: var(--transition-smooth);
}

.cart-item-remove:hover {
  color: #FF4D4F;
}

.cart-empty-state {
  text-align: center;
  padding: 60px 20px;
}

.cart-empty-icon {
  font-size: 3.5rem;
  color: var(--text-subtle);
  margin-bottom: 16px;
}

.cart-drawer-footer {
  padding: 24px;
  border-top: 1px solid var(--border-subtle);
  background: #090910;
}

.cart-summary-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.92rem;
  margin-bottom: 8px;
  color: var(--text-muted);
}

.cart-summary-row.total {
  font-size: 1.18rem;
  font-weight: 800;
  color: var(--text-pure);
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px dashed var(--border-subtle);
}

.cart-footer-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 18px;
}

/* --------------------------------------------------------------------------
   8. PAKISTANI CHECKOUT MODAL
   -------------------------------------------------------------------------- */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.82);
  backdrop-filter: blur(12px);
  z-index: 3000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-smooth);
}

.modal-overlay.open {
  opacity: 1;
  visibility: visible;
}

.modal-container {
  width: 100%;
  max-width: 650px;
  max-height: 90vh;
  overflow-y: auto;
  background: #0e0e18;
  border: 1px solid var(--border-active);
  border-radius: var(--radius-xl);
  padding: 36px;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.9), 0 0 40px rgba(176, 38, 255, 0.2);
  position: relative;
}

.modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border-subtle);
}

.modal-title {
  font-size: 1.5rem;
  font-weight: 800;
}

.payment-method-box {
  background: rgba(176, 38, 255, 0.08);
  border: 1px solid var(--neon-purple-bright);
  border-radius: var(--radius-md);
  padding: 16px;
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 20px;
}

.cod-badge {
  background: var(--grad-brand);
  color: #FFFFFF;
  font-size: 0.75rem;
  font-weight: 800;
  padding: 4px 10px;
  border-radius: var(--radius-full);
}

/* --------------------------------------------------------------------------
   9. GLOBAL SEARCH MODAL
   -------------------------------------------------------------------------- */
.search-modal-container {
  width: 100%;
  max-width: 640px;
  background: #0f0e1a;
  border: 1px solid var(--neon-cyan);
  border-radius: var(--radius-xl);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.9), 0 0 30px rgba(0, 240, 255, 0.3);
  padding: 24px;
}

.search-input-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-md);
  padding: 14px 18px;
  border: 1px solid var(--border-subtle);
  margin-bottom: 20px;
}

.search-input-field {
  background: none;
  border: none;
  outline: none;
  color: #FFFFFF;
  font-size: 1.1rem;
  width: 100%;
  font-family: var(--font-main);
}

.search-results-list {
  max-height: 380px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.search-result-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 10px 14px;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.02);
  transition: var(--transition-smooth);
  text-decoration: none;
}

.search-result-item:hover {
  background: rgba(176, 38, 255, 0.15);
  border-color: var(--neon-purple-bright);
}

.search-result-thumb {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-sm);
  background: #141322;
  object-fit: contain;
  padding: 4px;
}

/* --------------------------------------------------------------------------
   10. TOAST NOTIFICATIONS
   -------------------------------------------------------------------------- */
.toast-container {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 10px;
  pointer-events: none;
}

.toast {
  background: rgba(18, 18, 30, 0.95);
  backdrop-filter: blur(14px);
  border: 1px solid var(--neon-purple-bright);
  border-radius: var(--radius-md);
  padding: 14px 20px;
  color: #FFFFFF;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.8), 0 0 20px var(--purple-glow);
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 280px;
  pointer-events: auto;
  animation: slideInToast 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  transition: var(--transition-smooth);
}

.toast.toast-success {
  border-color: var(--neon-cyan);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.8), 0 0 20px var(--cyan-glow);
}

@keyframes slideInToast {
  from { transform: translateX(100%); opacity: 0; }
  to { transform: translateX(0); opacity: 1; }
}

/* --------------------------------------------------------------------------
   11. FOOTER
   -------------------------------------------------------------------------- */
.site-footer {
  background: #040407;
  border-top: 1px solid var(--border-subtle);
  padding-top: 80px;
  padding-bottom: 30px;
  position: relative;
  overflow: hidden;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.9fr 0.9fr 1.2fr;
  gap: 40px;
  margin-bottom: 60px;
}

.footer-brand-info .footer-logo {
  height: 36px;
  margin-bottom: 18px;
}

.footer-desc {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 24px;
}

.footer-social-links {
  display: flex;
  gap: 12px;
}

.social-icon-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-subtle);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-pure);
  transition: var(--transition-bounce);
}

.social-icon-btn:hover {
  background: var(--grad-brand);
  border-color: transparent;
  transform: translateY(-3px);
  color: #FFFFFF;
}

.footer-col-title {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: #FFFFFF;
  position: relative;
}

.footer-links-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-link {
  font-size: 0.92rem;
  color: var(--text-muted);
  transition: var(--transition-smooth);
}

.footer-link:hover {
  color: var(--neon-cyan);
  padding-left: 5px;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 14px;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.footer-contact-item svg {
  color: var(--neon-purple-bright);
  flex-shrink: 0;
  margin-top: 3px;
}

.footer-bottom {
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
  color: var(--text-subtle);
  flex-wrap: wrap;
  gap: 14px;
}

/* Payment Method Cards Styling */
.payment-method-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 12px;
  cursor: pointer;
  transition: var(--transition-smooth);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.payment-method-card:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: var(--neon-cyan);
}

.payment-method-card.active {
  background: rgba(0, 240, 255, 0.06);
  border-color: var(--neon-cyan);
  box-shadow: 0 0 15px rgba(0, 240, 255, 0.2);
}
