@import url('https://fonts.googleapis.com/css2?family=Cairo:wght@400;600;700;900&family=Outfit:wght@400;600;800&family=Tajawal:wght@400;500;700;900&display=swap');

:root {
  --bg-primary: #060608;
  --bg-secondary: #0d0d12;
  --bg-card: rgba(15, 16, 24, 0.88);
  --bg-glass: rgba(18, 19, 28, 0.75);
  --bg-glass-border: rgba(255, 26, 64, 0.22);
  --red-primary: #ff1a40;
  --red-hover: #e6002e;
  --red-glow: rgba(255, 26, 64, 0.4);
  --red-dark: #800014;
  --text-main: #f0f2f5;
  --text-muted: #9ea3ac;
  --text-white: #ffffff;
  --gold-accent: #ffb703;
  --green-accent: #2ecc71;
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-full: 9999px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --font-ar: 'Tajawal', 'Cairo', sans-serif;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: var(--font-ar);
  background-color: var(--bg-primary);
  color: var(--text-main);
  direction: rtl;
  min-height: 100vh;
  overflow-x: hidden;
  position: relative;
}

.container {
  width: 93%;
  max-width: 93%;
  margin: 0 auto;
  padding: 0 15px;
}

@media (max-width: 768px) {
  .container {
    width: 94%;
    padding: 0 16px;
  }
}

/* Background Canvas */
#bg-particles-canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: -1;
  pointer-events: none;
}

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

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

::-webkit-scrollbar-thumb {
  background: var(--red-dark);
  border-radius: var(--radius-full);
}

::-webkit-scrollbar-thumb:hover {
  background: var(--red-primary);
}

/* Top Announcement & Order Ticker Bar */
.top-announcement-bar {
  background: linear-gradient(90deg, #150005 0%, #35000c 50%, #150005 100%);
  border-bottom: none;
  padding: 8px 0;
  font-size: 0.85rem;
}

.top-bar-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 15px;
  flex-wrap: wrap;
}

.ticker-box {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text-muted);
}

.pulse-dot {
  width: 8px;
  height: 8px;
  background: var(--red-primary);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--red-primary);
  animation: pulse-glow 1.5s infinite;
}

@keyframes pulse-glow {
  0% {
    transform: scale(0.9);
    opacity: 0.7;
  }

  50% {
    transform: scale(1.3);
    opacity: 1;
  }

  100% {
    transform: scale(0.9);
    opacity: 0.7;
  }
}

.ticker-label {
  color: var(--red-primary);
  font-weight: 800;
  font-size: 0.8rem;
}

.ticker-message {
  color: #fff;
  font-weight: 600;
}

.top-bar-links {
  display: flex;
  align-items: center;
  gap: 16px;
}

.discord-top-link {
  color: #5865F2;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.85rem;
  transition: var(--transition);
}

.discord-top-link:hover {
  color: #fff;
}

.admin-quick-link {
  color: var(--text-muted);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.85rem;
}

.admin-quick-link:hover {
  color: var(--red-primary);
}

.navbar-wrapper {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(6, 6, 9, 0.94);
  backdrop-filter: blur(20px);
  border-bottom: none;
  padding: 12px 0;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
}

.navbar-inner {
  width: 100%;
  max-width: 100%;
  padding: 0 clamp(16px, 3.5vw, 45px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

/* Brand Emblem */
.brand-link {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.brand-logo-frame {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  padding: 2px;
  background: linear-gradient(135deg, var(--red-primary), #ff6b81, var(--red-dark));
  box-shadow: 0 0 18px var(--red-glow);
  transition: var(--transition);
}

.brand-link:hover .brand-logo-frame {
  transform: rotate(10deg) scale(1.08);
  box-shadow: 0 0 25px var(--red-primary);
}

.brand-logo-img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
}

.brand-text-wrap {
  display: flex;
  flex-direction: column;
}

.brand-name {
  font-family: 'Outfit', 'Cairo', sans-serif;
  font-size: 1.45rem;
  font-weight: 900;
  color: #fff;
  line-height: 1.1;
}

.brand-name span {
  color: var(--red-primary);
}

.brand-tag {
  font-size: 0.65rem;
  font-weight: 900;
  letter-spacing: 2px;
  color: var(--text-muted);
}

/* Center Menu Navigation & Dropdowns */
.main-nav {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.03);
  padding: 6px 10px;
  border-radius: var(--radius-full);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.nav-item {
  color: var(--text-muted);
  text-decoration: none;
  font-weight: 700;
  font-size: 0.9rem;
  padding: 7px 14px;
  border-radius: var(--radius-full);
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  white-space: nowrap;
  flex-shrink: 0;
}

.nav-item:hover,
.nav-item.active {
  color: #fff;
  background: var(--red-primary);
  box-shadow: 0 0 15px var(--red-glow);
}

/* Custom Emoji Glowing Style */
.nav-emoji {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.05rem;
  line-height: 1;
  filter: drop-shadow(0 0 6px rgba(255, 26, 64, 0.5));
  transition: transform 0.25s cubic-bezier(0.4, 0, 0.2, 1), filter 0.25s ease;
  vertical-align: middle;
}

.nav-item:hover .nav-emoji {
  transform: scale(1.22) rotate(-5deg);
  filter: drop-shadow(0 0 12px rgba(255, 26, 64, 0.9));
}

.nav-item.track-btn {
  color: var(--gold-accent);
}

.nav-item.track-btn:hover {
  background: var(--gold-accent);
  color: #000;
  box-shadow: 0 0 15px rgba(255, 183, 3, 0.5);
}

.drop-arrow {
  font-size: 0.75rem;
  transition: transform 0.2s ease;
}

.nav-dropdown-wrap {
  position: relative;
}

.nav-dropdown-wrap:hover .drop-arrow {
  transform: rotate(180deg);
}

.nav-dropdown-wrap:hover .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav-dropdown-menu {
  position: absolute;
  top: 100%;
  right: 0;
  min-width: 230px;
  background: rgba(10, 11, 16, 0.96);
  border: 1px solid rgba(255, 26, 64, 0.35);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.95);
  border-radius: var(--radius-md);
  padding: 10px;
  backdrop-filter: blur(20px);
  display: flex;
  flex-direction: column;
  gap: 4px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 1100;
}

.nav-dropdown-menu a {
  color: var(--text-muted);
  text-decoration: none;
  font-weight: 700;
  font-size: 0.88rem;
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  gap: 10px;
  transition: var(--transition);
}

.nav-dropdown-menu a:hover {
  color: #fff;
  background: rgba(255, 26, 64, 0.2);
  transform: translateX(-4px);
}

/* Right Control Group */
.navbar-controls {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* Search Box */
.search-wrap {
  position: relative;
  width: 220px;
}

.search-field {
  width: 100%;
  padding: 8px 12px 8px 34px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-full);
  color: #fff;
  font-family: inherit;
  font-size: 0.85rem;
  outline: none;
  transition: var(--transition);
}

.search-field:focus {
  border-color: var(--red-primary);
  background: rgba(255, 26, 64, 0.08);
  box-shadow: 0 0 15px rgba(255, 26, 64, 0.25);
}

.search-icon {
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-muted);
  font-size: 0.8rem;
  pointer-events: none;
}

/* Sleek Custom Dark Currency & Select Dropdowns */
.currency-dropdown,
select {
  background-color: rgba(12, 13, 20, 0.95) !important;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23ff1a40' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E") !important;
  background-repeat: no-repeat !important;
  background-position: left 10px center !important;
  appearance: none !important;
  -webkit-appearance: none !important;
  -moz-appearance: none !important;
  border: 1px solid rgba(255, 26, 64, 0.4) !important;
  color: #ffffff !important;
  padding: 8px 14px 8px 30px !important;
  border-radius: var(--radius-sm) !important;
  font-family: inherit !important;
  font-weight: 800 !important;
  font-size: 0.85rem !important;
  cursor: pointer !important;
  outline: none !important;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5) !important;
  transition: var(--transition) !important;
}

.currency-dropdown:hover,
.currency-dropdown:focus,
select:hover,
select:focus {
  border-color: var(--red-primary) !important;
  box-shadow: 0 0 18px var(--red-glow) !important;
  background-color: rgba(20, 21, 32, 0.98) !important;
}

.currency-dropdown option,
select option {
  background-color: #0c0d15 !important;
  color: #ffffff !important;
  padding: 12px 14px !important;
  font-weight: 700 !important;
  font-size: 0.9rem !important;
}

/* Cart Button Capsule */
.cart-btn {
  background: rgba(255, 26, 64, 0.1);
  border: 1.5px solid #ff1a40;
  color: #ffffff;
  padding: 6px 14px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.88rem;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
  white-space: nowrap;
  flex-shrink: 0;
  box-shadow: 0 0 12px rgba(255, 26, 64, 0.2);
}

.cart-btn:hover {
  background: rgba(255, 26, 64, 0.25);
  box-shadow: 0 0 20px rgba(255, 26, 64, 0.5);
  transform: translateY(-1px);
}

.cart-badge-count,
.cart-badge {
  background: #ff1a40;
  color: #ffffff;
  padding: 2px 7px;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 900;
  min-width: 18px;
  text-align: center;
  box-shadow: 0 0 10px rgba(255, 26, 64, 0.5);
}

/* Login Action Button */
.login-action-btn {
  background: linear-gradient(135deg, var(--red-primary), var(--red-hover));
  color: #fff;
  border: none;
  padding: 8px 18px;
  border-radius: var(--radius-sm);
  font-family: inherit;
  font-weight: 700;
  font-size: 0.85rem;
  cursor: pointer;
  box-shadow: 0 0 15px var(--red-glow);
  display: flex;
  align-items: center;
  gap: 6px;
  transition: var(--transition);
  white-space: nowrap;
  flex-shrink: 0;
}

.login-action-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 25px var(--red-primary);
}

.user-badge-wrap {
  position: relative;
  display: inline-block;
}

.user-avatar-small {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--red-primary);
}

/* Hero Section */
.hero-container {
  padding: 80px 4% 60px 4%;
  text-align: center;
  max-width: 1100px;
  margin: 0 auto;
}

.hero-brand-standalone {
  font-family: 'Outfit', 'Cairo', sans-serif;
  font-weight: 900;
  font-size: 2.35rem;
  letter-spacing: 3px;
  background: linear-gradient(90deg, #ffffff 0%, var(--red-primary) 50%, #ffffff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 0 25px rgba(255, 26, 64, 0.75));
  margin-bottom: 24px;
  text-align: center;
  display: inline-block;
  user-select: none;
}

@media (max-width: 600px) {
  .hero-brand-standalone {
    font-size: 1.65rem;
    letter-spacing: 1px;
  }
}

.hero-main-heading {
  font-size: 3.4rem;
  font-weight: 900;
  line-height: 1.25;
  margin-bottom: 18px;
  color: #fff;
}

.text-glow-red {
  color: var(--red-primary);
  background: linear-gradient(90deg, #ff1a40, #ff6b81);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 0 30px rgba(255, 26, 64, 0.5);
}

.hero-description {
  font-size: 1.2rem;
  color: var(--text-muted);
  max-width: 760px;
  margin: 0 auto 35px auto;
  line-height: 1.7;
}

.hero-actions-wrap {
  display: flex;
  gap: 16px;
  justify-content: center;
  align-items: center;
  margin-bottom: 28px;
  flex-wrap: wrap;
}

.btn-hero-primary {
  background: linear-gradient(135deg, var(--red-primary), var(--red-hover));
  color: #fff;
  padding: 14px 28px;
  border-radius: var(--radius-sm);
  font-weight: 800;
  font-size: 1.05rem;
  text-decoration: none;
  box-shadow: 0 8px 25px rgba(255, 26, 64, 0.45);
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.btn-hero-primary:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 12px 35px rgba(255, 26, 64, 0.7);
}

.btn-hero-secondary {
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: #fff;
  padding: 14px 26px;
  border-radius: var(--radius-sm);
  font-weight: 800;
  font-size: 1.02rem;
  text-decoration: none;
  transition: all 0.35s ease;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.btn-hero-secondary:hover {
  border-color: var(--red-primary);
  background: rgba(255, 26, 64, 0.12);
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(255, 26, 64, 0.25);
}

/* Highlights Grid */
.highlights-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
  margin-top: 40px;
}

.highlight-item {
  background: var(--bg-glass);
  border: 1px solid var(--bg-glass-border);
  padding: 18px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  gap: 14px;
  text-align: right;
}

.highlight-icon {
  font-size: 1.8rem;
  color: var(--red-primary);
}

.highlight-val {
  font-weight: 800;
  font-size: 1rem;
  color: #fff;
}

.highlight-sub {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* Main Content & Products Section */
.main-content-section {
  margin: 50px auto;
}

.section-top-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
  flex-wrap: wrap;
  gap: 15px;
}

.section-title-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
}

.section-title-wrap h2 {
  font-size: 1.8rem;
  font-weight: 900;
}

.title-icon {
  color: var(--red-primary);
  font-size: 1.6rem;
}

.view-all-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 26, 64, 0.1);
  color: var(--red-primary);
  border: 1px solid rgba(255, 26, 64, 0.3);
  padding: 8px 18px;
  border-radius: 30px;
  font-weight: 800;
  font-size: 0.88rem;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  backdrop-filter: blur(8px);
}

