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







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

/* ===== Featured Section ===== */
.featured-section {
  padding: 10px 20px;
  text-align: center;
}

.section-title {
  font-size: 2.2rem;
  font-weight: 700;
  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;
  margin-top: 30px;
  margin-bottom: 30px;
  text-align: center;
  display: inline-block;
  background-size: 100%;
  background-repeat: no-repeat;
}

.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;
  max-width: 280px;
}

.feature-box img {
  width: 100%;
  height: 180px;
  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;
}

.card {
  background-color: #0b0c10;
  color: white;
  width: 300px;
  border-radius: 16px;
  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 */
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s;
  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: 11px;
}

.badge-top .tag {
  font-weight: bold;
  background: linear-gradient(to right, #d946ef, #a855f7, #6366f1);
  /* pink → purple → blue */
  padding: 3px 5px;
          box-shadow: 0 4px 14px rgba(116, 235, 213, 0.4);

  border-radius: 29px;
  text-transform: uppercase;
}

/* 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);

}

.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 {
  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: #333; */
}

/* ===== Slider Section ===== */
.slider-wrapper {
  overflow-x: auto;
  display: flex;
  gap: 16px;
  padding: 20px;
  scroll-behavior: smooth;
}

.slider-wrapper::-webkit-scrollbar {
  display: none;
}

.slider-card {
  flex: 0 0 auto;
  width: 235px;
  height: 470px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.slider-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.shop-btn {
  text-align: center;
  padding: 12px;
  background: #fff;
  font-weight: bold;
  border-top: 1px solid #eee;
  cursor: pointer;
}

.shop-btn:hover {
  background: #f0f0f0;
}

/* Responsive - Slider */
@media (max-width: 768px) {
  .slider-card {
    width: 60%;
  }

  .section-title {
    font-size: 2rem;

  }


.card {

  width: 360px;
  border-radius: 16px;

 
  margin-bottom: 20px;
}

  .custom-swiper-slide img {
    margin-top: 40px;
   margin-bottom: 0%;
  }


}

  .custom-swiper-container {
    width: 90%;
    height: auto;
    margin: 0 auto;
    position: relative; /* ✅ Needed for absolute text positioning */
  }

  .custom-swiper-slide {
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
  }

  .custom-swiper-slide img {
  width: 100%;
  height: 240px;
  opacity: 0.8;
  
  /* ✅ 80% visible */
  object-fit: cover;
  display: block;
}


  .swiper-wrapper {
    align-items: stretch;
  }

  @media (max-width: 787px) {
    .swiper-pagination {
      display: none;
    }
    .section-title {
      margin-top: 10px;
    }
    .featured-items{
      margin-bottom: 20px;
    }
  }

  /* ✅ SmartWatches text style */
.slider-title {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 5rem;
  font-weight: 800;
  /* is color is good yhi */
      background: linear-gradient(to right, #667eea, #764ba2, #4a2e75);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 
    0 2px 5px rgba(0, 0, 0, 0.5),   /* dark base shadow for depth */
    0 0 20px rgba(59, 130, 246, 0.5), /* larger glow */
    0 0 30px rgba(6, 182, 212, 0.4);  /* aqua glow */
  z-index: 10;
  pointer-events: none;
  white-space: nowrap;
}

  @media (max-width: 640px) {
    .slider-title {
      font-size: 2rem;
    }
  }

@media (max-width: 480px) {
  .slider-card {
    width: 80%;
  }
}

