:root {
  --bg-dark: #07080c;
  --card-bg: #12141e;
  --card-bg-hover: #171a27;
  --sidebar-bg: #12141e;
  --primary-cyan: #00e5ff;
  --accent-cyan: #38bdf8;
  --text-main: #f8fafc;
  --text-muted: #94a3b8;
  --border-dark: rgba(255, 255, 255, 0.08);
  --border-cyan: rgba(0, 229, 255, 0.3);
  --radius-md: 10px;
  --radius-lg: 14px;
  --shadow-cyan: 0 10px 30px -5px rgba(0, 229, 255, 0.35);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: 'Cairo', sans-serif;
}

body {
  background-color: var(--bg-dark);
  color: var(--text-main);
  min-height: 100vh;
  position: relative;
  overflow-x: hidden;
}

.star-bg {
  position: fixed;
  inset: 0;
  background: radial-gradient(circle at 50% 10%, rgba(0, 229, 255, 0.05) 0%, transparent 60%);
  pointer-events: none;
  z-index: 0;
}

/* Top Global Bar */
.top-global-bar {
  background: rgba(14, 16, 24, 0.95);
  border-bottom: 1px solid var(--border-dark);
  padding: 12px 24px;
  position: relative;
  z-index: 10;
}

.top-global-container {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.top-info-box {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-dark);
  border-radius: var(--radius-md);
  padding: 8px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
}

.top-info-box:hover {
  border-color: var(--primary-cyan);
  background: rgba(0, 229, 255, 0.05);
}

.top-info-text {
  display: flex;
  flex-direction: column;
  text-align: right;
}

.top-info-text strong {
  font-size: 0.85rem;
  color: #fff;
}

.top-info-text span {
  font-size: 0.7rem;
  color: var(--text-muted);
}

.discord-top-box {
  background: rgba(0, 229, 255, 0.08);
  border-color: var(--border-cyan);
}

.discord-top-box:hover {
  background: var(--primary-cyan);
}

.discord-top-box:hover .top-info-text strong,
.discord-top-box:hover .top-info-text span,
.discord-top-box:hover i {
  color: #000 !important;
}

.discord-blue {
  color: var(--primary-cyan);
  font-size: 1.4rem;
}

/* Center Logo */
.center-brand-logo {
  display: flex;
  align-items: center;
  justify-content: center;
}

.gold-logo-ring {
  width: 64px;
  height: 64px;
  background: rgba(0, 229, 255, 0.08);
  border: 2px solid var(--primary-cyan);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 20px rgba(0, 229, 255, 0.25);
}

.center-logo-img {
  width: 44px;
  height: 44px;
  object-fit: contain;
}

.top-right-group {
  display: flex;
  align-items: center;
  gap: 12px;
}

.top-cart-btn {
  background: rgba(0, 229, 255, 0.1);
  border: 1px solid var(--border-cyan);
  color: var(--primary-cyan);
  padding: 8px 14px;
  border-radius: var(--radius-md);
  font-size: 0.88rem;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
}

.cart-badge {
  background: var(--primary-cyan);
  color: #000;
  font-weight: 900;
  font-size: 0.75rem;
  padding: 2px 6px;
  border-radius: 10px;
}