.view-all-link:hover {
  background: var(--red-primary);
  color: #fff;
  border-color: var(--red-primary);
  box-shadow: 0 0 15px var(--red-glow);
  transform: translateX(-4px);
}

.view-all-link.discord-btn {
  background: rgba(88, 101, 242, 0.1);
  color: #5865f2;
  border-color: rgba(88, 101, 242, 0.3);
}

.view-all-link.discord-btn:hover {
  background: #5865f2;
  color: #fff;
  border-color: #5865f2;
  box-shadow: 0 0 15px rgba(88, 101, 242, 0.5);
  transform: translateX(-4px);
}

.category-tabs {
  display: flex;
  gap: 8px;
  overflow-x: auto;
}

.tab-btn {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--text-muted);
  padding: 8px 18px;
  border-radius: var(--radius-full);
  font-weight: 700;
  font-size: 0.85rem;
  cursor: pointer;
  white-space: nowrap;
  transition: var(--transition);
}

.tab-btn:hover,
.tab-btn.active {
  background: var(--red-primary);
  color: #fff;
  border-color: var(--red-primary);
  box-shadow: 0 0 15px var(--red-glow);
}

/* Exactly 4 Products Per Row Layout on PC / Desktop (Fluid across all resolutions) */
.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

@media (min-width: 992px) {
  .products-grid {
    grid-template-columns: repeat(4, 1fr) !important;
    gap: 20px !important;
  }
  
  .product-card {
    border-radius: 18px !important;
    height: 100% !important;
  }

  .card-img-wrap {
    aspect-ratio: 1 / 1 !important;
    border-radius: 16px 16px 0 0 !important;
  }
}

@media (max-width: 1200px) and (min-width: 901px) {
  .products-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
  }
}

@media (max-width: 900px) {
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
}

@media (max-width: 550px) {
  .products-grid {
    grid-template-columns: 1fr;
  }
}

/* ============================================================
   X-STORM HIGH-TECH NEON LASER BORDER & 3D CARD STYLES
   ============================================================ */
.product-card {
  position: relative;
  background: rgba(12, 13, 20, 0.98);
  border-radius: 14px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 2px; /* Border gap for laser sweep */
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.6);
  opacity: 1 !important;
  cursor: pointer !important;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s ease;
  will-change: transform;
  transform-style: preserve-3d;
}

/* Broken Neon Laser Sweep Border Layer (Conic Gradient with Electric Green Spark #0aff1b) */
.product-card::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: conic-gradient(
    from 0deg, 
    #ff1a40 0%, 
    #ff4d6d 6%, 
    #0aff1b 15%, /* Electric Broken Green Laser Spark */
    #00ff88 22%, 
    #ff0033 28%, 
    rgba(128, 0, 20, 0.25) 50%, 
    rgba(10, 255, 27, 0.35) 75%, 
    #ff1a40 100%
  );
  animation: laser-sweep-gpu 4s linear infinite;
  z-index: 0;
  pointer-events: none;
  transform: translateZ(0);
  will-change: transform;
}

/* Speed up rotating green/red laser sweep on hover */
.product-card:hover::before {
  animation-duration: 1.5s;
}

/* Ensure inner card content stays elevated above the laser border */
.product-card > * {
  position: relative;
  z-index: 1;
}

/* Hover State - High Intensity Neon Red & Green Glow */
.product-card:hover {
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.9), 
              0 0 35px rgba(255, 26, 64, 0.65), 
              0 0 15px rgba(10, 255, 27, 0.4) !important;
}

@keyframes laser-sweep-gpu {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

.card-img-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  height: auto;
  overflow: hidden;
  background: #08090e;
}

.card-img-bg {
  display: none !important;
}

.card-img {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), filter 0.4s ease !important;
  will-change: transform, filter;
  padding: 0;
}

.product-card:hover .card-img {
  transform: scale(1.08) !important;
  filter: brightness(1.12) !important;
}

/* Card Title Glow on Hover - Eye-Friendly Soft Emerald */
.product-card:hover .card-title {
  color: #23ff8f !important;
  text-shadow: 0 0 10px rgba(0, 255, 162, 0.35) !important;
}

/* Add Cart Button Glow on Hover */
.product-card:hover .add-cart-btn {
  background: #ff1a40 !important;
  color: #ffffff !important;
  box-shadow: 0 0 20px rgba(255, 26, 64, 0.6) !important;
}

.card-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  background: var(--red-primary);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 800;
  padding: 4px 10px;
  border-radius: var(--radius-sm);
  z-index: 5;
}

.card-body {
  padding: 14px 16px;
  display: flex;
  flex-direction: column;
  flex: 1;
  justify-content: space-between;
  background: rgba(8, 9, 14, 0.95);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

/* Clickable Category & Sub-category Breadcrumbs (Single Horizontal Line, No Wrapping) */
.card-category-breadcrumbs {
  display: flex;
  align-items: center;
  gap: 4px;
  flex-wrap: nowrap;
  white-space: nowrap;
  overflow: hidden;
  margin-bottom: 8px;
}

.cat-tag {
  font-size: 0.72rem;
  font-weight: 800;
  text-decoration: none;
  padding: 2px 8px;
  border-radius: 50px;
  transition: var(--transition);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  white-space: nowrap;
  flex-shrink: 0;
}

.main-cat-tag {
  color: var(--red-primary);
  background: rgba(255, 26, 64, 0.12);
  border: 1px solid rgba(255, 26, 64, 0.3);
}

.main-cat-tag:hover {
  background: var(--red-primary);
  color: #fff;
  box-shadow: 0 0 12px var(--red-glow);
}

.sub-cat-tag {
  color: #e0e0e6;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
}

.sub-cat-tag:hover {
  background: rgba(255, 26, 64, 0.25);
  color: #fff;
  border-color: var(--red-primary);
}

.cat-sep {
  color: var(--text-muted);
  font-size: 0.75rem;
  font-weight: bold;
}

.card-title {
  font-size: 1.05rem;
  font-weight: 800;
  color: #fff;
  line-height: 1.35;
  margin-bottom: 8px;
  min-height: 2.7em;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.card-desc {
  display: none;
}

.card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 10px;
  margin-top: auto;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.price-tag {
  display: flex;
  flex-direction: row;
  align-items: baseline;
  gap: 5px;
}

.price-amount {
  font-size: 1.25rem;
  font-weight: 900;
  color: #fff;
  font-family: 'Outfit', sans-serif;
  line-height: 1;
}

.price-currency {
  font-size: 0.8rem;
  color: var(--red-primary);
  font-weight: 800;
  line-height: 1;
}

.add-cart-btn {
  background: rgba(255, 0, 85, 0.1);
  color: #ff0055;
  border: 1px solid rgba(255, 0, 85, 0.5);
  padding: 8px 15px;
  border-radius: 10px;
  font-weight: 800;
  font-size: 0.85rem;
  font-family: inherit;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: all 0.3s ease;
  backdrop-filter: blur(6px);
  box-shadow: 0 4px 15px rgba(255, 0, 85, 0.12);
}

.add-cart-btn i {
  color: inherit;
  font-size: 0.95rem;
  transition: transform 0.3s ease;
}

.add-cart-btn:hover {
  background: #ff0055;
  color: #ffffff;
  border-color: #ff0055;
  box-shadow: 0 0 20px rgba(255, 0, 85, 0.5);
  transform: translateY(-2px) scale(1.02);
}

.add-cart-btn:hover i {
  transform: scale(1.2) rotate(-8deg);
}

/* Steps Section */
.steps-section {
  margin: 80px auto;
  text-align: center;
}

.steps-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 25px;
}

.step-box {
  background: var(--bg-glass);
  border: 1px solid var(--bg-glass-border);
  border-radius: var(--radius-md);
  padding: 30px 20px;
  position: relative;
}

.step-icon {
  font-size: 2.2rem;
  color: var(--red-primary);
  margin-bottom: 15px;
}

.step-num {
  position: absolute;
  top: 15px;
  left: 20px;
  font-size: 1.2rem;
  font-weight: 900;
  color: rgba(255, 255, 255, 0.15);
  font-family: 'Outfit', sans-serif;
}

/* Drawer Cart - Right-to-Middle Luxury Slide-out */
.drawer-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(5, 6, 10, 0.78);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 99998;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.4s ease;
}

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

.cart-drawer {
  position: fixed;
  top: 50%;
  left: 50%;
  width: 580px;
  max-width: 92vw;
  height: 85vh;
  max-height: 720px;
  background: rgba(12, 13, 20, 0.97);
  backdrop-filter: blur(28px);
  -webkit-backdrop-filter: blur(28px);
  border: 1px solid rgba(255, 26, 64, 0.4);
  border-radius: 26px;
  box-shadow: 0 25px 80px rgba(0, 0, 0, 0.95), 0 0 50px rgba(255, 26, 64, 0.25);
  z-index: 99999;
  opacity: 0;
  visibility: hidden;
  transform: translate(120vw, -50%) scale(0.85);
  transition: transform 0.48s cubic-bezier(0.175, 0.885, 0.32, 1.25), opacity 0.35s ease, visibility 0.4s ease;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  overscroll-behavior: contain;
}

.cart-drawer.open {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, -50%) scale(1);
}

/* Header */
.drawer-header {
  padding: 22px 24px;
  background: linear-gradient(180deg, rgba(255, 26, 64, 0.08) 0%, rgba(0, 0, 0, 0) 100%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.drawer-title-group {
  display: flex;
  align-items: center;
  gap: 14px;
}

.drawer-title-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(255, 26, 64, 0.25), rgba(255, 26, 64, 0.08));
  border: 1px solid rgba(255, 26, 64, 0.5);
  color: var(--red-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  box-shadow: 0 0 18px rgba(255, 26, 64, 0.3);
}

.drawer-header h3 {
  margin: 0;
  font-size: 1.2rem;
  font-weight: 900;
  color: #ffffff;
  letter-spacing: -0.3px;
}

.drawer-subtitle {
  font-size: 0.78rem;
  color: var(--text-muted);
  font-weight: 600;
  display: block;
  margin-top: 2px;
}

.drawer-close-btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--text-muted);
  font-size: 1.1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.drawer-close-btn:hover {
  background: rgba(255, 26, 64, 0.2);
  border-color: var(--red-primary);
  color: #fff;
  transform: rotate(90deg) scale(1.08);
  box-shadow: 0 0 15px rgba(255, 26, 64, 0.3);
}

/* Body */
.drawer-body {
  padding: 20px 24px;
  flex-grow: 1;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
}

.drawer-body::-webkit-scrollbar {
  width: 5px;
}
.drawer-body::-webkit-scrollbar-thumb {
  background: rgba(255, 26, 64, 0.3);
  border-radius: 10px;
}

/* Cart Item Card */
.cart-item-card {
  display: flex;
  align-items: center;
  gap: 14px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.03) 0%, rgba(255, 255, 255, 0.01) 100%);
  padding: 14px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  transition: all 0.3s ease;
  position: relative;
}

.cart-item-card:hover {
  border-color: rgba(255, 26, 64, 0.35);
  background: linear-gradient(135deg, rgba(255, 26, 64, 0.06) 0%, rgba(0, 0, 0, 0.4) 100%);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5), 0 0 15px rgba(255, 26, 64, 0.1);
  transform: translateY(-2px);
}

.cart-item-thumb {
  width: 65px;
  height: 65px;
  min-width: 65px;
  border-radius: 12px;
  overflow: hidden;
  background: #000;
  border: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
  flex-shrink: 0;
}

.cart-item-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.cart-item-card:hover .cart-item-thumb img {
  transform: scale(1.08);
}

.cart-item-info {
  flex-grow: 1;
  min-width: 0;
}

.cart-item-name {
  font-weight: 800;
  font-size: 0.95rem;
  color: #fff;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  line-height: 1.4;
}

