/* product-details.css for Product Details Pages */

body {
  background-color: white;
  margin: 0;
  font-family: "Varela Round", "Segoe UI", Arial, sans-serif;
  line-height: 1.5;
}

.breadcrumb {
  background-color: transparent;
  padding: 0;
  margin-left: 272px;
}

.breadcrumb-item a {
  text-decoration: none;
  color: #1cdaff;
}

.breadcrumb-item.active {
  color: #292929;
}

/* General Section Padding */
.section-padding {
  padding: 40px 0;
}

/* Product Details Section */
.product-details .main-image img {
  width: 100%;
  height: 500px;
  object-fit: contain;
  border-radius: 5px;
  border: 1px solid #ccc;
}

.product-details .thumbnails .thumbnail {
  width: 100px;
  height: 100px;
  object-fit: contain;
  border: 1px solid #ccc;
  border-radius: 5px;
  cursor: pointer;
}

.product-details .thumbnails .thumbnail:hover {
  border-color: #1cdaff;
}

.product-details h2 {
  font-size: 2rem;
  color: #292929;
  margin-bottom: 10px;
}

.product-details .price {
  font-size: 1.5rem;
  font-weight: bold;
  color: #292929;
  margin-bottom: 10px;
}

.product-details .spec {
  font-size: 1rem;
  font-style: italic;
  color: #666;
  margin-bottom: 10px;
}

.product-details .description {
  font-size: 1.1rem;
  color: #666;
  margin-bottom: 15px;
}

.product-details .rating {
  margin-bottom: 15px;
  color: #1cdaff;
}

.product-details .rating i {
  font-size: 1rem;
}

.product-details .rating span {
  font-size: 1rem;
  margin-left: 5px;
  color: #292929;
}

.product-details .btn-primary {
  background-color: #1cdaff;
  border-color: #1cdaff;
  color: #292929;
  width: 100%;
  padding: 12px;
  border-radius: 5px;
  font-size: 1.1rem;
}

.product-details .btn-primary:hover {
  background-color: #00faa8;
  border-color: #00faa8;
  color: #292929;
}
.original-price {
  text-decoration: line-through;
  color: #666;
  font-weight: normal;
}
/* Tabs Section */
.tabs-section .tab-content h3 {
  font-size: 1.5rem;
  color: #1cdaff;
  margin-bottom: 15px;
}

.tabs-section .tab-content h4 {
  font-size: 1.2rem;
  color: #292929;
  margin-top: 20px;
  margin-bottom: 10px;
}
.tabs-section .nav-tabs {
  border-bottom: 1px solid #ccc;
  margin-bottom: 20px;
}

.tabs-section .nav-tabs .nav-link {
  font-size: 1.1rem;
  color: #666;
  border: none;
  border-bottom: 2px solid transparent;
  padding: 10px 20px;
}

.tabs-section .nav-tabs .nav-link:hover {
  color: #00faa8;
  border-bottom: 2px solid #00faa8;
}

.tabs-section .nav-tabs .nav-link.active {
  color: #1cdaff;
  border-bottom: 2px solid #1cdaff;
}

.tabs-section .tab-content p {
  font-size: 1rem;
  color: #666;
  line-height: 1.6;
}

/* Footer */
.site-footer {
  background-color: #f8f9fa;
  padding: 20px 0;
  border-top: 1px solid #ccc;
}

.site-footer p {
  font-size: 0.9rem;
  color: #666;
}

/* Responsive Adjustments */
@media (max-width: 767.98px) {
  .site-header {
    padding: 10px 0;
  }

  .site-header .logo {
    font-size: 1.2rem;
  }

  .site-header .header-icons i {
    font-size: 1rem;
  }

  .breadcrumb-nav {
    padding: 5px 0;
  }

  .breadcrumb {
    font-size: 0.9rem;
  }

  .section-padding {
    padding: 20px 0;
  }

  .product-details .main-image img {
    height: 300px;
  }

  .product-details .thumbnails .thumbnail {
    width: 80px;
    height: 80px;
  }

  .product-details h2 {
    font-size: 1.5rem;
  }

  .product-details .price {
    font-size: 1.2rem;
  }

  .product-details .spec {
    font-size: 0.9rem;
  }

  .product-details .description {
    font-size: 0.9rem;
  }

  .product-details .rating i,
  .product-details .rating span {
    font-size: 0.9rem;
  }

  .product-details .btn-primary {
    padding: 10px;
    font-size: 0.9rem;
  }

  .tabs-section .nav-tabs .nav-link {
    font-size: 0.9rem;
    padding: 8px 15px;
  }

  .tabs-section .tab-content p {
    font-size: 0.9rem;
  }

  .related-products h2 {
    font-size: 1.5rem;
  }

  .related-products .product-card {
    padding: 15px;
    min-height: 500px;
    height: 500px;
  }

  .related-products .product-image {
    height: 220px;
  }

  .related-products .product-card h4 {
    font-size: 1.3rem;
    min-height: 20px;
  }

  .related-products .product-card .price {
    font-size: 1.2rem;
    min-height: 18px;
  }

  .related-products .product-card .spec {
    font-size: 0.8rem;
    min-height: 14px;
  }

  .related-products .product-card .description {
    font-size: 0.9rem;
    min-height: 16px;
  }

  .related-products .product-card .btn-outline-primary,
  .related-products .product-card .btn-outline-secondary {
    padding: 10px;
    font-size: 0.9rem;
  }

  .related-products .product-card .rating i,
  .related-products .product-card .rating span {
    font-size: 0.8rem;
  }

  .site-footer p {
    font-size: 0.8rem;
  }
}
