/* === Global === */
body {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  background-color: #0b0c10;
  color: white;
  font-family: 'Courier New', Courier, monospace;
  scroll-behavior: smooth;
}



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

/* Scrollbar track (background) */
::-webkit-scrollbar-track {
  background: #1a1a1a;
  /* dark track */
  border-radius: 10px;
}

/* Scrollbar thumb (the draggable part) */
::-webkit-scrollbar-thumb {
  background: linear-gradient(45deg, #ff00cc, #00e5ff);

  border-radius: 10px;
}

/* On hover effect */
::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(45deg, #00e5ff, #ff00cc);

}





a {
  color: #F6FBFF;
  text-decoration: none;
  font-weight: 600;
}

/* ===== Featured Section ===== */
.featured-section {
  padding: 30px 20px;
  background-color: #0b0c10;
  text-align: center;
  padding-bottom:50px;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 40px;
  background: linear-gradient(to right, #d946ef, #a855f7, #6366f1);
  /* pink → purple → blue */
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  text-align: center;
}

.featured-items {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px;
}

.feature-box {
  background: rgba(255, 255, 255, 0.05);
  border: 2px solid transparent;

  transition: 0.4s ease;
  /* box-shadow: 0 0 10px rgba(0, 229, 255, 0.1); */


  border-radius: 16px;
  padding: 20px;
  width: 280px;
}

.feature-box img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 12px;
}

.feature-box h3 {
  margin-top: 16px;
  font-size: 1.2rem;
  font-weight: 600;
}

.feature-box:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

/* Responsive */
@media (max-width: 768px) {
  .featured-items {
    flex-direction: column;
    align-items: center;
  }

  .feature-box {
    width: 100%;
    max-width: 90%;
  }
}

/* ===== Cards Section ===== */
.card-grid {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  flex-direction: row;
  margin: 10px;

  margin-bottom: 30px;
}

.card {
  width: 300px;
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s;

  border: 1px solid rgba(255, 255, 255, 0.1);
  /* Light border for visibility */
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.6);
  /* Deep shadow for depth */
  margin-bottom: 20px;
}

.card:hover {
  transform: translateY(-5px);
}

.card img {
  width: 100%;
  height: 220px;
  object-fit: contain;
}


.badge-top {
  padding: 10px 16px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
}

.badge-top .tag {
  background: linear-gradient(to right, #d946ef, #a855f7, #6366f1);
  /* pink → purple → blue */
  color: #ffffff;
  font-size: 0.72rem;
  font-weight: 700;
  margin-bottom: 5px;
  padding: 3px 9px;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  
  box-shadow: 0 4px 10px rgba(116, 235, 213, 0.3);
}

.badge-top .rating {
  color: #f8b300;
  font-weight: bold;
}

.card-content {
  padding: 16px;
}

.title {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 4px;
}

.subtitle {
  font-size: 14px;
  color: #666;
  margin-bottom: 8px;
}

.colors {
  display: flex;
  align-items: center;
  margin-bottom: 12px;
}

.color-circle {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  margin-right: 6px;
  border: 1px solid #ccc;
}

.extra-colors {
  font-size: 12px;
  color: #333;
}

.price-section {
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.price-section .discount {
  background: red;
  color: white;
  font-size: 12px;
  padding: 2px 6px;
  border-radius: 4px;
}

.old-price {
  text-decoration: line-through;
  color: #999;
  font-size: 13px;
}

.new-price {
  color: #ffffff;
  font-weight: bold;
}

.add-to-cart {
  margin-top: 16px;
  background: linear-gradient(to right, #d946ef, #a855f7, #6366f1);
  /* pink → purple → blue */

  color: white;
  padding: 10px;
  text-align: center;
  box-shadow: 0 4px 14px rgba(116, 235, 213, 0.4);

  border-radius: 8px;
  cursor: pointer;
}

.add-to-cart:hover {
  background: linear-gradient(to right, #6366f1, #a855f7, #d946ef);
  /* pink → purple → blue */
}


.smartphone-banner {
  display: flex;
  flex-wrap: wrap;
  padding: 20px;
  gap: 20px;
}


@media (max-width: 768px) {
  .card-grid {
    flex-direction: column;
    align-items: center;
  }
.section-title{
  font-size: 2rem;
}
  .card {
    width: 90%;
    max-width: 400px;
  }

  .smartphone-banner {
    flex-direction: column;
    align-items: center;
  }

  .smartphone-banner img {
    max-width: 90%;
  }
}