.cart-item-variant {
  display: inline-block;
  font-size: 0.75rem;
  color: #ffb703;
  background: rgba(255, 183, 3, 0.12);
  border: 1px solid rgba(255, 183, 3, 0.3);
  padding: 2px 8px;
  border-radius: 6px;
  margin-top: 3px;
  font-weight: 600;
}

.cart-item-price-tag {
  color: var(--red-primary);
  font-weight: 900;
  font-size: 1rem;
  margin-top: 4px;
}

.cart-item-qty-controls {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 8px;
}

.cart-qty-btn {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #fff;
  width: 26px;
  height: 26px;
  border-radius: 6px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 0.85rem;
  transition: all 0.2s ease;
}

.cart-qty-btn:hover {
  background: var(--red-primary);
  border-color: var(--red-primary);
  box-shadow: 0 0 10px rgba(255, 26, 64, 0.4);
}

.cart-qty-num {
  font-weight: 800;
  font-size: 0.9rem;
  color: #fff;
  min-width: 20px;
  text-align: center;
}

.cart-item-delete-btn {
  background: rgba(255, 26, 64, 0.08);
  border: 1px solid rgba(255, 26, 64, 0.2);
  color: #ff4d6d;
  width: 34px;
  height: 34px;
  border-radius: 10px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.cart-item-delete-btn:hover {
  background: #ff1a40;
  border-color: #ff1a40;
  color: #fff;
  transform: scale(1.1);
  box-shadow: 0 0 15px rgba(255, 26, 64, 0.5);
}

/* Empty State */
.cart-empty-state {
  text-align: center;
  padding: 50px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin: auto;
}

.cart-empty-icon {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(255, 26, 64, 0.15), rgba(255, 26, 64, 0.02));
  border: 1px dashed rgba(255, 26, 64, 0.4);
  color: var(--red-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  margin-bottom: 20px;
  box-shadow: 0 0 30px rgba(255, 26, 64, 0.15);
  animation: pulseEmptyCart 3s infinite ease-in-out;
}

@keyframes pulseEmptyCart {
  0%, 100% { transform: scale(1); box-shadow: 0 0 30px rgba(255, 26, 64, 0.15); }
  50% { transform: scale(1.06); box-shadow: 0 0 45px rgba(255, 26, 64, 0.35); }
}

.cart-empty-title {
  font-size: 1.15rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 8px;
}

.cart-empty-desc {
  font-size: 0.85rem;
  color: var(--text-muted);
  max-width: 280px;
  line-height: 1.6;
  margin-bottom: 24px;
}

.cart-browse-btn {
  padding: 10px 22px;
  border-radius: 12px;
  background: rgba(255, 26, 64, 0.15);
  border: 1px solid rgba(255, 26, 64, 0.4);
  color: #fff;
  font-weight: 800;
  font-size: 0.88rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.cart-browse-btn:hover {
  background: var(--red-primary);
  box-shadow: 0 0 20px rgba(255, 26, 64, 0.4);
  transform: translateY(-2px);
}

/* Footer */
.drawer-footer {
  padding: 22px 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.6) 0%, rgba(10, 11, 16, 0.95) 100%);
}

.coupon-box-wrapper {
  margin-bottom: 16px;
}

.coupon-input-group {
  display: flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  padding: 4px 6px 4px 14px;
  transition: all 0.3s ease;
}

.coupon-input-group:focus-within {
  border-color: var(--red-primary);
  box-shadow: 0 0 15px rgba(255, 26, 64, 0.25);
  background: rgba(255, 26, 64, 0.03);
}

.coupon-icon {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-left: 10px;
}

.coupon-input-group input {
  flex-grow: 1;
  background: none;
  border: none;
  color: #fff;
  font-size: 0.85rem;
  outline: none;
  padding: 8px 0;
}

.btn-apply-coupon {
  background: rgba(255, 26, 64, 0.18);
  border: 1px solid rgba(255, 26, 64, 0.4);
  color: #fff;
  padding: 7px 14px;
  border-radius: 8px;
  font-size: 0.8rem;
  font-weight: 800;
  cursor: pointer;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.btn-apply-coupon:hover {
  background: var(--red-primary);
  box-shadow: 0 0 12px rgba(255, 26, 64, 0.4);
}

.coupon-msg {
  font-size: 0.82rem;
  margin-top: 6px;
  font-weight: bold;
}

.cart-summary-box {
  background: rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 14px;
  padding: 14px 16px;
  margin-bottom: 18px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.cart-summary-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.88rem;
  color: var(--text-muted);
}

.cart-summary-row.subtotal {
  font-weight: 600;
}

.cart-summary-row.final {
  border-top: 1px dashed rgba(255, 255, 255, 0.1);
  padding-top: 8px;
  margin-top: 2px;
  font-size: 1.15rem;
  font-weight: 900;
  color: #fff;
}

.cart-final-price {
  color: var(--red-primary);
  font-size: 1.25rem;
  font-weight: 900;
  text-shadow: 0 0 12px rgba(255, 26, 64, 0.35);
}

.btn-checkout-hero {
  width: 100%;
  padding: 14px 20px;
  border-radius: 14px;
  background: linear-gradient(135deg, #ff1a40 0%, #cc0029 100%);
  border: none;
  color: #fff;
  font-weight: 900;
  font-size: 1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  box-shadow: 0 8px 25px rgba(255, 26, 64, 0.4);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn-checkout-hero:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 35px rgba(255, 26, 64, 0.6);
  background: linear-gradient(135deg, #ff3355 0%, #e6002e 100%);
}

.btn-checkout:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 30px var(--red-primary);
}

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

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

.modal-card {
  background: var(--bg-secondary);
  border: 1px solid var(--red-primary);
  box-shadow: 0 0 40px rgba(255, 26, 64, 0.3);
  border-radius: var(--radius-lg);
  width: 480px;
  max-width: 100%;
  padding: 30px;
  position: relative;
  transform: scale(0.9);
  transition: var(--transition);
}

.modal-backdrop.open .modal-card {
  transform: scale(1);
}

.modal-close {
  position: absolute;
  top: 18px;
  left: 18px;
  background: none;
  border: none;
  color: var(--text-muted);
  font-size: 1.4rem;
  cursor: pointer;
}

.modal-close:hover {
  color: var(--red-primary);
}

/* ==========================================================================
   SUPER-CHIC ORDER SUCCESS CONFIRMATION MODAL
   ========================================================================== */

#order-success-modal .modal-card {
  background: linear-gradient(145deg, rgba(16, 18, 26, 0.96), rgba(10, 11, 18, 0.98));
  border: 1px solid rgba(10, 255, 27, 0.25);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.8), 0 0 20px rgba(10, 255, 27, 0.08);
  border-radius: 20px;
  padding: 34px 28px;
  max-width: 490px;
  width: 100%;
  position: relative;
}

.success-badge-wrapper {
  position: relative;
  width: 80px;
  height: 80px;
  margin: 0 auto 20px auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.success-pulse-ring {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: rgba(10, 255, 27, 0.12);
  border: 2px solid rgba(10, 255, 27, 0.4);
  animation: pulseGreen 2s infinite;
}

@keyframes pulseGreen {
  0% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(10, 255, 27, 0.4);
  }
  70% {
    transform: scale(1.15);
    box-shadow: 0 0 0 18px rgba(10, 255, 27, 0);
  }
  100% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(10, 255, 27, 0);
  }
}

.success-badge-icon {
  font-size: 3.8rem;
  color: #0aff1b;
  filter: drop-shadow(0 0 16px rgba(10, 255, 27, 0.6));
  position: relative;
  z-index: 2;
}

.success-modal-title {
  font-size: 1.75rem;
  font-weight: 900;
  color: #fff;
  margin-bottom: 8px;
  background: linear-gradient(135deg, #ffffff, #d0d0d8);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.success-modal-sub {
  color: var(--text-muted);
  font-size: 0.92rem;
  line-height: 1.6;
  margin-bottom: 22px;
}

/* Order Code Highlight Box with One-Click Copy */
.success-code-card {
  background: rgba(10, 255, 27, 0.05);
  border: 1.5px dashed rgba(10, 255, 27, 0.5);
  border-radius: 14px;
  padding: 14px 18px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.code-card-label {
  font-size: 0.78rem;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.7);
  display: flex;
  align-items: center;
  gap: 6px;
}

.code-card-label i {
  color: #0aff1b;
}

.code-val-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.code-val-text {
  font-family: 'Outfit', sans-serif;
  font-size: 1.65rem;
  font-weight: 900;
  color: #0aff1b;
  letter-spacing: 2px;
  text-shadow: 0 0 12px rgba(10, 255, 27, 0.4);
}

.btn-copy-order-code {
  background: rgba(10, 255, 27, 0.15);
  border: 1px solid rgba(10, 255, 27, 0.4);
  color: #0aff1b;
  font-size: 0.8rem;
  font-weight: 800;
  padding: 6px 12px;
  border-radius: 8px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 5px;
  transition: all 0.2s ease;
}

.btn-copy-order-code:hover {
  background: #0aff1b;
  color: #000;
  box-shadow: 0 0 15px rgba(10, 255, 27, 0.4);
}

.btn-copy-order-code.copied {
  background: #0aff1b !important;
  color: #000 !important;
}

/* ==========================================================================
   ULTRA-PROFESSIONAL TILED DATA GRID FOR ORDER SUCCESS MODAL
   ========================================================================== */

.success-info-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin-bottom: 22px;
  width: 100%;
}

@media (max-width: 480px) {
  .success-info-grid {
    grid-template-columns: 1fr;
  }
}

.info-tile {
  background: rgba(14, 16, 26, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 10px 12px;
  display: flex;
  align-items: center;
  gap: 10px;
  text-align: right;
  transition: all 0.25s ease;
}

.info-tile:hover {
  border-color: rgba(10, 255, 27, 0.4);
  background: rgba(20, 24, 38, 0.95);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
}

.info-tile.delivery-tile {
  grid-column: span 2;
  background: linear-gradient(135deg, rgba(88, 101, 242, 0.14), rgba(14, 16, 26, 0.95));
  border: 1.5px solid rgba(88, 101, 242, 0.4);
}

.info-tile.delivery-tile.whatsapp-tile {
  background: linear-gradient(135deg, rgba(37, 211, 102, 0.14), rgba(14, 16, 26, 0.95));
  border: 1.5px solid rgba(37, 211, 102, 0.4);
}

@media (max-width: 480px) {
  .info-tile.delivery-tile {
    grid-column: span 1;
  }
}

.btn-success-close-shop {
  width: 100%;
  border-radius: 14px;
  padding: 14px 20px;
  font-weight: 800;
  font-size: 0.95rem;
  cursor: pointer;
  background: linear-gradient(135deg, rgba(255, 26, 64, 0.15), rgba(255, 26, 64, 0.05));
  border: 1.5px solid rgba(255, 26, 64, 0.4);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 15px rgba(255, 26, 64, 0.15);
}

.btn-success-close-shop:hover {
  background: linear-gradient(135deg, var(--red-primary), #ff4d6d);
  border-color: #ff4d6d;
  color: #fff;
  transform: translateY(-2px) scale(1.01);
  box-shadow: 0 8px 25px rgba(255, 26, 64, 0.45);
}

.btn-success-close-shop:active {
  transform: translateY(0) scale(0.99);
}

.tile-icon-box {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: rgba(88, 101, 242, 0.18);
  color: #5865f2;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  flex-shrink: 0;
  box-shadow: 0 0 12px rgba(88, 101, 242, 0.25);
}

.tile-icon-box.wa {
  background: rgba(37, 211, 102, 0.18);
  color: #25d366;
  box-shadow: 0 0 12px rgba(37, 211, 102, 0.25);
}

.tile-content {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
  flex: 1;
}

.tile-label {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--text-muted);
}

.tile-value {
  font-size: 0.9rem;
  font-weight: 800;
  color: #fff;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.tile-value.text-discord {
  color: #5865f2;
  font-family: 'Outfit', sans-serif;
}

.tile-value.text-whatsapp {
  color: #25d366;
}

.tile-value.highlight-cyan {
  color: #00f2fe;
}

.tile-value.font-mono {
  font-family: 'Outfit', sans-serif;
  letter-spacing: 0.5px;
}

.success-phone-note {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  padding: 10px 14px;
  font-size: 0.88rem;
  color: #d0d0d8;
  margin-bottom: 24px;
}

.success-phone-val {
  color: #fff;
  font-weight: 900;
  font-family: 'Outfit', sans-serif;
}

/* Modal Actions Buttons Grid */
.success-actions-wrap {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 100%;
}

.btn-modal-action {
  width: 100%;
  padding: 13px 18px;
  border-radius: 12px;
  font-weight: 800;
  font-size: 0.95rem;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-decoration: none;
  transition: all 0.25s ease;
  border: none;
}

.btn-track-order {
  background: linear-gradient(135deg, var(--red-primary), var(--red-hover));
  color: #fff;
  box-shadow: 0 0 20px rgba(255, 26, 64, 0.35);
}

.btn-track-order:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 25px var(--red-glow);
  color: #fff;
}

