/* ====== Section & Title ====== */
.iwatch-section {
  padding: 40px;
  background: #000;   /* Black background */
  text-align: center;
}

.iwatch-title {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 30px;
  color: #fff;  /* White text on black background */
  text-transform: uppercase;
  letter-spacing: 2px;
}

/* ====== Grid Layout ====== */
.productsss-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 25px;
}

/* ====== Card ====== */
.productsss-card {
  background: #111; /* Dark card */
  border-radius: 16px;
  padding: 20px;
  text-align: center;
  box-shadow: 0 6px 20px rgba(255,255,255,0.05);
  transition: 0.3s ease-in-out;
}

.productsss-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 28px rgba(255,255,255,0.1);
}

/* ====== Image ====== */
.productsss-card img {
  width: 100%;
  height: 220px;
  object-fit: contain;
  border-radius: 12px;
  margin-bottom: 15px;
  cursor: pointer;
  background: #000;
}

/* ====== Product Title ====== */
.productsss-card h3 {
  font-size: 18px;
  font-weight: 600;
  color: #fff;  /* White text */
  margin-bottom: 12px;
}

/* ====== Color Options ====== */
.color-options {
  margin-top: 10px;
  font-size: 14px;
  color: #aaa;  /* Grey text */
}

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

.color-dot {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 2px solid #333;
  cursor: pointer;
  transition: 0.3s;
}

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

/* ====== Image Popup Modal ====== */
.image-modal {
  display: none;
  position: fixed;
  z-index: 9999;
  inset: 0;
  background: rgba(0,0,0,0.9); /* Darker overlay */
  justify-content: center;
  align-items: center;
}

.image-modal img {
  max-width: 80%;
  max-height: 80%;
  border-radius: 12px;
  box-shadow: 0 8px 30px rgba(255,255,255,0.3);
}

/* Close Button */
.close-btn {
  position: absolute;
  top: 25px;
  right: 40px;
  font-size: 32px;
  color: #fff;
  cursor: pointer;
  font-weight: bold;
  transition: 0.3s;
}

.close-btn:hover {
  color: #f00;
}
/* ===== Video Section ===== */
.video-section {
  position: relative;
  width: 100%;
  height: 100vh; /* Full desktop height */
  overflow: hidden;
}

/* Video background */
.video-section video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  
    transform: translate(-50%, -50%);
  object-fit: cover; /* Ensures it fills screen */
}

/* Overlay text */
.video-overlay {
  position: relative;
  text-align: center;
  top: 40%;
  color: #fff;
  z-index: 2;
  padding: 0 20px;
}

.video-overlay h1 {
  font-size: 3rem;
  font-weight: 700;
  letter-spacing: 2px;
}

.video-overlay p {
  font-size: 1.2rem;
  margin-top: 12px;
}

/* ===== Mobile Responsive ===== */
@media (max-width: 768px) {
  .video-section {
    height: 70vh; /* Reduce height on mobile */
  }

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

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