.top-login-btn {
  background: rgba(0, 229, 255, 0.15);
  border: 1px solid var(--border-cyan);
  color: var(--primary-cyan);
  padding: 8px 20px;
  border-radius: 8px;
  font-weight: 800;
  font-size: 0.85rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.top-login-btn:hover {
  background: var(--primary-cyan);
  color: #000;
}

.top-profile-chip {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(0, 229, 255, 0.12);
  border: 1px solid var(--border-cyan);
  padding: 6px 12px;
  border-radius: 8px;
  color: #fff;
  font-size: 0.82rem;
  font-weight: 700;
}

.top-avatar-img {
  width: 24px;
  height: 24px;
  border-radius: 50%;
}

.top-logout-btn {
  background: transparent;
  border: none;
  color: #ef4444;
  font-weight: 900;
  cursor: pointer;
}

/* Middle Banner Title Bar */
.banner-title-bar {
  background: rgba(18, 20, 30, 0.85);
  border: 1px solid var(--border-dark);
  max-width: 1280px;
  margin: 20px auto 14px;
  padding: 14px;
  border-radius: var(--radius-md);
  text-align: center;
}

.banner-title-bar h2 {
  font-size: 1.15rem;
  font-weight: 800;
  color: #fff;
}

/* Main Category Navigation Tabs */
.main-category-nav {
  max-width: 1280px;
  margin: 0 auto 24px;
}

.category-nav-container {
  display: flex;
  gap: 10px;
  background: rgba(18, 20, 30, 0.7);
  border: 1px solid var(--border-dark);
  padding: 8px;
  border-radius: var(--radius-md);
  overflow-x: auto;
}

.cat-btn {
  background: transparent;
  border: none;
  color: var(--text-muted);
  padding: 10px 22px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 0.9rem;
  cursor: pointer;
  white-space: nowrap;
  transition: all 0.3s ease;
}

.cat-btn.active, .cat-btn:hover {
  background: var(--primary-cyan);
  color: #000;
  box-shadow: var(--shadow-cyan);
}

/* Oscar Layout (Left Main Content + Right Sidebar) */
.oscar-layout-container {
  max-width: 1280px;
  margin: 0 auto 60px;
  padding: 0 16px;
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 24px;
}

/* Left Column Main Content */
.oscar-main-content {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.oscar-card {
  background: var(--card-bg);
  border: 1px solid var(--border-dark);
  border-radius: var(--radius-lg);
  padding: 26px;
}

.welcome-card {
  text-align: center;
}

.welcome-heading {
  font-size: 1.35rem;
  font-weight: 900;
  color: #fff;
  margin-bottom: 12px;
}

.sub-heading {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--primary-cyan);
  margin: 18px 0 8px;
}

.welcome-text {
  font-size: 0.9rem;
  color: #cbd5e1;
  line-height: 1.8;
  max-width: 840px;
  margin: 0 auto;
}

/* Payment Icons Showcase with Original 100% Reliable Styled CSS Badges */
.payment-methods-showcase {
  margin-top: 30px;
  border-top: 1px solid var(--border-dark);
  padding-top: 20px;
}

.pay-methods-title {
  font-size: 0.85rem;
  color: var(--text-muted);
  font-weight: 700;
  display: block;
  margin-bottom: 16px;
}

.pay-icons-row {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  align-items: center;
}

.pay-logo-badge {
  background: #ffffff;
  border-radius: 8px;
  padding: 6px 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.4);
  transition: all 0.25s ease;
  height: 42px;
  min-width: 68px;
}

.pay-logo-badge:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 18px rgba(0, 229, 255, 0.4);
}

.pay-logo-img {
  height: 24px;
  max-width: 80px;
  object-fit: contain;
}