.btn-wa-chat {
  background: linear-gradient(135deg, #25d366, #128c7e);
  color: #fff;
  box-shadow: 0 0 15px rgba(37, 211, 102, 0.3);
}

.btn-wa-chat:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 20px rgba(37, 211, 102, 0.5);
  color: #fff;
}

.btn-back-home {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #e0e0e6;
}

.btn-back-home:hover {
  background: rgba(255, 255, 255, 0.16);
  color: #fff;
}

.auth-modal-header {
  text-align: center;
  margin-bottom: 25px;
}

.auth-modal-logo {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  border: 3px solid var(--red-primary);
  margin-bottom: 12px;
}

.auth-btn-option,
.btn-auth {
  width: 100%;
  padding: 14px 20px;
  border-radius: var(--radius-md);
  font-family: inherit;
  font-size: 0.95rem;
  font-weight: 700;
  cursor: pointer;
  display: flex !important;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 14px;
  border: none !important;
  text-decoration: none !important;
  transition: var(--transition);
  box-sizing: border-box !important;
}

.auth-buttons-grid {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
}

a.auth-btn-option.discord-btn,
a.auth-btn-option.discord-btn:visited,
a.auth-btn-option.discord-btn:hover,
a.auth-btn-option.discord-btn:active,
a.btn-auth.btn-discord,
a.btn-auth.btn-discord:visited,
a.btn-auth.btn-discord:hover,
a.btn-auth.btn-discord:active {
  background: linear-gradient(135deg, #5865F2, #4752C4) !important;
  color: #ffffff !important;
  text-decoration: none !important;
  box-shadow: 0 4px 20px rgba(88, 101, 242, 0.4) !important;
}

a.auth-btn-option.discord-btn:hover,
a.btn-auth.btn-discord:hover {
  background: linear-gradient(135deg, #4752C4, #3b449b) !important;
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(88, 101, 242, 0.6) !important;
}

a.auth-btn-option.google-btn,
a.auth-btn-option.google-btn:visited,
a.auth-btn-option.google-btn:hover,
a.auth-btn-option.google-btn:active,
a.btn-auth.btn-google,
a.btn-auth.btn-google:visited,
a.btn-auth.btn-google:hover,
a.btn-auth.btn-google:active {
  background: #ffffff !important;
  color: #1f1f1f !important;
  text-decoration: none !important;
  box-shadow: 0 4px 20px rgba(255, 255, 255, 0.25) !important;
}

a.auth-btn-option.google-btn:hover,
a.btn-auth.btn-google:hover {
  background: #f1f1f1 !important;
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(255, 255, 255, 0.4) !important;
}

.auth-note {
  text-align: center;
  margin-top: 20px;
  font-size: 0.8rem;
  color: var(--text-muted);
}

.form-field {
  margin-bottom: 16px;
  text-align: right;
}

.form-field label {
  display: block;
  font-weight: 700;
  font-size: 0.9rem;
  margin-bottom: 6px;
}

.form-field input,
.form-field select {
  width: 100%;
  padding: 12px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-sm);
  color: #fff;
  font-family: inherit;
  outline: none;
}

.form-field input:focus,
.form-field select:focus {
  border-color: var(--red-primary);
  box-shadow: 0 0 12px rgba(255, 26, 64, 0.25);
}

.checkout-total-box {
  background: rgba(255, 26, 64, 0.1);
  border: 1px solid var(--red-primary);
  padding: 14px;
  border-radius: var(--radius-sm);
  margin: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 700;
}

.total-val {
  font-size: 1.3rem;
  font-weight: 900;
  color: var(--red-primary);
}

.order-code-display {
  background: #000;
  border: 2px dashed var(--red-primary);
  padding: 14px;
  border-radius: 10px;
  font-family: 'Outfit', sans-serif;
  font-size: 1.8rem;
  font-weight: 900;
  color: #fff;
  letter-spacing: 2px;
  margin-bottom: 20px;
}

.track-input-wrap {
  display: flex;
  gap: 8px;
  margin-bottom: 20px;
}

.track-input-wrap input {
  flex-grow: 1;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #fff;
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  outline: none;
}

.track-input-wrap button {
  background: var(--red-primary);
  color: #fff;
  border: none;
  padding: 10px 18px;
  border-radius: var(--radius-sm);
  font-weight: 700;
  cursor: pointer;
}

/* Dynamic Sub-Header Category Bar (Sticky below Header with 100% Transparent Background) */
.sub-navbar-bar {
  position: sticky;
  top: 65px;
  z-index: 999;
  background: transparent !important;
  backdrop-filter: none !important;
  border-top: none !important;
  border-bottom: none !important;
  padding: 6px 0;
  transition: var(--transition);
}

.sub-navbar-inner {
  width: 100%;
  max-width: 100%;
  padding: 0 35px;
  display: flex;
  align-items: center;
  gap: 12px;
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.sub-navbar-inner::-webkit-scrollbar {
  display: none;
  width: 0;
  height: 0;
  background: transparent;
}

.sub-cat-pill {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: #e0e0e6;
  padding: 5px 14px;
  border-radius: var(--radius-full);
  font-weight: 700;
  font-size: 0.8rem;
  cursor: pointer;
  white-space: nowrap;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  flex-shrink: 0;
}

.sub-cat-pill:hover {
  background: rgba(255, 26, 64, 0.2);
  color: #fff;
  border-color: var(--red-primary);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(255, 26, 64, 0.25);
}

.sub-cat-pill.active {
  background: linear-gradient(135deg, var(--red-primary), var(--red-hover));
  color: #fff;
  border-color: var(--red-primary);
  box-shadow: 0 0 18px var(--red-glow);
  font-weight: 900;
}

.sub-cat-pill i,
.sub-cat-pill .title-icon {
  font-size: 0.82rem;
  margin-left: 2px;
}

.sub-cat-pill .nav-emoji {
  font-size: 0.85rem;
  margin-left: 2px;
}

.sub-cat-pill.active i,
.sub-cat-pill.active .title-icon {
  color: #fff !important;
}

/* Redesigned Footer (Matching Image 3) */
.footer-section {
  margin-top: 90px;
  background: #040405;
  border-top: 1px solid rgba(255, 26, 64, 0.25);
  padding: 60px 0 0 0;
}

.footer-columns {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 50px;
}

.footer-col h4 {
  font-size: 1.15rem;
  font-weight: 900;
  color: #fff;
  margin-bottom: 20px;
  position: relative;
  display: inline-block;
}

.footer-col h4::after {
  content: '';
  position: absolute;
  bottom: -6px;
  right: 0;
  width: 30px;
  height: 2px;
  background: var(--red-primary);
}

.brand-col .footer-brand-title {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1.5rem;
  font-weight: 900;
  color: #fff;
  margin-bottom: 14px;
}

.footer-brand-logo {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 2px solid var(--red-primary);
}

.footer-bio {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 20px;
  max-width: 420px;
}

.footer-contact-info {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 22px;
  font-size: 0.88rem;
  color: var(--text-muted);
}

.contact-row {
  display: flex;
  align-items: center;
  gap: 10px;
}

.contact-row i {
  color: var(--red-primary);
  width: 18px;
}

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

.footer-social-icons a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 1rem;
  transition: var(--transition);
}

.footer-social-icons a:hover {
  background: var(--red-primary);
  border-color: var(--red-primary);
  box-shadow: 0 0 15px var(--red-glow);
  transform: translateY(-3px);
}

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

.footer-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 600;
  transition: var(--transition);
}

.footer-links a:hover {
  color: #fff;
  padding-right: 5px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 20px 0;
  text-align: center;
  color: var(--text-muted);
  font-size: 0.85rem;
  background: #020203;
}

/* Custom Toast Notifications */
#toast-container {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 99999;
  display: flex;
  flex-direction: column;
  gap: 12px;
  pointer-events: none;
}

.toast-card {
  pointer-events: auto;
  min-width: 320px;
  max-width: 440px;
  background: rgba(13, 14, 21, 0.96);
  border: 1px solid var(--red-primary);
  box-shadow: 0 8px 30px rgba(255, 26, 64, 0.35);
  border-radius: var(--radius-md);
  padding: 14px 18px;
  color: #fff;
  font-family: inherit;
  font-size: 0.9rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 12px;
  backdrop-filter: blur(16px);
  animation: toastSlideIn 0.35s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
}

.toast-card.toast-warning {
  border-color: #ffb703;
  box-shadow: 0 8px 30px rgba(255, 183, 3, 0.35);
}

.toast-card.toast-success {
  border-color: #2ecc71;
  box-shadow: 0 8px 30px rgba(46, 204, 113, 0.35);
}

.toast-icon {
  font-size: 1.3rem;
  color: var(--red-primary);
}

.toast-warning .toast-icon {
  color: #ffb703;
}

.toast-success .toast-icon {
  color: #2ecc71;
}

@keyframes toastSlideIn {
  from {
    opacity: 0;
    transform: translateY(30px) scale(0.9);
  }

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

@media (max-width: 990px) {
  .main-nav {
    display: none;
  }

  .navbar-inner {
    padding: 0 16px;
    gap: 10px;
  }

  .search-wrap {
    width: 140px;
  }

  .cart-total-val {
    display: none;
  }

  .cart-btn {
    padding: 6px 10px;
    font-size: 0.82rem;
  }

  .hero-main-heading {
    font-size: 2.2rem;
  }

  .footer-columns {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 600px) {
  .container {
    width: 96%;
    padding: 0 10px;
  }

  .navbar-controls {
    gap: 6px;
  }

  .search-wrap {
    width: 110px;
  }

  .search-field {
    padding: 6px 10px 6px 28px;
    font-size: 0.78rem;
  }

  .login-action-btn {
    padding: 6px 10px;
    font-size: 0.78rem;
  }

  .cart-drawer {
    width: 94vw !important;
    max-width: 94vw !important;
    height: 88vh !important;
    border-radius: 20px !important;
  }

  .footer-columns {
    grid-template-columns: 1fr;
  }

  #toast-container {
    right: 15px;
    left: 15px;
    bottom: 20px;
  }

  .toast-card {
    min-width: unset;
    width: 100%;
  }
}

/* Floating Professional Contact Widget (Bottom-Left Screen) */
.floating-contact-container {
  position: fixed;
  bottom: 28px;
  left: 28px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.floating-contact-btn {
  height: 54px;
  min-width: 54px;
  background: #23d366;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 50px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.4);
  transition: all 0.3s ease;
  overflow: hidden;
  outline: none;
}

.floating-contact-btn:hover {
  background: #28e16e;
  box-shadow: 0 8px 24px rgba(35, 211, 102, 0.5);
  transform: translateY(-2px);
}

.floating-contact-btn .float-icon {
  font-size: 1.65rem;
  color: #fff;
  flex-shrink: 0;
}

.floating-contact-btn .float-text {
  max-width: 0;
  opacity: 0;
  white-space: nowrap;
  font-weight: 800;
  font-size: 0.95rem;
  font-family: inherit;
  transition: max-width 0.4s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.3s ease, margin 0.3s ease;
  overflow: hidden;
}

.floating-contact-btn:hover .float-text {
  max-width: 130px;
  opacity: 1;
  margin-right: 8px;
}

@keyframes float-icon-bounce {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-3px);
  }
}

/* Floating Contact Popover Menu */
.floating-contact-popover {
  position: absolute;
  bottom: 65px;
  left: 0;
  width: 250px;
  background: rgba(12, 13, 20, 0.96);
  backdrop-filter: blur(20px);
  border: 1px solid var(--red-primary);
  border-radius: 16px;
  padding: 16px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.8), 0 0 25px rgba(255, 26, 64, 0.35);
  opacity: 0;
  visibility: hidden;
  transform: translateY(15px) scale(0.95);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  pointer-events: none;
}

.floating-contact-popover.open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

.popover-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.85rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 12px;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.popover-header button {
  background: none;
  border: none;
  color: var(--text-muted);
  cursor: pointer;
  font-size: 1rem;
}

.popover-header button:hover {
  color: var(--red-primary);
}

