/* ===================================
 DMWP Styles - Migrated from Inline Styles
 =================================== */

/* Navbar Styles */
.navbar-container-black {
  background-color: black;
}

.navbar-brand-xlarge {
  font-size: x-large;
}

.nav-link-orange {
  color: orange !important;
}

/* Text Colors */
.text-orange {
  color: orange;
}

.text-white {
  color: white;
}

/* Text Alignment */
.text-left {
  text-align: left;
}

/* Existing styles from the HTML files (keeping all <style> tag content) */
.feature-icon {
  width: 4rem;
  height: 4rem;
  border-radius: 0.75rem;
}

/* Carousel styles from index.html */
.carousel-item img {
  max-width: 50%;
  height: auto;
  margin: 0 auto;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
  width: 2.5rem;
  height: 2.5rem;
}

.carousel-control-prev-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23FFA500'%3e%3cpath d='m3.86 8.753 5.482 4.796c.646.566 1.658.106 1.658-.753V3.204a1 1 0 0 0-1.659-.753l-5.48 4.796a1 1 0 0 0 0 1.506z'/%3e%3c/svg%3e") !important;
}

.carousel-control-next-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23FFA500'%3e%3cpath d='m12.14 8.753-5.482 4.796c-.646.566-1.658.106-1.658-.753V3.204a1 1 0 0 1 1.659-.753l5.48 4.796a1 1 0 0 1 0 1.506z'/%3e%3c/svg%3e") !important;
}

.carousel-control-prev,
.carousel-control-next {
  width: 5%;
  opacity: 0.8;
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
  opacity: 1;
}

/* WhatsApp Floating Button Styles */
.whatsapp-float {
  position: fixed;
  width: 50px;
  height: 50px;
  bottom: 40px;
  right: 40px;
  background-color: #25d366;
  color: #FFF;
  border-radius: 50px;
  text-align: center;
  font-size: 28px;
  box-shadow: 2px 2px 3px #999;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
  text-decoration: none;
}

.whatsapp-float:hover {
  background-color: #128C7E;
  color: #FFF;
  transform: scale(1.1);
}

@keyframes pulse {
  0% {
      box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
  }
  70% {
      box-shadow: 0 0 0 10px rgba(37, 211, 102, 0);
  }
  100% {
      box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

.whatsapp-float {
  animation: pulse 2s infinite;
}

/* Product Detail Pages Styles */
.product-image {
  max-height: 400px;
  object-fit: contain;
  background-color: white;
  border-radius: 0.5rem;
  padding: 1rem;
}

.thumbnail {
  height: 80px;
  object-fit: contain;
  background-color: white;
  border-radius: 0.25rem;
  cursor: pointer;
  border: 2px solid transparent;
  transition: border-color 0.2s;
}

.thumbnail:hover,
.thumbnail.active {
  border-color: orange;
}

.price {
  color: orange;
  font-size: 2rem;
  font-weight: bold;
}

.btn-comprar {
  background-color: #007bff;
  border-color: #007bff;
  color: white;
  font-weight: bold;
  font-size: 1.2rem;
  padding: 0.75rem 2rem;
}

.btn-comprar:hover {
  background-color: #0056b3;
  border-color: #0056b3;
}

/* Button Styles for Detail Pages */
.btn-comprar-detail {
  background-color: #007bff;
  border-color: #007bff;
  color: white;
  font-weight: bold;
  font-size: 1.2rem;
  padding: 0.75rem 2rem;
}

.btn-comprar-detail:hover {
  background-color: #0056b3;
  border-color: #0056b3;
  color: white;
}

/* Button Styles for Shop Listing - Smaller, more compact */
.btn-comprar-shop {
  background-color: #007bff;
  border-color: #007bff;
  color: white;
  font-weight: bold;
  font-size: 0.9rem;
  padding: 0.5rem 1rem;
}

.btn-comprar-shop:hover {
  background-color: #0056b3;
  border-color: #0056b3;
  color: white;
}

.btn-details-shop {
  font-size: 0.9rem;
  padding: 0.5rem 1rem;
}

.stock-warning {
  color: #dc3545;
  font-weight: bold;
}

.stock-normal {
  color: #28a745;
}

.breadcrumb {
  background-color: transparent;
}

.breadcrumb-item a {
  color: orange;
  text-decoration: none;
}

.product-info {
  background-color: #212529;
  border: 1px solid #495057;
  border-radius: 0.75rem;
  padding: 2rem;
}

.compatible-brands {
  background-color: #343a40;
  border-radius: 0.5rem;
  padding: 1rem;
}

.brand-badge {
  background-color: orange;
  color: black;
  padding: 0.25rem 0.75rem;
  border-radius: 1rem;
  font-weight: bold;
  margin: 0.25rem;
  display: inline-block;
}

/* Shop Page Styles */
.product-card {
  background-color: #212529;
  border: 1px solid #495057;
  border-radius: 0.75rem;
  transition: transform 0.2s;
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(255, 165, 0, 0.2);
}

.variant-selector {
  background-color: #343a40;
  border-radius: 0.5rem;
  padding: 0.75rem;
  margin: 0.75rem 0;
}

.variant-selector label {
  color: orange;
  font-weight: bold;
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
}

.variant-selector select {
  font-size: 0.9rem;
}

.bullet-points {
  margin: 1rem 0;
}

.bullet-point {
  display: flex;
  align-items: flex-start;
  margin-bottom: 0.5rem;
  color: #dee2e6;
}

.bullet-point:last-child {
  margin-bottom: 0;
}

.bullet-icon {
  color: #28a745;
  margin-right: 0.5rem;
  margin-top: 0.1rem;
  flex-shrink: 0;
}

.bullet-text {
  flex: 1;
  line-height: 1.4;
}

/* ECC Plus specific styles */
.variant-section {
  background-color: #343a40;
  border-radius: 0.5rem;
  padding: 1rem;
  margin-bottom: 1rem;
}

.image-container {
  position: relative;
  display: inline-block;
  width: 100%;
}

.video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
  cursor: pointer;
  border-radius: 0.5rem;
}

.image-container:hover .video-overlay {
  opacity: 1;
}

.play-button {
  background: rgba(255, 165, 0, 0.9);
  border: none;
  border-radius: 50%;
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: black;
  font-size: 2rem;
  transition: transform 0.2s ease, background 0.2s ease;
}

.play-button:hover {
  transform: scale(1.1);
  background: rgba(255, 165, 0, 1);
}

.clickable-image {
  cursor: pointer;
}

/* Mobile responsive adjustments */
@media (max-width: 768px) {
  .variant-selector {
      padding: 0.5rem;
  }
    
  .variant-selector label {
      font-size: 0.8rem;
  }
    
  .variant-selector select {
      font-size: 0.8rem;
  }

  .bullet-points {
      margin: 0.75rem 0;
  }

  .bullet-point {
      margin-bottom: 0.4rem;
      font-size: 0.9rem;
  }

  .bullet-icon {
      margin-right: 0.4rem;
  }

  .play-button {
      width: 60px;
      height: 60px;
      font-size: 1.5rem;
  }
}