.apple-badge { background: #000000; border: 1px solid rgba(255, 255, 255, 0.2); }
.apple-badge .pay-logo-img { filter: brightness(0) invert(1); }
.tampay-badge { background: #0f172a; border: 1px solid var(--border-cyan); }
.mada-badge { background: #ffffff; }
.visa-badge { background: #1a1f71; }
.mastercard-badge { background: #111827; border: 1px solid rgba(255,255,255,0.1); }
.paypal-badge { background: #ffffff; }
.gpay-badge { background: #ffffff; }

.footer-pay-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 10px;
}

.catalog-header-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  border-bottom: 1px solid var(--border-dark);
  padding-bottom: 12px;
}

.catalog-header-row h3 {
  font-size: 1.25rem;
  font-weight: 800;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 8px;
}

.product-count {
  background: rgba(255, 255, 255, 0.05);
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.8rem;
  color: var(--text-muted);
}

.empty-category-box {
  text-align: center;
  padding: 50px 20px;
  color: var(--text-muted);
  background: rgba(0, 0, 0, 0.3);
  border: 1px dashed var(--border-dark);
  border-radius: var(--radius-md);
  grid-column: 1 / -1;
}

.empty-cat-icon {
  font-size: 2.5rem;
  color: rgba(0, 229, 255, 0.3);
  margin-bottom: 12px;
}

.empty-category-box h4 {
  font-size: 1.1rem;
  color: #fff;
  margin-bottom: 6px;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
  gap: 18px;
}

/* Product Card Styling */
.product-card {
  background: rgba(0, 0, 0, 0.25);
  border: 1px solid var(--border-dark);
  border-radius: var(--radius-md);
  padding: 18px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  transition: all 0.3s ease;
}

.product-card:hover {
  transform: translateY(-4px);
  border-color: var(--primary-cyan);
  background: var(--card-bg-hover);
  box-shadow: var(--shadow-cyan);
}

.product-tag-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  background: rgba(0, 229, 255, 0.15);
  color: var(--primary-cyan);
  font-size: 0.7rem;
  font-weight: 800;
  padding: 2px 8px;
  border-radius: 12px;
}

.free-tag-badge {
  background: rgba(0, 229, 255, 0.25);
  color: #fff;
}

.card-image-box {
  width: 100%;
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.3);
  border-radius: 8px;
  margin-bottom: 12px;
}

.product-img {
  max-width: 90px;
  max-height: 90px;
  object-fit: contain;
}

.product-title {
  font-size: 1rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 12px;
}

.card-footer-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
}

.price-tag {
  font-size: 1.15rem;
  font-weight: 900;
  color: var(--primary-cyan);
}

.buy-btn {
  background: var(--primary-cyan);
  color: #000;
  border: none;
  padding: 8px 14px;
  border-radius: 6px;
  font-weight: 800;
  font-size: 0.8rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: all 0.2s ease;
}

.buy-btn:hover {
  transform: scale(1.04);
  box-shadow: 0 4px 15px rgba(0, 229, 255, 0.4);
}

.free-btn {
  background: #38bdf8;
}

/* Right Sidebar Column */
.oscar-sidebar {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.oscar-sidebar-card {
  background: var(--sidebar-bg);
  border: 1px solid var(--border-dark);
  border-radius: var(--radius-lg);
  padding: 20px;
}

.menu-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.menu-item {
  background: transparent;
  border: none;
  color: var(--text-muted);
  text-align: right;
  padding: 10px 14px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.2s ease;
}

.menu-item.active, .menu-item:hover {
  background: var(--primary-cyan);
  color: #000;
}

/* Top Supporter Card (أقوى راعي) */
.top-supporter-card {
  text-align: center;
}

.sidebar-title {
  font-size: 1.1rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 16px;
}

.top-supporter-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.circle-avatar-outline {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  border: 2.5px solid var(--primary-cyan);
  padding: 3px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 15px rgba(0, 229, 255, 0.3);
}

.supporter-avatar {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
}

.supporter-name {
  font-size: 1rem;
  font-weight: 800;
  color: #fff;
}

.supporter-sub-text {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-top: 10px;
}

/* Recent Supporters Card (شكراً لدعمك) */
.supporters-vertical-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.supporter-item-row {
  background: rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  padding: 8px 12px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.supporter-item-row .supporter-name {
  font-size: 0.85rem;
  color: #fff;
  font-weight: 700;
}

.supporter-mini-avatar {
  width: 28px;
  height: 28px;
  border-radius: 6px;
  object-fit: cover;
  border: 1px solid var(--border-cyan);
}

/* Bottom Footer */
.oscar-bottom-footer {
  background: #040508;
  border-top: 1px solid var(--border-dark);
  padding: 20px;
  text-align: center;
  color: var(--text-muted);
  font-size: 0.78rem;
}

.footer-container-oscar {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.footer-pay-logos {
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}

/* Modals & Cart styling */
.modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  padding: 20px;
}

.modal-backdrop.active { opacity: 1; pointer-events: auto; }

.modal-card {
  background: var(--card-bg);
  border: 1px solid var(--border-cyan);
  border-radius: var(--radius-lg);
  width: 100%;
  max-width: 520px;
  padding: 24px;
  position: relative;
  max-height: 90vh;
  overflow-y: auto;
}

.modal-spacious { max-width: 580px; }
.modal-large { max-width: 640px; }

.close-btn {
  position: absolute;
  top: 14px;
  left: 14px;
  background: rgba(255, 255, 255, 0.08);
  border: none;
  color: var(--text-muted);
  width: 32px;
  height: 32px;
  border-radius: 50%;
  font-size: 1.1rem;
  cursor: pointer;
}

.modal-header { text-align: center; margin-bottom: 20px; }
.modal-icon { font-size: 2rem; margin-bottom: 6px; }
.text-cyan { color: var(--primary-cyan); }
.modal-header h3 { font-size: 1.25rem; font-weight: 800; color: #fff; }
.modal-sub { font-size: 0.82rem; color: var(--text-muted); }

.cfx-logged-info {
  background: rgba(0, 229, 255, 0.08);
  border: 1px solid var(--border-cyan);
  border-radius: 8px;
  padding: 10px 14px;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
  font-size: 0.85rem;
}

.change-user-link {
  background: transparent;
  border: none;
  color: var(--primary-cyan);
  text-decoration: underline;
  cursor: pointer;
  margin-right: auto;
}

.cart-items-container { display: flex; flex-direction: column; gap: 10px; margin-bottom: 16px; }
.empty-cart-box { text-align: center; padding: 30px; color: var(--text-muted); }

.cart-item-row {
  background: rgba(0, 0, 0, 0.3);
  border: 1px solid var(--border-dark);
  border-radius: 8px;
  padding: 10px 14px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.cart-item-img { width: 38px; height: 38px; object-fit: contain; }
.cart-item-info { display: flex; flex-direction: column; flex-grow: 1; }
.cart-item-info strong { font-size: 0.9rem; color: #fff; }
.cart-item-info span { font-size: 0.75rem; color: var(--primary-cyan); }
.cart-item-controls { display: flex; align-items: center; gap: 6px; }
.qty-btn { background: rgba(255, 255, 255, 0.1); border: none; color: #fff; width: 20px; height: 20px; border-radius: 4px; cursor: pointer; }
.qty-val { font-size: 0.82rem; color: #fff; font-weight: 800; }
.cart-item-price { font-size: 1rem; font-weight: 900; color: var(--primary-cyan); }
.remove-cart-btn { background: transparent; border: none; color: #ef4444; cursor: pointer; }

.cart-summary-box {
  background: rgba(0, 229, 255, 0.05);
  border: 1px solid var(--border-cyan);
  border-radius: 8px;
  padding: 12px 16px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.summary-line { display: flex; justify-content: space-between; font-size: 0.85rem; color: #cbd5e1; }

.gateway-selection-section { margin-bottom: 16px; }
.margin-top-20 { margin-top: 20px; }
.section-label { font-size: 0.85rem; font-weight: 800; color: #fff; margin-bottom: 10px; display: block; }
.gateways-radio-grid { display: flex; flex-direction: column; gap: 10px; }

.gateway-radio-card {
  background: rgba(0, 0, 0, 0.25);
  border: 1px solid var(--border-dark);
  border-radius: 8px;
  padding: 12px 14px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.gateway-radio-card.active { border-color: var(--primary-cyan); background: rgba(0, 229, 255, 0.05); }
.radio-header { display: flex; justify-content: space-between; margin-bottom: 4px; }
.radio-title-row { display: flex; align-items: center; gap: 8px; }
.radio-title-row strong { font-size: 0.9rem; color: #fff; }
.tag-recommended { background: rgba(0, 229, 255, 0.2); color: var(--primary-cyan); font-size: 0.68rem; padding: 2px 6px; border-radius: 4px; }
.tag-global { background: rgba(0, 229, 255, 0.2); color: var(--primary-cyan); font-size: 0.68rem; padding: 2px 6px; border-radius: 4px; }
.tag-alt { background: rgba(255, 255, 255, 0.1); color: #cbd5e1; font-size: 0.68rem; padding: 2px 6px; border-radius: 4px; }
.gateway-desc { font-size: 0.78rem; color: var(--text-muted); margin-bottom: 8px; }
.supported-methods-list { display: flex; gap: 6px; flex-wrap: wrap; }
.method-chip { background: rgba(255, 255, 255, 0.05); font-size: 0.7rem; color: #cbd5e1; padding: 2px 6px; border-radius: 4px; }

.tampay-redirect-notice {
  background: rgba(0, 229, 255, 0.05);
  border: 1px solid var(--border-cyan);
  border-radius: 8px;
  padding: 12px;
  display: flex;
  gap: 10px;
  font-size: 0.78rem;
}

.tebex-code-box {
  background: rgba(0, 0, 0, 0.4);
  border: 2px dashed var(--primary-cyan);
  border-radius: 8px;
  padding: 16px;
  text-align: center;
  margin-bottom: 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.tebex-code-input {
  width: 100%;
  background: rgba(0, 0, 0, 0.5);
  border: 1px solid var(--border-cyan);
  color: var(--primary-cyan);
  font-family: 'Outfit', monospace;
  font-size: 1.1rem;
  font-weight: 900;
  text-align: center;
  padding: 8px;
  border-radius: 6px;
  letter-spacing: 2px;
  outline: none;
}

.copy-code-btn {
  background: rgba(0, 229, 255, 0.15);
  border: 1px solid var(--primary-cyan);
  color: var(--primary-cyan);
  padding: 8px 18px;
  border-radius: 6px;
  font-weight: 800;
  font-size: 0.85rem;
  cursor: pointer;
}

.activation-guide-box {
  background: rgba(0, 229, 255, 0.05);
  border: 1px solid var(--border-cyan);
  border-radius: 8px;
  padding: 14px;
  margin-bottom: 14px;
}

.guide-title { font-size: 0.9rem; font-weight: 800; color: #fff; margin-bottom: 10px; }
.guide-steps { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.guide-steps li { font-size: 0.82rem; color: #cbd5e1; display: flex; align-items: center; gap: 8px; }
.step-badge { background: var(--primary-cyan); color: #000; font-weight: 900; width: 20px; height: 20px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 0.7rem; flex-shrink: 0; }
.security-tips-box { background: rgba(0, 229, 255, 0.05); border: 1px solid var(--border-cyan); border-radius: 8px; padding: 12px; display: flex; gap: 10px; font-size: 0.78rem; color: var(--text-muted); }

.modal-footer { display: flex; gap: 10px; justify-content: flex-end; margin-top: 18px; }
.cancel-btn { background: transparent; border: 1px solid var(--border-dark); color: var(--text-muted); padding: 8px 16px; border-radius: 6px; font-weight: 700; cursor: pointer; }
.submit-btn { background: var(--primary-cyan); color: #000; border: none; padding: 8px 20px; border-radius: 6px; font-weight: 800; cursor: pointer; display: flex; align-items: center; gap: 6px; }

/* Toast Notifications */
.toast-container { position: fixed; bottom: 20px; right: 20px; z-index: 2000; display: flex; flex-direction: column; gap: 8px; }
.toast-item { background: var(--card-bg); border: 1px solid var(--border-cyan); border-radius: 8px; padding: 10px 16px; color: #fff; font-size: 0.85rem; font-weight: 700; display: flex; align-items: center; gap: 8px; box-shadow: var(--shadow-cyan); }
.toast-item.hide { opacity: 0; transition: opacity 0.3s ease; }

/* Direct Pay Info Box & Button */
.direct-pay-info-box {
  background: rgba(0, 229, 255, 0.04);
  border: 1px solid var(--border-cyan);
  border-radius: var(--radius-md);
  padding: 16px 20px;
  text-align: right;
}

.pay-notice-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
  font-size: 0.95rem;
  color: #fff;
}

.pay-notice-desc {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 12px;
}

.pay-logos-mini {
  display: flex;
  gap: 10px;
  align-items: center;
}

.mini-logo-chip {
  background: #ffffff;
  border-radius: 6px;
  padding: 4px 10px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mini-logo-chip img {
  height: 18px;
  max-width: 50px;
  object-fit: contain;
}

.mini-logo-chip.apple-chip { background: #000; border: 1px solid rgba(255,255,255,0.2); }
.mini-logo-chip.apple-chip img { filter: brightness(0) invert(1); }
.mini-logo-chip.visa-chip { background: #1a1f71; }
.mini-logo-chip.master-chip { background: #111827; }

.direct-pay-btn {
  background: linear-gradient(135deg, var(--primary-cyan) 0%, #0284c7 100%) !important;
  color: #000 !important;
  font-size: 1rem !important;
  font-weight: 900 !important;
  padding: 12px 26px !important;
  border-radius: 8px !important;
  box-shadow: 0 4px 20px rgba(0, 229, 255, 0.4) !important;
  transition: all 0.25s ease !important;
}

.direct-pay-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(0, 229, 255, 0.6) !important;
}

/* Fixed Floating Cart Widget on Right Side */
.floating-cart-widget {
  position: fixed;
  right: 24px;
  bottom: 35px;
  z-index: 1500;
  background: rgba(18, 20, 30, 0.95);
  border: 1px solid var(--primary-cyan);
  border-radius: 50px;
  padding: 10px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  box-shadow: 0 10px 30px rgba(0, 229, 255, 0.35);
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

.floating-cart-widget:hover {
  background: var(--primary-cyan);
  color: #000;
  transform: scale(1.06) translateY(-3px);
  box-shadow: 0 14px 40px rgba(0, 229, 255, 0.6);
}

.floating-cart-widget:hover .cart-floating-icon-wrap i,
.floating-cart-widget:hover .floating-cart-text {
  color: #000 !important;
}

.cart-floating-icon-wrap {
  position: relative;
  font-size: 1.3rem;
  color: var(--primary-cyan);
  display: flex;
  align-items: center;
}

.floating-cart-badge {
  position: absolute;
  top: -8px;
  right: -12px;
  background: #ef4444;
  color: #fff;
  font-weight: 900;
  font-size: 0.72rem;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #000;
}

.floating-cart-text {
  font-weight: 800;
  font-size: 0.95rem;
  color: #fff;
}

.floating-cart-widget.cart-pulse-active {
  animation: cartWidgetPulse 0.6s ease-in-out infinite alternate;
}

@keyframes cartWidgetPulse {
  0% { transform: scale(1); box-shadow: 0 10px 30px rgba(0, 229, 255, 0.35); }
  100% { transform: scale(1.15); box-shadow: 0 16px 45px rgba(0, 229, 255, 0.8); }
}

/* Responsive Grid */
@media (max-width: 900px) {
  .oscar-layout-container { grid-template-columns: 1fr; }
  .top-global-container { flex-direction: column; gap: 12px; }
  .floating-cart-widget { right: 14px; bottom: 20px; padding: 8px 16px; }
}