.popover-links {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.popover-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.88rem;
  transition: var(--transition);
}

.popover-btn.whatsapp {
  background: rgba(37, 211, 102, 0.12);
  color: #25d366;
  border: 1px solid rgba(37, 211, 102, 0.3);
}

.popover-btn.whatsapp:hover {
  background: #25d366;
  color: #000;
  box-shadow: 0 0 15px rgba(37, 211, 102, 0.4);
}

.popover-btn.discord {
  background: rgba(88, 101, 242, 0.12);
  color: #5865f2;
  border: 1px solid rgba(88, 101, 242, 0.3);
}

.popover-btn.discord:hover {
  background: #5865f2;
  color: #fff;
  box-shadow: 0 0 15px rgba(88, 101, 242, 0.4);
}

/* ==========================================================================
   HOMEPAGE ENHANCEMENTS (SLIDER, MARQUEE, WHY CHOOSE US, REVIEWS)
   ========================================================================== */
.hero-slider-wrap {
  position: relative;
  min-height: 280px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.hero-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  opacity: 0;
  visibility: hidden;
  transform: scale(0.96) translateY(12px);
  transition: opacity 0.75s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.75s cubic-bezier(0.16, 1, 0.3, 1),
    visibility 0.75s ease;
  pointer-events: none;
}

.hero-slide.active {
  position: relative;
  opacity: 1;
  visibility: visible;
  transform: scale(1) translateY(0);
  pointer-events: auto;
}

.hero-slide-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 26, 64, 0.15);
  color: var(--red-primary);
  border: 1px solid rgba(255, 26, 64, 0.35);
  padding: 6px 16px;
  border-radius: 30px;
  font-size: 0.85rem;
  font-weight: 800;
  margin-bottom: 20px;
}

.slider-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 22px;
}

.slider-dots .dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  cursor: pointer;
  transition: all 0.35s ease;
}

.slider-dots .dot.active {
  background: var(--red-primary);
  box-shadow: 0 0 12px var(--red-glow);
  width: 28px;
  border-radius: 10px;
}

/* Marquee Ticker Ribbon (Contained Glass Pill) */
.perks-ticker-ribbon {
  max-width: 1100px;
  width: 90%;
  margin: 25px auto 45px auto;
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 50px;
  padding: 10px 24px;
  overflow: hidden;
  position: relative;
  mask-image: linear-gradient(90deg, transparent 0%, #000 6%, #000 94%, transparent 100%);
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 6%, #000 94%, transparent 100%);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
}

.ticker-track {
  display: flex;
  gap: 45px;
  white-space: nowrap;
  animation: ticker-scroll 32s linear infinite;
  width: max-content;
}

.ticker-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.9);
}

@keyframes ticker-scroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(50%);
  }
}

/* Why Choose Us Grid */
.why-us-section {
  margin-bottom: 70px;
}

.why-us-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 22px;
}

.why-card {
  background: var(--bg-glass);
  backdrop-filter: blur(12px);
  border: 1px solid var(--bg-glass-border);
  border-radius: var(--radius-md);
  padding: 28px 22px;
  text-align: center;
  transition: all 0.35s ease;
  position: relative;
  overflow: hidden;
}

.why-card:hover {
  transform: translateY(-6px);
  border-color: var(--red-primary);
  box-shadow: 0 10px 30px rgba(255, 26, 64, 0.2);
}

.why-icon-wrap {
  width: 58px;
  height: 58px;
  border-radius: 16px;
  background: rgba(255, 26, 64, 0.12);
  border: 1px solid rgba(255, 26, 64, 0.3);
  color: var(--red-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin: 0 auto 18px auto;
  transition: all 0.3s ease;
}

.why-card:hover .why-icon-wrap {
  background: var(--red-primary);
  color: #fff;
  box-shadow: 0 0 20px var(--red-glow);
  transform: scale(1.08);
}

.why-card h3 {
  font-size: 1.15rem;
  font-weight: 900;
  color: #fff;
  margin-bottom: 10px;
}

.why-card p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin: 0;
}

/* Customer Reviews Section */
.reviews-section {
  margin: 70px auto;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  gap: 24px;
}

.review-card {
  background: var(--bg-glass);
  backdrop-filter: blur(12px);
  border: 1px solid var(--bg-glass-border);
  border-radius: var(--radius-md);
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: all 0.35s ease;
}

.review-card:hover {
  transform: translateY(-5px);
  border-color: rgba(255, 256, 254, 0.3);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
}

.review-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
}

.reviewer-avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--red-primary), var(--red-hover));
  color: #fff;
  font-weight: 900;
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 12px var(--red-glow);
  flex-shrink: 0;
}

.reviewer-name {
  font-weight: 800;
  font-size: 0.98rem;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 8px;
}

.buyer-badge {
  font-size: 0.72rem;
  background: rgba(37, 211, 102, 0.15);
  color: #25d366;
  border: 1px solid rgba(37, 211, 102, 0.3);
  padding: 2px 8px;
  border-radius: 20px;
  font-weight: 700;
}

.review-stars {
  font-size: 0.85rem;
  margin-top: 4px;
}

.review-text {
  font-size: 0.92rem;
  color: #e0e0e0;
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 16px;
}

.review-date {
  font-size: 0.78rem;
  color: var(--text-muted);
  text-align: left;
}

/* ==========================================================================
   CHECKOUT PAGE STYLES (2-Column Gaming Layout & Specs)
   ========================================================================== */

.checkout-main-wrap {
  margin-top: 30px;
  margin-bottom: 70px;
}

.active-red-btn {
  background: var(--red-primary) !important;
  color: #fff !important;
  border-color: var(--red-primary) !important;
  box-shadow: 0 0 15px var(--red-glow);
}

.checkout-page-title-box {
  text-align: center;
  margin-bottom: 35px;
}

.checkout-title-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 26, 64, 0.14);
  border: 1px solid rgba(255, 26, 64, 0.35);
  color: #fff;
  font-weight: 800;
  font-size: 0.85rem;
  padding: 4px 14px;
  border-radius: 20px;
  margin-bottom: 12px;
}

.checkout-page-title-box h1 {
  font-size: 1.95rem;
  font-weight: 900;
  color: #fff;
  margin-bottom: 8px;
}

.checkout-page-title-box p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

.checkout-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 30px;
  align-items: start;
}

@media (max-width: 992px) {
  .checkout-grid {
    grid-template-columns: 1fr;
  }
}

.checkout-card {
  background: rgba(12, 13, 20, 0.96);
  border: 1.5px solid rgba(255, 26, 64, 0.35);
  border-radius: 18px;
  padding: 26px 24px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5), 0 0 20px rgba(255, 26, 64, 0.08);
  position: relative;
}

.checkout-section-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 22px;
  border-bottom: 1px solid rgba(255, 26, 64, 0.15);
  padding-bottom: 14px;
}

.checkout-section-header .section-icon {
  font-size: 1.35rem;
  color: var(--red-primary);
}

.checkout-section-header h2 {
  font-size: 1.3rem;
  font-weight: 800;
  color: #fff;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 8px;
}

.req-star {
  color: var(--red-primary);
}

.form-input {
  width: 100%;
  background: rgba(8, 9, 14, 0.9);
  border: 1.5px solid rgba(255, 26, 64, 0.25);
  border-radius: 10px;
  padding: 13px 16px;
  color: #fff;
  font-family: var(--font-ar);
  font-size: 0.95rem;
  outline: none;
  transition: all 0.25s ease;
}

.form-input:focus {
  border-color: var(--red-primary);
  box-shadow: 0 0 15px rgba(255, 26, 64, 0.3);
}

.form-select {
  cursor: pointer;
}

.form-hint {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-top: 5px;
  display: block;
}

/* Phone Input Prefix Wrapper */
.phone-input-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
}

.btn-back-store-nav {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 26, 64, 0.15);
  border: 1px solid var(--red-primary);
  color: #fff;
  padding: 8px 16px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 0.88rem;
  text-decoration: none;
  transition: all 0.25s ease;
}

.btn-back-store-nav:hover {
  background: var(--red-primary);
  box-shadow: 0 0 15px var(--red-glow);
}

