/* SHOP & PRODUCT PAGES STYLES */

/* Common Styles */
.breadcrumb-section {
  padding: 20px 0;
  background: var(--gray-50);
}

.breadcrumb-item a {
  color: var(--gray-600);
  text-decoration: none;
  transition: color 0.3s ease;
}

.breadcrumb-item a:hover {
  color: var(--primary);
}

.breadcrumb-item.active {
  color: #07484a;
  font-weight: 600;
}

/* Shop (Product Listing) */
.shop-filters {
  background: #fff;
  padding: 25px;
  border-radius: 12px;
  border: 1px solid var(--gray-200);
}

.filter-title {
  color: #07484a;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 20px;
  border-bottom: 2px solid var(--primary);
  display: inline-block;
  padding-bottom: 5px;
}

.filter-group {
  margin-bottom: 30px;
}

.form-check-label {
  color: #07484a;
  font-size: 15px;
  cursor: pointer;
}

.form-check-input:checked {
  background-color: var(--primary);
  border-color: var(--primary);
}

.shop-sort {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
}

.sort-select {
  width: auto;
  border-radius: 8px;
  border-color: var(--gray-200);
  color: #07484a;
  padding: 8px 15px;
}

/* Product Cards in Grid */
.shop-grid .product-card {
  background: #fff;
  border: 1px solid var(--gray-200);
  padding: 15px;
  margin-bottom: 20px;
}

/* Product Detail Page */
.product-gallery {
  position: sticky;
  top: 20px;
}

.main-img-container {
  background: var(--gray-50);
  border-radius: 12px;
  padding: 40px;
  margin-bottom: 20px;
  text-align: center;
}

.main-product-img {
  max-width: 100%;
  height: auto;
  filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.1));
}

.thumb-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}

.thumb-item {
  background: var(--gray-50);
  border-radius: 8px;
  padding: 10px;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all 0.3s ease;
}

.thumb-item:hover,
.thumb-item.active {
  border-color: var(--primary);
}

.thumb-item img {
  width: 100%;
}

.product-info-sticky {
  padding-left: 30px;
}

.product-badge {
  display: inline-block;
  padding: 5px 15px;
  background: #ffe4cc;
  color: #e64a19;
  font-weight: 600;
  border-radius: 50px;
  font-size: 12px;
  margin-bottom: 15px;
}

.product-detail-title {
  font-size: 36px;
  color: #07484a;
  font-weight: 700;
  margin-bottom: 15px;
}

.product-detail-price {
  font-size: 28px;
  color: #07484a;
  font-weight: 700;
  margin-bottom: 25px;
}

.product-meta {
  margin-bottom: 30px;
  color: var(--gray-600);
  font-size: 14px;
}

.product-meta i {
  color: var(--primary);
  margin-right: 5px;
}

.product-selector {
  margin-bottom: 25px;
}

.selector-label {
  display: block;
  color: #07484a;
  font-weight: 600;
  margin-bottom: 10px;
}

.size-options {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.size-btn {
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--gray-200);
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.size-btn:hover,
.size-btn.active {
  border-color: var(--primary);
  background: var(--primary);
  color: #fff;
}

.quantity-selector {
  display: flex;
  align-items: center;
  border: 1px solid var(--gray-200);
  border-radius: 8px;
  width: fit-content;
  margin-bottom: 30px;
}

.qty-btn {
  padding: 10px 15px;
  background: none;
  border: none;
  cursor: pointer;
  color: #07484a;
}

.qty-input {
  width: 50px;
  text-align: center;
  border: none;
  border-left: 1px solid var(--gray-200);
  border-right: 1px solid var(--gray-200);
  font-weight: 600;
}

.btn-add-cart {
  width: 100%;
  padding: 15px;
  font-weight: 700;
  font-size: 18px;
  border-radius: 8px;
  margin-bottom: 20px;
}

.product-features-list {
  list-style: none;
  padding: 0;
  margin: 30px 0;
}

.product-features-list li {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 15px;
  color: #07484a;
  font-size: 15px;
}

.product-features-list i {
  color: var(--primary);
}

@media (max-width: 991px) {
  .product-info-sticky {
    padding-left: 0;
    margin-top: 40px;
  }
}
