/* ===== SHOP PAGE FILTERS ===== */
.filter-section {
  background: #f8f9fa;
  border-radius: 8px;
  padding: 20px;
  margin-bottom: 20px;
}

.filter-section h6 {
  font-weight: 600;
  margin-bottom: 15px;
  color: #333;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.filter-divider {
  border-top: 1px solid #dee2e6;
  margin: 20px 0;
}

/* ===== SEARCH BOX ===== */
#searchInput {
  border: 1px solid #ddd;
  border-radius: 4px;
  padding: 10px 12px;
  font-size: 13px;
  width: 100%;
}

#searchInput:focus {
  outline: none;
  border-color: #82ae46;
  box-shadow: none;
}

/* ===== CATEGORY RADIO BUTTONS ===== */
.category-radio {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
  cursor: pointer;
}

.category-radio input[type="radio"] {
  margin-right: 8px;
  cursor: pointer;
  width: 16px;
  height: 16px;
}

.category-radio label {
  margin: 0;
  cursor: pointer;
  font-size: 13px;
  color: #666;
}

.category-radio input[type="radio"]:checked + label {
  color: #000;
  font-weight: 600;
}



/* ===== PRICE RANGE INPUTS ===== */
.price-inputs {
  display: flex;
  gap: 8px;
}

.price-inputs input {
  flex: 1;
  border: 1px solid #ddd;
  border-radius: 4px;
  padding: 8px 10px;
  font-size: 13px;
}

.price-inputs input:focus {
  outline: none;
  border-color: #82ae46;
}

/* ===== FILTER BUTTONS ===== */
.filter-section .btn {
  font-size: 13px;
  font-weight: 600;
  border-radius: 4px;
  border: none;
  padding: 10px 16px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.filter-section .btn-primary {
  background-color: #82ae46;
  color: white;
  width: 100%;
}

.filter-section .btn-primary:hover {
  background-color: #6b8c38;
  color: white;
}

.filter-section .btn-outline-secondary {
  background-color: white;
  border: 1px solid #ddd;
  color: #000;
  width: 100%;
  margin-top: 8px;
}

.filter-section .btn-outline-secondary:hover {
  background-color: #f5f5f5;
  border-color: #999;
}

/* ===== SORT SELECT ===== */
.sort-select {
  border: 1px solid #ddd;
  border-radius: 4px;
  padding: 8px 10px;
  font-size: 13px;
  background-color: white;
}

.sort-select:focus {
  outline: none;
  border-color: #82ae46;
}

/* ===== PRODUCT COUNT ===== */
.product-count {
  font-size: 13px;
  color: #666;
  margin: 0;
}

/* ===== PRODUCT DETAIL ZOOM ===== */
#imageZoomContainer img {
    transition: transform 0.1s ease-out;
}

#imageZoomContainer.zoomed img {
    transform: scale(2);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .filter-section {
    margin-bottom: 30px;
  }
}
