 /* Reset & base */
    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
      font-family: sans-serif;
    }
    body {
      background: #0f172a;
      color: #fff;
    
      display: flex;
  flex-direction: column;
  min-height: 100vh;
      

    }
    /* html, body {
  height: 100%;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
} */

    header {
      margin-bottom: 20px;
    }
    .site-name {
  font-family: 'Orbitron', sans-serif;
  font-size: 32px;
  font-weight: 700;
  background: linear-gradient(80deg, #00f0ff, #ffffff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}


    .navbar {
      display: flex;
      justify-content: space-between;
      align-items: center;
      background: #1e293b;
      padding: 16px;
      border-radius: 12px;
    }
    .logo {
      font-size: 1.5rem;
    }
    .nav-links {
      list-style: none;
      display: flex;
      gap: 20px;
    }
    .nav-links li a {
      text-decoration: none;
      color: #fff;
      font-weight: 500;
      transition: color 0.3s;
    }
    .nav-links li a:hover {
      color: #3b82f6;
    }

    /* Banner Slider */
    .banner-slider {
      position: relative;
      width: 100%;
      max-width: 960px;
      height: 250px;
      margin: 0 auto 20px auto;
      border-radius: 12px;
      overflow: hidden;
      box-shadow: 0 4px 15px rgba(0,0,0,0.4);
    }
    .banner-slide {
      width: 100%;
      height: 100%;
      display: none;
      object-fit: cover;
      border-radius: 12px;
    }
    .banner-slide.active {
      display: block;
      animation: fadeIn 1s ease-in-out;
    }
    @keyframes fadeIn {
      from {opacity: 0;}
      to {opacity: 1;}
    }
    .banner-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* أو object-fit: contain لو تبي تظهر الصورة كاملة بدون قص */
  display: block;
}

    /* News Slider */
    .news-slider {
      overflow: hidden;
      background: #1e293b;
      border-radius: 8px;
      padding: 5px 0;
      margin-bottom: 20px;
      max-width: 88%;
      margin-left: auto;
      margin-right: auto;
    }
    .news-track {
      display: flex;
      animation: slide 20s linear infinite;
    }
    .news-item {
      white-space: nowrap;
      padding: 0 10px;
      font-weight: bold;
      color: #facc15;
    }
    @keyframes slide {
      0% { transform: translateX(100%); }
      100% { transform: translateX(-100%); }
    }

    /* Products grid */
    .product-container {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
      gap: 10px;
      /* max-width: 960px; */
      margin: 0 auto;
    }
    .product {
      background: #1e293b;
      padding: 10px;
      border-radius: 16px;
      text-align: center;
      box-shadow: 0 2px 10px rgba(0,0,0,0.2);
      transition: transform 0.2s;
      

    }
    .product:hover {
      transform: scale(1.02);
    }
    .product img {
      width: 100%;
      height: 180px;
      object-fit: cover;
      border-radius: 12px;
        margin-bottom: 10px;
        box-shadow: 0 2px 5px rgba(0,0,0,0.1);
        transition: transform 0.2s;

    }
    .product h3 {
      margin: 12px 0 6px;
      font-size: 1.1rem;
    }
    .product p {
      margin-bottom: 12px;
    }
    .old-price {
      text-decoration: line-through;
      color: #f87171;
      margin-right: 8px;
    }
    .new-price {
      font-weight: bold;
      color: #4ade80;
    }
    button {
      background: #3b82f6;
      border: none;
      padding: 10px 20px;
      color: white;
      border-radius: 8px;
      cursor: pointer;
      font-weight: bold;
      transition: background 0.3s;
    }
    button:hover {
      background: #2563eb;
    }
    @media (max-width: 768px) {
  .product-container {
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 12px;
    padding: 0 10px;
    
   
  }

  .product-card {
    font-size: 14px;
  }

  .product-card h3 {
    font-size: 15px;
  }

  .product-card p {
    font-size: 13px;
  }

  .product-card .price {
    font-size: 14px;
  }
}
.titles {
  font-size: 1.5rem;
  margin-bottom: 20px;
  margin-top: 20px;
  text-align: center;
  color: #facc15;
}
.support-float {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 20px;
  right: 20px;
  background-color: #2563eb;
  color: white;
  border-radius: 50%;
  text-align: center;
  font-size: 30px;
  box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: transform 0.3s ease;
}

.support-float:hover {
  transform: scale(1.1);
  background-color: #2563eb;
}

.site-footer {
  background: #222;
  color: #eee;
  padding: 30px 20px;
}
.footer-content {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.footer-column {
  flex: 1;
  margin: 10px;
}
.footer-column h3,
.footer-column h4 {
  margin-bottom: 10px;
}
.payment-icons img {
  width: 25px;
  height: 25px;
  border-radius: 4px;
  margin-right: 10px;
}
.footer-column ul {
  list-style: none;
}
.footer-column ul li {
  margin-bottom: 8px;
}
.footer-column ul li a {
  color: #ccc;
  text-decoration: none;
}
.footer-column ul li a:hover {
  text-decoration: underline;
}

/* Responsive */
@media (max-width: 768px) {
  .footer-content {
    flex-direction: column;
    text-align: center;
  }
  .product-grid {
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  }
}
/* di */
#icons{
  color: #ccc;
}
