/* ===== GENERAL ===== */
body {
  margin: 0;
  background: #000; /* Black background */
  font-family: "Poppins", Arial, sans-serif;
  color: rgba(255, 255, 255, 0.9);
}

/* ===== VIDEO SECTION ===== */
.video-section {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 100vh; /* Full screen on desktop */
}

.video-section video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: #fff;
  padding: 10px;
}

.video-overlay h1 {
  font-size: 2.5rem;
  font-weight: 700;
  margin: 0 0 10px;
}

.video-overlay p {
  font-size: 1.1rem;
  opacity: 0.85;
}

/* ===== PRODUCT GRID ===== */
/* ===== PRODUCT SECTION ===== */
.iwatch-section {
  padding: 30px 15px;
  max-width: 1400px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr; /* Default: 1 per row (mobile) */
  gap: 20px;
  background: #000;
}

/* Tablets */
@media (min-width: 600px) {
  .iwatch-section {
    grid-template-columns: repeat(2, 1fr); /* 2 per row */
  }
}

/* Desktop */
@media (min-width: 992px) {
  .iwatch-section {
    grid-template-columns: repeat(4, 1fr); /* 4 per row */
  }
}


.productsss-section {
  display: grid;
grid-template-columns: repeat(4, 1fr); /* Mobile default */
  gap: 25px;
  max-width: 1400px;
  margin: auto;
}

/* Product Card */
.productsss-card {
  background: #000;
  border: 2px solid #fff; /* White border */
  padding: 20px;
  border-radius: 15px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative; /* for labels */
}

.productsss-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 6px 25px rgba(255, 255, 255, 0.15);
}

.productsss-card img {
  width: 100%;
  max-width: 250px;
  border-radius: 10px;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.productsss-card img:hover {
  transform: scale(1.05);
}

.productsss-card h3 {
  margin: 15px 0 10px;
  font-size: 20px;
  font-weight: 600;
  color: #fff;
}

.productsss-card p {
  font-size: 14px;
  opacity: 0.8;
}

/* ===== COLOR OPTIONS ===== */
.color-options {
  margin: 10px 0;
  font-size: 14px;
}

.color-range {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 8px;
}

.color-dot {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 2px solid #fff;
  display: inline-block;
  cursor: pointer;
  transition: transform 0.2s ease;
}

.color-dot:hover {
  transform: scale(1.2);
}

/* ===== LABEL (Hot Selling etc.) ===== */
.hot-label {
  position: absolute;
  top: 10px;
  left: 10px;
  background: red;
  color: white;
  font-size: 13px;
  padding: 5px 12px;
  border-radius: 20px;
  font-weight: 600;
}

/* ===== RESPONSIVE GRID ===== */
@media (min-width: 600px) {
  .productsss-section {
    grid-template-columns: repeat(2, 1fr); /* 2 per row on tablets */
  }
}

@media (min-width: 992px) {
  .productsss-section {
    grid-template-columns: repeat(4, 1fr); /* 4 per row on desktop */
  }
}

/* ===== VIDEO MOBILE FIX ===== */
@media (max-width: 768px) {
  .video-section {
    height: 60vh; /* Shorter video on mobile */
  }

  .video-overlay h1 {
    font-size: 1.8rem;
  }

  .video-overlay p {
    font-size: 1rem;
  }
}
