@font-face {
  font-family: 'arabic';
  src: url('/arabic.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}



body {
  background: linear-gradient(135deg, #0955E4 0%, #02C7F9 100%);
  color: #ffffff;
  font-family: 'Orbitron', 'arabic', sans-serif;
}

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

#bg {
  background-image: linear-gradient(to right bottom, rgba(43, 82, 156, 0.9), rgba(18, 35, 68, 0.9)), url(https://wallpaperbat.com/img/106684766-retro-wallpaper-4k-gaming-room-gaming.jpg);
  width: 100dvw;
  height: 100dvh;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  filter: blur(15px);
  background-size: 110%;
  background-position: center;
  z-index: -1000;
}

.swiper-pagination-bullet-active {
  background-color: #0685edbe !important;
}

.t3 {
  background: -webkit-linear-gradient(45deg, #0955E4, #02C7F9);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  width: fit-content;
}

.halfblur {
  mask-image: linear-gradient(transparent 40%, white 80%);
}


.fbg {
  background: linear-gradient(45deg, #0955E4, #02C7F9);
}

.fbgr {
  background: linear-gradient(45deg, #e40909, #f90202);
}


.fadeliner {
  mask-image: linear-gradient(transparent, white);
}

header {
  mask-image: linear-gradient(90deg, transparent, white 10%, white 90%, transparent);
}


* {
  outline: none !important;
}


option {
  margin: 40px;
  background: #0956e475;
  color: #fff;
  text-shadow: 0 1px 0 rgba(0, 0, 0, 0.4);
}

select {
  -webkit-appearance: none;
  /* For Webkit browsers (Chrome, Safari) */
  -moz-appearance: none;
  /* For Firefox */
  appearance: none;
  /* Standard property */
}

/* Professional product card polish */
.product-card {
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.02));
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease, background .25s ease;
  will-change: transform;
  overflow: hidden;
}

.product-card::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  border-radius: inherit;
  background:
    radial-gradient(120% 120% at 50% -20%, rgba(0, 234, 255, 0.18), transparent 55%),
    radial-gradient(90% 90% at 110% 0%, rgba(9, 85, 228, 0.15), transparent 60%);
  opacity: .25;
  transition: opacity .3s ease;
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, .35), 0 0 0 1px rgba(0, 234, 255, .08) inset;
  border-color: rgba(255, 255, 255, 0.12);
}

.product-card:hover::after {
  opacity: .45;
}

.product-media {
  overflow: hidden;
}

.product-card .product-media img {
  transition: transform .35s ease;
}

.product-card:hover .product-media img {
  transform: scale(1.04) translateY(-2px);
}

/* Clean content divider under image (disabled divider) */
.product-card>.p-4 {
  border-top: 0;
  transition: border-color .25s ease;
}

.product-card:hover>.p-4 {}

/* Unified fixed card heights (grid view) */
.product-card {
  display: flex;
  flex-direction: column;
  height: 320px;
  /* mobile */
}

@media (min-width: 640px) {

  /* sm */
  .product-card {
    height: 480px;
  }
}

@media (min-width: 768px) {

  /* md */
  .product-card {
    height: 520px;
  }
}

@media (min-width: 1280px) {

  /* xl */
  .product-card {
    height: 420px;
  }
}

/* Keep list view auto height */
.product-grid.flex .product-card {
  height: auto !important;
}

/* Keep icons aligned neatly inside cards */
.product-card .fi {
  display: inline-flex;
}

/* Badges */
.badge {
  display: inline-flex;
  align-items: center;
  padding: 0.25rem 0.5rem;
  line-height: 1;
  font-size: 0.70rem;
  font-weight: 700;
  border-radius: 9999px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: #fff;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.06));
  backdrop-filter: blur(6px);
  box-shadow: 0 2px 10px rgba(0, 0, 0, .35);
}

.badge-sale {
  background: linear-gradient(135deg, #ef4444, #f59e0b);
  border-color: rgba(255, 255, 255, 0.25);
}

/* Media frame inner border disabled per request (no mid-card border) */
.product-media::before {
  content: none;
  border: 0;
  box-shadow: none;
}

.product-card:hover .product-media::before {
  border-color: transparent;
  box-shadow: none;
}

/* Smooth content lift */
.product-card>.p-4 {
  transition: border-color .25s ease, transform .25s ease;
}

.product-card:hover>.p-4 {
  transform: translateY(-1px);
}