.phone-prefix-pill {
  background: linear-gradient(135deg, #1f040a, #38000c);
  border: 1.5px solid var(--red-primary);
  color: #fff;
  font-weight: 800;
  font-size: 0.95rem;
  padding: 13px 16px;
  border-radius: 10px;
  font-family: 'Outfit', sans-serif;
  user-select: none;
  box-shadow: 0 0 10px rgba(255, 26, 64, 0.15);
}

.phone-prefix-input {
  width: 85px;
  background: linear-gradient(135deg, #1f040a, #38000c);
  border: 1.5px solid var(--red-primary);
  color: #fff;
  font-weight: 800;
  font-size: 0.95rem;
  padding: 13px 12px;
  border-radius: 10px;
  font-family: 'Outfit', sans-serif;
  text-align: center;
  outline: none;
}

.phone-input {
  flex: 1;
}

/* Delivery Options Cards */
.delivery-options-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

@media (max-width: 550px) {
  .delivery-options-grid {
    grid-template-columns: 1fr;
  }
}

.delivery-card {
  position: relative;
  display: flex;
  align-items: center;
  padding: 16px 18px;
  background: rgba(15, 16, 24, 0.85);
  border: 1.5px solid rgba(255, 26, 64, 0.22);
  border-radius: 14px;
  cursor: pointer;
  transition: all 0.25s ease;
}

.delivery-card:hover {
  border-color: var(--red-primary);
  background: rgba(255, 26, 64, 0.08);
}

.delivery-card.active {
  border-color: var(--red-primary);
  background: linear-gradient(135deg, rgba(255, 26, 64, 0.16), rgba(120, 0, 20, 0.25));
  box-shadow: 0 0 20px rgba(255, 26, 64, 0.28);
}

.delivery-card-inner {
  display: flex;
  align-items: center;
  gap: 14px;
  width: 100%;
}

.delivery-icon {
  font-size: 1.85rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.wa-icon {
  color: #25d366;
  filter: drop-shadow(0 0 8px rgba(37, 211, 102, 0.35));
}

.dc-icon {
  color: #5865f2;
  filter: drop-shadow(0 0 8px rgba(88, 101, 242, 0.35));
}

.delivery-text-wrap {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.delivery-title {
  font-weight: 800;
  font-size: 1.02rem;
  color: #fff;
  line-height: 1.3;
}

.delivery-sub {
  font-size: 0.76rem;
  color: var(--text-muted);
  font-weight: 700;
}

.check-mark {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 14px;
  color: var(--red-primary);
  font-size: 1.15rem;
  opacity: 0;
  transition: opacity 0.2s ease;
}

.delivery-card.active .check-mark {
  opacity: 1;
}

/* Payment Methods Section */
.payment-category-block {
  background: rgba(8, 9, 14, 0.6);
  border: 1px solid rgba(255, 26, 64, 0.15);
  border-radius: 14px;
  padding: 16px;
}

.payment-cat-title {
  font-size: 0.92rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.payment-cat-title .flag-icon {
  font-size: 1.1rem;
}

.payment-methods-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

@media (max-width: 820px) {
  .payment-methods-grid {
    grid-template-columns: 1fr;
  }
}

.payment-card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 14px 10px;
  border: 1.5px solid rgba(255, 26, 64, 0.2);
  border-radius: 12px;
  background: rgba(14, 15, 22, 0.85);
  cursor: pointer;
  transition: all 0.25s ease;
}

.payment-card:hover {
  border-color: var(--red-primary);
  background: rgba(255, 26, 64, 0.08);
  transform: translateY(-2px);
}

.payment-card.active {
  border-color: var(--red-primary);
  background: linear-gradient(135deg, rgba(255, 26, 64, 0.16), rgba(120, 0, 20, 0.25));
  box-shadow: 0 0 22px rgba(255, 26, 64, 0.32);
}

.pay-card-badge {
  position: absolute;
  top: -9px;
  right: 10px;
  background: linear-gradient(135deg, #ff1a40, #b3001e);
  color: #fff;
  font-size: 0.65rem;
  font-weight: 800;
  padding: 2px 7px;
  border-radius: 20px;
  box-shadow: 0 0 8px rgba(255, 26, 64, 0.4);
}

.pay-card-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
}

.pay-icon-box {
  width: 36px;
  height: 36px;
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  color: #fff;
  flex-shrink: 0;
  transition: transform 0.25s ease;
}

.payment-card:hover .pay-icon-box {
  transform: scale(1.08);
}

.vodafone-bg {
  background: linear-gradient(135deg, #e60000, #990000);
  box-shadow: 0 0 10px rgba(230, 0, 0, 0.35);
}

.credit-card-bg {
  background: linear-gradient(135deg, #1a1f71, #2b3990);
  box-shadow: 0 0 10px rgba(43, 57, 144, 0.4);
  color: #fff;
}

.binance-bg {
  background: linear-gradient(135deg, #f0b90b, #d49b00);
  box-shadow: 0 0 10px rgba(240, 185, 11, 0.35);
  color: #000;
}

.pay-name {
  font-weight: 800;
  font-size: 0.9rem;
  color: #fff;
  line-height: 1;
  display: flex;
  align-items: center;
  white-space: nowrap;
}

.pay-name.en-font {
  font-family: 'Outfit', sans-serif;
  font-size: 1.0rem;
  font-weight: 900;
  letter-spacing: 0.5px;
}

.en-inline-badge {
  display: inline-block;
  background: rgba(240, 185, 11, 0.2);
  color: #f0b90b;
  border: 1px solid rgba(240, 185, 11, 0.4);
  font-size: 0.65rem;
  font-weight: 900;
  font-family: 'Outfit', sans-serif;
  padding: 1px 4px;
  border-radius: 4px;
  margin-right: 4px;
}

.pay-desc {
  font-size: 0.72rem;
  color: var(--text-muted);
  font-weight: 700;
  text-align: center;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  width: 100%;
  margin-top: 6px;
}

.pay-check {
  position: absolute;
  top: 12px;
  left: 12px;
  color: var(--red-primary);
  font-size: 1.15rem;
  opacity: 0;
  transition: opacity 0.2s ease;
}

.payment-card.active .pay-check {
  opacity: 1;
}

/* Payment Instructions Card & Copy Boxes */
.payment-instructions-card {
  background: rgba(10, 11, 17, 0.95);
  border: 1.5px solid rgba(255, 26, 64, 0.3);
  border-radius: 16px;
  padding: 20px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.6), 0 0 15px rgba(255, 26, 64, 0.1);
  transition: all 0.3s ease;
}

.inst-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}

.inst-header h3 {
  font-size: 1.05rem;
  font-weight: 800;
  color: #fff;
  margin: 0;
}

.inst-desc {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-bottom: 15px;
}

.account-copy-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(18, 19, 28, 0.9);
  border: 1.5px solid rgba(255, 26, 64, 0.25);
  border-radius: 12px;
  padding: 12px 16px;
  gap: 15px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.acc-copy-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.acc-label {
  font-size: 0.8rem;
  color: var(--text-muted);
  font-weight: 700;
}

.acc-val {
  font-size: 1.15rem;
  font-weight: 900;
  color: #fff;
  letter-spacing: 0.5px;
  font-family: 'Outfit', sans-serif;
}

.btn-copy-acc {
  background: linear-gradient(135deg, var(--red-primary), var(--red-hover));
  color: #fff;
  border: none;
  padding: 8px 16px;
  border-radius: 8px;
  font-weight: 800;
  font-size: 0.85rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: all 0.25s ease;
  box-shadow: 0 0 12px rgba(255, 26, 64, 0.3);
}

.btn-copy-acc:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 20px var(--red-glow);
}

.btn-copy-acc.copied {
  background: linear-gradient(135deg, #0aff1b, #00b312);
  box-shadow: 0 0 15px rgba(10, 255, 27, 0.4);
}

/* ==========================================================================
   CHECKOUT ORDER SUMMARY (Matching exact screenshot specs)
   ========================================================================== */

.chk-items-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-height: 380px;
  overflow-y: auto;
  padding-left: 4px;
}

.chk-item-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 12px 14px;
  background: rgba(8, 9, 14, 0.8);
  border: 1px solid rgba(255, 26, 64, 0.18);
  border-radius: 12px;
}

.chk-item-media {
  width: 62px;
  height: 62px;
  min-width: 62px;
  border-radius: 12px;
  overflow: hidden;
  background: #060608;
  border: 1px solid rgba(255, 26, 64, 0.3);
  flex-shrink: 0;
}

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

.chk-item-details {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.chk-item-title {
  font-weight: 800;
  font-size: 0.9rem;
  color: #fff;
  line-height: 1.3;
  word-break: break-word;
}

.chk-item-controls {
  display: flex;
  align-items: center;
  gap: 8px;
}

.chk-qty-btn {
  width: 30px;
  height: 30px;
  border-radius: 8px;
  border: 1px solid rgba(255, 26, 64, 0.35);
  background: rgba(255, 26, 64, 0.15);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 0.85rem;
  transition: all 0.2s ease;
}

.chk-qty-btn:hover {
  background: var(--red-primary);
}

.chk-minus-btn {
  background: rgba(255, 26, 64, 0.15);
  border-color: rgba(255, 26, 64, 0.35);
  color: #fff;
}

.chk-minus-btn:hover {
  background: var(--red-primary);
  color: #fff;
}

.chk-plus-btn {
  background: rgba(10, 255, 27, 0.15);
  border-color: rgba(10, 255, 27, 0.4);
  color: #0aff1b;
}

.chk-plus-btn:hover {
  background: #0aff1b;
  color: #000;
}

.chk-qty-btn {
  width: 30px;
  height: 30px;
  border-radius: 8px;
  border: 1px solid rgba(255, 26, 64, 0.35);
  background: rgba(255, 26, 64, 0.15);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 0.85rem;
  transition: all 0.2s ease;
}

.chk-qty-btn:hover {
  background: var(--red-primary);
}

.chk-delete-btn {
  background: rgba(255, 26, 64, 0.2);
  border-color: rgba(255, 26, 64, 0.5);
  color: #ff4d6d;
}

.chk-delete-btn:hover {
  background: #ff1a40;
  color: #fff;
}

.chk-qty-num {
  font-weight: 800;
  font-size: 0.92rem;
  color: #fff;
  padding: 0 4px;
}

.chk-item-price-wrap {
  text-align: left;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 4px;
}

.chk-item-price {
  font-weight: 900;
  font-size: 1.05rem;
  color: #0aff1b;
  font-family: 'Outfit', var(--font-ar);
  text-shadow: 0 0 10px rgba(10, 255, 27, 0.3);
}

.chk-remove-link {
  color: #ff4d6d;
  font-size: 0.78rem;
  font-weight: 700;
  background: none;
  border: none;
  cursor: pointer;
  transition: opacity 0.2s ease;
}

.chk-remove-link:hover {
  opacity: 0.8;
  text-decoration: underline;
}

/* Coupon Box */
.chk-coupon-wrap {
  margin-top: 20px;
}

.coupon-box-row {
  display: flex;
  gap: 10px;
}

.coupon-input {
  flex: 1;
  background: rgba(8, 9, 14, 0.9);
  border: 1.5px solid rgba(255, 26, 64, 0.25);
  border-radius: 10px;
  padding: 12px 16px;
  color: #fff;
  font-family: var(--font-ar);
  font-size: 0.92rem;
  outline: none;
}

.coupon-input:focus {
  border-color: var(--red-primary);
}

.btn-coupon-apply {
  background: rgba(255, 26, 64, 0.18);
  border: 1.5px solid var(--red-primary);
  color: #fff;
  font-weight: 800;
  font-size: 0.95rem;
  padding: 0 22px;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.btn-coupon-apply:hover {
  background: var(--red-primary);
  box-shadow: 0 0 15px var(--red-glow);
}

.coupon-feedback-msg {
  font-size: 0.82rem;
  font-weight: 700;
  margin-top: 6px;
}

/* Totals Summary */
.chk-totals-card {
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 26, 64, 0.2);
}

.chk-summary-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
  font-size: 0.95rem;
}

.chk-summary-row .row-label {
  color: var(--text-main);
  font-weight: 700;
}

.chk-summary-row .row-val {
  font-weight: 800;
  color: #fff;
}

.free-delivery {
  color: #0aff1b !important;
  font-weight: 900;
}

.summary-divider {
  border: none;
  border-top: 1px solid rgba(255, 26, 64, 0.2);
  margin: 16px 0;
}

.total-row .row-label {
  font-size: 1.1rem;
  font-weight: 900;
  color: #fff;
}

.final-total-price {
  font-size: 1.55rem;
  font-weight: 900;
  color: #0aff1b;
  font-family: 'Outfit', var(--font-ar);
  text-shadow: 0 0 15px rgba(10, 255, 27, 0.4);
}

/* Order Submit Button */
.btn-confirm-order {
  width: 100%;
  margin-top: 22px;
  padding: 16px;
  background: linear-gradient(135deg, #ff1a40, #e6002e);
  color: #fff;
  font-weight: 900;
  font-size: 1.1rem;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  box-shadow: 0 0 25px rgba(255, 26, 64, 0.5);
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.btn-confirm-order:hover {
  transform: translateY(-3px);
  box-shadow: 0 0 35px rgba(255, 26, 64, 0.8);
  background: linear-gradient(135deg, #ff002b, #ff1a40);
}

.secure-guarantee-note {
  text-align: center;
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-top: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.secure-guarantee-note i {
  color: #0aff1b;
}

/* Empty State */
.chk-empty-box {
  text-align: center;
  padding: 40px 20px;
}

.empty-icon {
  font-size: 3rem;
  color: var(--red-primary);
  margin-bottom: 16px;
  opacity: 0.8;
}

.chk-empty-box h3 {
  font-size: 1.25rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 8px;
}

.chk-empty-box p {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 20px;
}

.btn-return-shop {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--red-primary);
  color: #fff;
  padding: 12px 24px;
  border-radius: 10px;
  font-weight: 800;
  text-decoration: none;
  transition: all 0.25s ease;
}

.btn-return-shop:hover {
  box-shadow: 0 0 20px var(--red-glow);
  transform: translateY(-2px);
}

@media (max-width: 600px) {
  .floating-contact-container {
    bottom: 20px;
    left: 18px;
  }
}

/* Payment Instructions Box Styling */
.payment-info-box {
  background: rgba(14, 15, 22, 0.95);
  border: 1.5px solid rgba(255, 26, 64, 0.3);
  border-radius: 14px;
  padding: 18px 20px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
  animation: fadeInDown 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.pay-info-header {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.92rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 12px;
}

.pay-info-header i {
  color: var(--red-primary);
  font-size: 1.1rem;
}

.copy-phone-pill {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(8, 9, 14, 0.95);
  border: 1.5px dashed rgba(255, 26, 64, 0.45);
  border-radius: 12px;
  padding: 10px 16px;
  cursor: pointer;
  transition: all 0.25s ease;
  margin-bottom: 14px;
}

.copy-phone-pill:hover {
  border-color: var(--red-primary);
  background: rgba(255, 26, 64, 0.08);
  box-shadow: 0 0 15px rgba(255, 26, 64, 0.2);
}

.phone-num-val {
  font-family: 'Outfit', sans-serif;
  font-size: 1.25rem;
  font-weight: 900;
  color: #fff;
  letter-spacing: 1px;
}

.copy-btn-action {
  display: flex;
  align-items: center;
  gap: 6px;
  background: linear-gradient(135deg, var(--red-primary), #b3001e);
  color: #fff;
  border: none;
  padding: 7px 14px;
  border-radius: 8px;
  font-size: 0.82rem;
  font-weight: 800;
  cursor: pointer;
  transition: all 0.2s ease;
}

.copy-btn-action.copied {
  background: linear-gradient(135deg, #059669, #10b981) !important;
}

.pay-info-notes {
  display: flex;
  flex-direction: column;
  gap: 8px;
  border-top: 1px dashed rgba(255, 255, 255, 0.1);
  padding-top: 12px;
}

.pay-info-notes p {
  margin: 0;
  font-size: 0.83rem;
  color: var(--text-muted);
  line-height: 1.6;
  display: flex;
  align-items: center;
  gap: 8px;
}

.pay-info-notes p i {
  color: var(--red-primary);
  flex-shrink: 0;
}

.pay-info-notes b {
  color: #fff;
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-8px);
  }

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

.crypto-block-title {
  font-size: 0.86rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 6px;
}

.crypto-net-badge {
  display: inline-block;
  background: rgba(10, 255, 27, 0.15);
  color: #0aff1b;
  border: 1px solid rgba(10, 255, 27, 0.4);
  font-size: 0.7rem;
  font-weight: 900;
  padding: 2px 7px;
  border-radius: 6px;
}

.crypto-hint-text {
  display: block;
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-top: -8px;
  margin-bottom: 4px;
}

.crypto-address-text {
  font-size: 0.88rem !important;
  word-break: break-all;
}

.crypto-divider {
  width: 85%;
  height: 2px;
  margin: 18px auto;
  background: linear-gradient(90deg, transparent, rgba(255, 26, 64, 0.6), rgba(240, 185, 11, 0.8), rgba(255, 26, 64, 0.6), transparent);
  border-radius: 2px;
  box-shadow: 0 0 10px rgba(255, 26, 64, 0.35);
}

/* Receipt File Upload Styling */
.receipt-upload-container {
  margin-top: 12px;
}

.receipt-upload-dropzone {
  border: 2px dashed rgba(255, 26, 64, 0.35);
  background: rgba(13, 14, 20, 0.7);
  border-radius: 14px;
  padding: 24px 16px;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.receipt-upload-dropzone:hover {
  border-color: var(--red-primary);
  background: rgba(255, 26, 64, 0.05);
  box-shadow: 0 0 20px rgba(255, 26, 64, 0.2);
}

.receipt-icon-circle {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: rgba(255, 26, 64, 0.12);
  color: var(--red-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin: 0 auto 12px auto;
  transition: transform 0.3s ease;
}

.receipt-upload-dropzone:hover .receipt-icon-circle {
  transform: translateY(-3px) scale(1.08);
  background: var(--red-primary);
  color: #fff;
}

.upload-title {
  display: block;
  font-size: 0.95rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 4px;
}

.upload-hint {
  display: block;
  font-size: 0.78rem;
  color: var(--text-muted);
}

.receipt-preview-box {
  display: flex;
  align-items: center;
  gap: 14px;
  text-align: right;
  padding: 8px;
}

.receipt-preview-box img {
  width: 70px;
  height: 70px;
  object-fit: cover;
  border-radius: 10px;
  border: 2px solid var(--red-primary);
  box-shadow: 0 0 12px rgba(255, 26, 64, 0.3);
}

.receipt-file-info {
  flex: 1;
}

.receipt-file-info span {
  display: block;
  font-size: 0.9rem;
  font-weight: 700;
  color: #fff;
  word-break: break-all;
}

.receipt-file-info small {
  display: block;
  font-size: 0.78rem;
  color: #0aff1b;
  margin-top: 2px;
}

.btn-remove-receipt {
  background: rgba(255, 26, 64, 0.15);
  border: 1px solid rgba(255, 26, 64, 0.4);
  color: #ff4d6d;
  padding: 8px 14px;
  border-radius: 8px;
  font-size: 0.82rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s ease;
}

.btn-remove-receipt:hover {
  background: var(--red-primary);
  color: #fff;
}

.btn-paymob-direct {
  width: 100%;
  background: linear-gradient(135deg, #2563eb, #1d4ed8);
  color: #fff;
  border: 1px solid rgba(59, 130, 246, 0.6);
  padding: 13px 20px;
  border-radius: 12px;
  font-size: 0.92rem;
  font-weight: 800;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  box-shadow: 0 0 20px rgba(37, 99, 235, 0.35);
  transition: all 0.3s ease;
}

.btn-paymob-direct:hover {
  background: linear-gradient(135deg, #1d4ed8, #1e40af);
  box-shadow: 0 0 30px rgba(37, 99, 235, 0.6);
  transform: translateY(-2px);
}

/* Card Wishlist Heart Button (Square Frame) */
.card-wishlist-btn {
  position: absolute;
  top: 10px;
  left: 10px;
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: rgba(13, 14, 20, 0.8);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 26, 64, 0.4);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.05rem;
  cursor: pointer;
  z-index: 5;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
}

.card-wishlist-btn:hover {
  transform: scale(1.1);
  background: rgba(255, 26, 64, 0.25);
  border-color: #ff1a40;
  color: #ff4d6d;
  box-shadow: 0 0 15px rgba(255, 26, 64, 0.4);
}

.card-wishlist-btn.active {
  background: #ff1a40;
  border-color: #ff1a40;
  color: #fff;
  box-shadow: 0 0 15px rgba(255, 26, 64, 0.6);
}

/* Single Product Detail Page Wishlist Button */
.btn-wishlist-detail {
  width: 56px;
  height: 56px;
  background: rgba(255, 26, 64, 0.08);
  color: #ff4d6d;
  border: 1.5px solid rgba(255, 26, 64, 0.4);
  border-radius: 14px;
  font-size: 1.35rem;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(255, 26, 64, 0.15);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(8px);
  flex-shrink: 0;
}

.btn-wishlist-detail:hover {
  background: rgba(255, 26, 64, 0.25);
  border-color: #ff1a40;
  color: #ffffff;
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 0 25px rgba(255, 26, 64, 0.4);
}

.btn-wishlist-detail.active {
  background: #ff1a40;
  border-color: #ff1a40;
  color: #ffffff;
  box-shadow: 0 0 25px rgba(255, 26, 64, 0.6);
}

/* User Profile Badge & Header Dropdown */
.user-badge-wrap {
  position: relative;
  display: inline-block;
}

.user-badge-pill {
  background: rgba(255, 26, 64, 0.08);
  border: 1.5px solid #ff1a40;
  border-radius: 50px;
  padding: 4px 14px 4px 16px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  box-shadow: 0 0 15px rgba(255, 26, 64, 0.25);
  transition: all 0.3s ease;
  user-select: none;
}

.user-badge-pill:hover {
  background: rgba(255, 26, 64, 0.22);
  box-shadow: 0 0 25px rgba(255, 26, 64, 0.5);
  transform: translateY(-1px);
}

.user-badge-arrow {
  font-size: 0.78rem;
  color: #ff1a40;
  transition: transform 0.3s ease;
}

.user-badge-pill:hover .user-badge-arrow {
  transform: translateY(2px);
}

.user-badge-name {
  font-weight: 800;
  font-size: 0.9rem;
  color: #ffffff;
  white-space: nowrap;
}

.user-avatar-img-pill {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 2px solid #ff1a40;
  object-fit: cover;
  flex-shrink: 0;
  box-shadow: 0 0 10px rgba(255, 26, 64, 0.4);
}

.user-dropdown-menu {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  min-width: 230px;
  background: #0d0e14;
  border: 1px solid rgba(255, 26, 64, 0.35);
  border-radius: 14px;
  padding: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.8), 0 0 20px rgba(255, 26, 64, 0.2);
  display: none;
  z-index: 1000;
  animation: fadeInDown 0.25s ease forwards;
}

.user-dropdown-menu.show {
  display: block;
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-8px);
  }

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

.user-drop-header {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 6px 8px;
}

.user-drop-avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 2px solid var(--red-primary);
  object-fit: cover;
}

.user-drop-name {
  font-weight: 800;
  font-size: 0.9rem;
  color: #fff;
}


.user-drop-divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.08);
  margin: 8px 0;
}

.user-drop-item {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  padding: 10px 12px;
  border-radius: 8px;
  color: #e2e8f0;
  text-decoration: none;
  font-size: 0.86rem;
  font-weight: 700;
  background: none;
  border: none;
  cursor: pointer;
  transition: all 0.2s ease;
  text-align: right;
}

.user-drop-item:hover {
  background: rgba(255, 26, 64, 0.12);
  color: #fff;
  transform: translateX(-3px);
}

.user-drop-item.logout-btn {
  color: #ff4d6d;
}

.user-drop-item.logout-btn:hover {
  background: rgba(255, 26, 64, 0.2);
}

/* User Profile Page Styling */
.profile-hero-card {
  background: linear-gradient(135deg, rgba(13, 14, 20, 0.9), rgba(20, 22, 32, 0.95));
  border: 1px solid rgba(255, 26, 64, 0.35);
  border-radius: 20px;
  padding: 30px;
  display: flex;
  align-items: center;
  gap: 24px;
  box-shadow: 0 0 30px rgba(255, 26, 64, 0.15);
  margin-bottom: 30px;
  position: relative;
  overflow: hidden;
}

.profile-avatar-wrap {
  position: relative;
}

.profile-avatar-img {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  border: 3px solid var(--red-primary);
  box-shadow: 0 0 20px rgba(255, 26, 64, 0.4);
  object-fit: cover;
}

.online-status-dot {
  position: absolute;
  bottom: 4px;
  left: 4px;
  width: 18px;
  height: 18px;
  background: #0aff1b;
  border: 3px solid #0d0e14;
  border-radius: 50%;
}

.profile-user-info {
  flex: 1;
}

.profile-name-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 6px;
}

.profile-user-title {
  font-size: 1.6rem;
  font-weight: 900;
  color: #fff;
  margin: 0;
}


.profile-meta-row {
  display: flex;
  gap: 16px;
  color: var(--text-muted);
  font-size: 0.85rem;
}

.profile-quick-stats {
  display: flex;
  gap: 16px;
}

.prof-stat-box {
  background: rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 12px 20px;
  text-align: center;
  min-width: 110px;
}

.prof-stat-num {
  display: block;
  font-size: 1.4rem;
  font-weight: 900;
  color: var(--red-primary);
}

.prof-stat-lbl {
  font-size: 0.78rem;
  color: var(--text-muted);
}

.profile-tabs-bar {
  display: flex;
  gap: 12px;
  margin-bottom: 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding-bottom: 12px;
}

.prof-tab-btn {
  background: rgba(13, 14, 20, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--text-muted);
  padding: 10px 20px;
  border-radius: 10px;
  font-size: 0.9rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 8px;
}

.prof-tab-btn:hover {
  color: #fff;
  border-color: rgba(255, 26, 64, 0.4);
}

.prof-tab-btn.active {
  background: var(--red-primary);
  color: #fff;
  border-color: var(--red-primary);
  box-shadow: 0 0 15px rgba(255, 26, 64, 0.4);
}

.prof-empty-state {
  text-align: center;
  padding: 60px 20px;
  background: rgba(13, 14, 20, 0.6);
  border: 1px dashed rgba(255, 26, 64, 0.3);
  border-radius: 16px;
}

.prof-empty-icon {
  font-size: 3rem;
  color: var(--red-primary);
  margin-bottom: 14px;
}

.btn-return-shop {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--red-primary);
  color: #fff;
  text-decoration: none;
  padding: 12px 24px;
  border-radius: 10px;
  font-weight: 800;
  font-size: 0.9rem;
  margin-top: 16px;
  box-shadow: 0 0 15px rgba(255, 26, 64, 0.3);
  transition: all 0.3s ease;
}

.btn-return-shop:hover {
  background: #ff002b;
  transform: translateY(-2px);
}

/* Modern High-End User Order Card Styles */
.user-order-card {
  background: rgba(12, 13, 20, 0.95);
  border: 1px solid rgba(255, 26, 64, 0.25);
  border-radius: 16px;
  padding: 22px 24px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  overflow: hidden;
}

.user-order-card:hover {
  border-color: #ff1a40;
  box-shadow: 0 0 25px rgba(255, 26, 64, 0.3);
  transform: translateY(-2px);
}

.order-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding-bottom: 14px;
  margin-bottom: 16px;
  flex-wrap: wrap;
  gap: 12px;
}

.order-card-code-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
}

.order-code-badge {
  font-weight: 900;
  color: #ff1a40;
  font-size: 1.05rem;
  background: rgba(255, 26, 64, 0.1);
  padding: 4px 12px;
  border-radius: 8px;
  border: 1px solid rgba(255, 26, 64, 0.3);
  letter-spacing: 0.5px;
}

.order-copy-btn {
  background: transparent;
  border: none;
  color: var(--text-muted);
  cursor: pointer;
  font-size: 0.95rem;
  padding: 4px 6px;
  transition: color 0.2s ease;
}

.order-copy-btn:hover {
  color: #fff;
}

.order-date-text {
  color: var(--text-muted);
  font-size: 0.82rem;
  margin-right: 6px;
}

.order-status-pill {
  padding: 6px 14px;
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 800;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.order-status-pill.status-completed {
  background: rgba(10, 255, 27, 0.12);
  border: 1px solid rgba(10, 255, 27, 0.4);
  color: #0aff1b;
  box-shadow: 0 0 12px rgba(10, 255, 27, 0.2);
}

.order-status-pill.status-pending {
  background: rgba(255, 183, 3, 0.12);
  border: 1px solid rgba(255, 183, 3, 0.4);
  color: #ffb703;
  box-shadow: 0 0 12px rgba(255, 183, 3, 0.2);
}

.order-status-pill.status-cancelled {
  background: rgba(255, 26, 64, 0.12);
  border: 1px solid rgba(255, 26, 64, 0.4);
  color: #ff1a40;
}

/* Order Items Grid */
.order-items-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 12px;
  margin-bottom: 18px;
  background: rgba(0, 0, 0, 0.35);
  padding: 14px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.order-item-mini {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(255, 255, 255, 0.03);
  padding: 8px 12px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.order-item-thumb {
  width: 42px;
  height: 42px;
  border-radius: 8px;
  overflow: hidden;
  background: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border: 1px solid rgba(255, 26, 64, 0.3);
  color: #ff1a40;
  font-size: 1.1rem;
}

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

.order-item-info {
  display: flex;
  flex-direction: column;
}

.order-item-title {
  font-size: 0.88rem;
  font-weight: 800;
  color: #fff;
}

.order-item-meta {
  font-size: 0.78rem;
  color: var(--text-muted);
}

/* Order Footer Meta & Actions */
.order-meta-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  background: rgba(255, 255, 255, 0.02);
  padding: 14px 18px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  margin-bottom: 16px;
}

.order-meta-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.88rem;
}

.order-meta-label {
  color: var(--text-muted);
}

.order-meta-val {
  font-weight: 700;
  color: #fff;
}

/* Universal Order Meta Capsule Pill Frames */
.order-meta-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(0, 0, 0, 0.6);
  padding: 8px 16px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: inset 0 2px 6px rgba(0, 0, 0, 0.5);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Payment Method Capsule (Red Neon border glow) */
.order-meta-pill.meta-payment {
  border-color: rgba(255, 26, 64, 0.35);
  background: rgba(255, 26, 64, 0.06);
}

.order-meta-pill.meta-payment:hover {
  border-color: #ff1a40;
  box-shadow: 0 0 15px rgba(255, 26, 64, 0.25);
}

/* Total Amount Price Capsule (Green Neon border glow) */
.order-meta-pill.meta-price {
  border-color: rgba(10, 255, 27, 0.35);
  background: rgba(10, 255, 27, 0.06);
}

.order-meta-pill.meta-price:hover {
  border-color: #0aff1b;
  box-shadow: 0 0 15px rgba(10, 255, 27, 0.25);
}

/* WhatsApp Delivery Capsule (WhatsApp Green border glow) */
.order-meta-pill.meta-wa {
  border-color: rgba(37, 211, 102, 0.35);
  background: rgba(37, 211, 102, 0.06);
}

.order-meta-pill.meta-wa:hover {
  border-color: #25D366;
  box-shadow: 0 0 15px rgba(37, 211, 102, 0.25);
}

/* Discord Delivery Capsule (Discord Purple border glow) */
.order-meta-pill.meta-dc {
  border-color: rgba(88, 101, 242, 0.35);
  background: rgba(88, 101, 242, 0.06);
}

.order-meta-pill.meta-dc:hover {
  border-color: #5865F2;
  box-shadow: 0 0 15px rgba(88, 101, 242, 0.25);
}

.meta-pill-label {
  font-size: 0.85rem;
  font-weight: 800;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 6px;
}

.meta-pill-val {
  font-size: 0.9rem;
  font-weight: 800;
  color: #ffffff;
}

.meta-pill-price {
  font-size: 1.1rem;
  font-weight: 900;
  color: #0aff1b;
  text-shadow: 0 0 10px rgba(10, 255, 27, 0.3);
}

.contact-block-label {
  font-size: 0.82rem;
  font-weight: 800;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 6px;
}

.contact-code-val {
  font-family: 'JetBrains Mono', 'Fira Code', 'Consolas', monospace;
  font-size: 0.9rem;
  font-weight: 800;
  color: #ffffff;
  background: rgba(0, 0, 0, 0.5);
  padding: 4px 10px;
  border-radius: 6px;
  letter-spacing: 0.5px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-copy-mini {
  background: transparent;
  border: none;
  color: var(--text-muted);
  cursor: pointer;
  font-size: 0.85rem;
  padding: 2px 4px;
  transition: color 0.2s ease;
}

.contact-copy-mini:hover {
  color: #fff;
}

.order-meta-price {
  font-size: 1.15rem;
  font-weight: 900;
  color: #0aff1b;
  text-shadow: 0 0 10px rgba(10, 255, 27, 0.3);
}

.order-card-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.btn-track-discord {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(88, 101, 242, 0.15);
  border: 1px solid rgba(88, 101, 242, 0.4);
  color: #5865F2;
  padding: 8px 16px;
  border-radius: 10px;
  font-size: 0.85rem;
  font-weight: 800;
  text-decoration: none;
  transition: all 0.25s ease;
}

.btn-track-discord:hover {
  background: #5865F2;
  color: #ffffff;
  box-shadow: 0 0 15px rgba(88, 101, 242, 0.5);
}

.receipt-link-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(10, 255, 27, 0.12);
  border: 1px solid rgba(10, 255, 27, 0.3);
  color: #0aff1b;
  padding: 8px 16px;
  border-radius: 10px;
  font-size: 0.85rem;
  font-weight: 800;
  text-decoration: none;
  transition: all 0.25s ease;
}

.receipt-link-btn:hover {
  background: #0aff1b;
  color: #000;
}

.profile-info-card {
  background: rgba(13, 14, 20, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 24px;
}

.account-details-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 16px;
  margin-top: 16px;
}

.acc-detail-item {
  background: rgba(0, 0, 0, 0.3);
  padding: 14px 18px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.acc-detail-label {
  display: block;
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-bottom: 4px;
}

.acc-detail-val {
  font-weight: 800;
  color: #fff;
  font-size: 0.95rem;
}

@media (max-width: 768px) {
  .profile-hero-card {
    flex-direction: column;
    text-align: center;
  }

  .profile-name-row {
    justify-content: center;
  }

  .profile-meta-row {
    justify-content: center;
  }

  .profile-quick-stats {
    width: 100%;
    justify-content: center;
  }
}

/* ============================================================
   REVEAL ON SCROLL SYSTEM (OTHER SECTIONS ONLY)
   ============================================================ */
.reveal-on-scroll {
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.25s cubic-bezier(0.16, 1, 0.3, 1), transform 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}

.reveal-on-scroll.revealed {
  opacity: 1 !important;
  transform: translateY(0) !important;
}

/* ============================================================
   FLYING PRODUCT IMAGE TO CART ANIMATION (SLOW PARABOLIC ARC 1.6s)
   ============================================================ */
.flying-cart-item {
  position: fixed;
  z-index: 999999;
  border-radius: 16px;
  object-fit: cover;
  pointer-events: none;
  border: 2px solid var(--red-primary);
  box-shadow: 0 0 35px rgba(255, 26, 64, 0.9), 0 10px 40px rgba(0, 0, 0, 0.95);
  transition: left 1.6s cubic-bezier(0.25, 1, 0.5, 1), 
              top 1.6s cubic-bezier(0.1, 0.9, 0.2, 1.25), 
              width 1.6s ease, 
              height 1.6s ease, 
              opacity 1.6s ease, 
              transform 1.6s ease;
}

.cart-pulse-bounce {
  animation: cartPulseWobble 0.75s cubic-bezier(0.175, 0.885, 0.32, 1.275) !important;
}

@keyframes cartPulseWobble {
  0% { transform: scale(1); }
  30% { transform: scale(1.48) rotate(-14deg); color: #ff1a40; text-shadow: 0 0 25px rgba(255, 26, 64, 0.95); }
  60% { transform: scale(1.25) rotate(14deg); }
  80% { transform: scale(1.1) rotate(-4deg); }
  100% { transform: scale(1) rotate(0deg); }
}

/* ============================================================
   SEARCH PAGE & HEADER SEARCH STYLES
   ============================================================ */
.search-wrap {
  position: relative;
  width: 190px;
  cursor: pointer;
  transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.search-wrap:focus-within {
  width: 230px;
}

.search-field {
  width: 100%;
  height: 36px;
  padding: 6px 12px 6px 32px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-full);
  color: #fff;
  font-family: inherit;
  font-size: 0.82rem;
  outline: none;
  cursor: pointer;
  transition: var(--transition);
}

.search-field:focus {
  border-color: var(--red-primary);
  background: rgba(255, 26, 64, 0.08);
  box-shadow: 0 0 15px rgba(255, 26, 64, 0.25);
  cursor: text;
}

.search-icon-btn {
  position: absolute;
  left: 8px;
  top: 50%;
  transform: translateY(-50%);
  background: transparent;
  border: none;
  color: var(--text-muted);
  cursor: pointer;
  width: 24px;
  height: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: color 0.25s ease;
  z-index: 2;
}

.search-wrap:focus-within .search-icon-btn,
.search-icon-btn:hover {
  color: var(--red-primary);
}

/* Search Page Hero Banner */
.search-hero-banner {
  background: var(--bg-card);
  border: 1px solid rgba(255, 26, 64, 0.22);
  border-radius: var(--radius-md);
  padding: 30px 24px;
  text-align: center;
  position: relative;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(12px);
  margin-bottom: 25px;
  overflow: hidden;
}

.search-hero-banner::before {
  content: '';
  position: absolute;
  top: -50px;
  left: 50%;
  transform: translateX(-50%);
  width: 300px;
  height: 200px;
  background: radial-gradient(circle, rgba(255, 26, 64, 0.18) 0%, transparent 70%);
  pointer-events: none;
}

.search-badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 26, 64, 0.15);
  border: 1px solid var(--red-primary);
  color: var(--red-primary);
  padding: 4px 14px;
  border-radius: var(--radius-full);
  font-weight: 700;
  font-size: 0.82rem;
  margin-bottom: 12px;
}

.search-hero-title {
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--text-white);
  margin-bottom: 6px;
  letter-spacing: -0.3px;
}

.search-hero-sub {
  color: var(--text-muted);
  font-size: 0.9rem;
  max-width: 600px;
  margin: 0 auto 20px auto;
  line-height: 1.5;
}

/* Main Search Input Bar */
.search-main-bar-wrap {
  display: flex;
  align-items: center;
  background: rgba(8, 9, 14, 0.9);
  border: 1.5px solid rgba(255, 26, 64, 0.35);
  border-radius: var(--radius-sm);
  padding: 4px 6px 4px 14px;
  max-width: 680px;
  margin: 0 auto 16px auto;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
  transition: all 0.3s ease;
}

.search-main-bar-wrap:focus-within {
  border-color: var(--red-primary);
  box-shadow: 0 0 25px rgba(255, 26, 64, 0.35);
}

.search-main-bar-icon {
  font-size: 1.15rem;
  color: var(--red-primary);
  margin-left: 10px;
}

.search-main-input {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  color: var(--text-white);
  font-size: 0.98rem;
  font-family: var(--font-ar);
  padding: 8px 0;
}

.search-main-input::placeholder {
  color: var(--text-muted);
  font-size: 0.88rem;
}

.search-clear-btn {
  background: rgba(255, 255, 255, 0.1);
  border: none;
  color: var(--text-muted);
  width: 24px;
  height: 24px;
  border-radius: 50%;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-left: 8px;
  transition: all 0.2s ease;
}

.search-clear-btn:hover {
  background: var(--red-primary);
  color: #fff;
}

.search-main-submit-btn {
  background: linear-gradient(135deg, var(--red-primary) 0%, #d60029 100%);
  color: #fff;
  border: none;
  padding: 8px 22px;
  border-radius: 6px;
  font-weight: 800;
  font-size: 0.9rem;
  font-family: var(--font-ar);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  box-shadow: 0 3px 12px rgba(255, 26, 64, 0.35);
  transition: all 0.25s ease;
}

.search-main-submit-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 5px 16px rgba(255, 26, 64, 0.55);
}

/* Quick Tags */
.search-quick-tags {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
}

.quick-tag-label {
  color: var(--text-muted);
  font-size: 0.82rem;
  font-weight: 600;
}

.quick-tag-btn {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: var(--text-main);
  padding: 4px 12px;
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  font-family: var(--font-ar);
  cursor: pointer;
  transition: all 0.2s ease;
}

.quick-tag-btn:hover {
  background: rgba(255, 26, 64, 0.2);
  border-color: var(--red-primary);
  color: #fff;
}

/* Search Results Meta Bar */
.search-meta-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-sm);
  padding: 10px 18px;
  margin-bottom: 20px;
}

.search-meta-count {
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--text-white);
}

.active-query-badge {
  background: rgba(255, 26, 64, 0.15);
  border: 1px solid var(--red-primary);
  color: var(--text-white);
  padding: 3px 10px;
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  font-weight: 700;
}
/* Note: Mobile & Tablet UI design system is modularized in /css/mobile.css */
.mobile-hamburger-btn,
.mobile-bottom-nav,
.mobile-drawer-overlay,
.mobile-drawer {
  display: none !important;
}