/* Watches Tabs Section Styling - Dark Theme with Purple Blur */
#watchesTabsSection {
  background: linear-gradient(135deg, rgba(30, 30, 63, 0.95), rgba(45, 45, 95, 0.95)) !important;
  background-color: rgba(30, 30, 63, 0.95) !important;
  padding: 40px 0;
  margin: 0;
  width: 100%;
  display: block;
  backdrop-filter: blur(25px) !important;
  -webkit-backdrop-filter: blur(25px) !important;
  color: var(--text-primary, #ffffff) !important;
}

/* View Products Button Styling */
.watches-view-products-btn {
  background: linear-gradient(135deg, #8b5cf6 0%, #a855f7 100%) !important;
  color: #ffffff !important;
  border: none !important;
  border-radius: 12px !important;
  padding: 12px 32px !important;
  font-size: 1.1rem !important;
  font-weight: 600 !important;
  cursor: pointer !important;
  transition: all 0.3s ease !important;
  box-shadow: 0 4px 16px rgba(139, 92, 246, 0.4) !important;
  border: 2px solid rgba(139, 92, 246, 0.3) !important;
  text-decoration: none !important;
  display: inline-block !important;
  text-align: center !important;
  margin: 20px auto !important;
  filter: drop-shadow(0 0 10px rgba(139, 92, 246, 0.3)) !important;
}

.watches-view-products-btn:hover {
  background: linear-gradient(135deg, #7c3aed 0%, #9333ea 100%) !important;
  transform: translateY(-3px) !important;
  box-shadow: 0 8px 24px rgba(139, 92, 246, 0.6) !important;
  border-color: rgba(139, 92, 246, 0.5) !important;
  filter: drop-shadow(0 0 20px rgba(139, 92, 246, 0.5)) !important;
  color: #ffffff !important;
  text-decoration: none !important;
}

.watches-view-products-btn:active {
  transform: translateY(-1px) !important;
  box-shadow: 0 4px 16px rgba(139, 92, 246, 0.4) !important;
}

/* View Products Button Styling - Fixed Class Name */
.view-products-btn {
  background: linear-gradient(135deg, #8b5cf6 0%, #a855f7 100%) !important;
  color: #ffffff !important;
  border: none !important;
  border-radius: 12px !important;
  padding: 12px 32px !important;
  font-size: 1.1rem !important;
  font-weight: 600 !important;
  cursor: pointer !important;
  transition: all 0.3s ease !important;
  box-shadow: 0 4px 16px rgba(139, 92, 246, 0.4) !important;
  border: 2px solid rgba(139, 92, 246, 0.3) !important;
  text-decoration: none !important;
  display: block !important;
  text-align: center !important;
  margin: 20px auto !important;
  filter: drop-shadow(0 0 10px rgba(139, 92, 246, 0.3)) !important;
  width: fit-content !important;
}

.view-products-btn:hover {
  background: linear-gradient(135deg, #7c3aed 0%, #9333ea 100%) !important;
  transform: translateY(-3px) !important;
  box-shadow: 0 8px 24px rgba(139, 92, 246, 0.6) !important;
  border-color: rgba(139, 92, 246, 0.5) !important;
  filter: drop-shadow(0 0 20px rgba(139, 92, 246, 0.5)) !important;
  color: #ffffff !important;
  text-decoration: none !important;
}

.view-products-btn:active {
  transform: translateY(-1px) !important;
  box-shadow: 0 4px 16px rgba(139, 92, 246, 0.4) !important;
}

/* View Products Button Container for Centering */
.watches-view-products-container {
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
  width: 100% !important;
  margin: 30px 0 !important;
  text-align: center !important;
}

.watches-tabs-row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 32px;
  overflow-x: auto;
  padding: 0 16px 12px 16px;
  border-bottom: 2px solid rgba(139, 92, 246, 0.3) !important;
  margin: 0 auto 18px;
  max-width: 100%;
  width: 100%;
  scrollbar-width: none; /* Hide scrollbar in Firefox */
  -ms-overflow-style: none;  /* Hide scrollbar in IE and Edge */
  scroll-padding: 0 16px;
}

.watches-tabs-row::-webkit-scrollbar {
  display: none; /* Hide scrollbar in Chrome, Safari, Opera */
}

.watches-tab-btn {
  background: none;
  border: none;
  outline: none;
  font-size: 2rem;
  font-weight: 600;
  color: #c084fc !important;
  cursor: pointer;
  padding: 0 8px 8px 8px;
  transition: all 0.3s ease;
  border-bottom: 3px solid transparent;
  white-space: nowrap;
  filter: drop-shadow(0 0 8px rgba(192, 132, 252, 0.2)) !important;
}

.watches-tab-btn:hover {
  color: #a855f7 !important;
  filter: drop-shadow(0 0 12px rgba(168, 85, 247, 0.4)) !important;
}

.watches-tab-btn.active {
  color: #ffffff !important;
  border-bottom: 3px solid #8b5cf6 !important;
  filter: drop-shadow(0 0 15px rgba(139, 92, 246, 0.5)) !important;
}

.watches-products-cards-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 6px;
  padding: 0 8px;
  margin: 12px 0;
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
}

.watches-product-card {
  background: linear-gradient(145deg, rgba(30, 30, 63, 0.9), rgba(45, 45, 95, 0.9)) !important;
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 100%;
  padding: 10px;
  box-sizing: border-box;
  text-align: center;
  border: 1px solid rgba(139, 92, 246, 0.1) !important;
  box-shadow: 0 4px 16px rgba(139, 92, 246, 0.1) !important;
  backdrop-filter: blur(15px) !important;
  -webkit-backdrop-filter: blur(15px) !important;
}

.watches-product-card:hover {
  transform: translateY(-4px) !important;
  box-shadow: 0 8px 24px rgba(139, 92, 246, 0.2), 0 0 30px rgba(139, 92, 246, 0.1) !important;
  border-color: rgba(139, 92, 246, 0.3) !important;
  backdrop-filter: blur(20px) !important;
  -webkit-backdrop-filter: blur(20px) !important;
}

.watches-card-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 0px;
  background: transparent;
  border-radius: 10px;
  filter: drop-shadow(0 0 15px rgba(139, 92, 246, 0.2)) !important;
  transition: all 0.3s ease !important;
}

.watches-product-card:hover .watches-card-img {
  filter: drop-shadow(0 0 25px rgba(139, 92, 246, 0.4)) !important;
}

.watches-card-title {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-primary, #ffffff) !important;
  margin: 12px 0 6px 0;
  padding: 0 4px;
  line-height: 1.3;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  min-height: 2.4em;
  text-align: center;
  width: 100%;
  filter: drop-shadow(0 0 5px rgba(255, 255, 255, 0.1)) !important;
}

.watches-card-price {
  font-size: 0.95rem;
  color: #c084fc !important;
  font-weight: 600;
  margin: 0 0 6px 0;
  padding: 0 4px;
  text-align: center;
  width: 100%;
  filter: drop-shadow(0 0 10px rgba(192, 132, 252, 0.3)) !important;
}

/* Responsive styles */
@media (max-width: 768px) {
  .watches-tabs-row {
    gap: 10px;
    font-size: 0.85rem;
    padding: 0 16px 8px;
    justify-content: flex-start;
  }
  
  .watches-tab-btn {
    font-size: 1rem;
    padding: 6px 12px;
  }
  
  .watches-products-cards-container {
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    padding: 0 8px;
  }
  
  .watches-card-img {
    height: 100%;
    padding: 0px;
    border-radius: 15px;
  }
  
  .watches-card-title {
    font-size: 0.8rem;
    margin: 8px 0 4px 0;
  }
  
  .watches-card-price {
    font-size: 0.85rem;
    margin: 0 0 4px 0;
  }
  
  #watchesTabsSection {
    backdrop-filter: blur(20px) !important;
    -webkit-backdrop-filter: blur(20px) !important;
  }
  
  .watches-product-card {
    backdrop-filter: blur(15px) !important;
    -webkit-backdrop-filter: blur(15px) !important;
  }
}
