/* Shop Page - Main Styles */

/* General Layout */
#shop {
  padding: 20px 0 60px;
  background-color: #f9fafb;
}

.container {
  max-width: 1280px;
  margin: 0 auto;
}

/* Section Headers */
#shop h3 {
  font-size: 28px;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 10px;
}

#shop .hr {
  width: 60px;
  height: 3px;
  background-color: #3a86ff;
  margin: 10px 0 20px;
  border: none;
  opacity: 1;
}

#shop p {
  color: #64748b;
  font-size: 16px;
  margin-bottom: 25px;
}

/* Filters Section */
#filters {
  background-color: white;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  padding: 20px;
  position: sticky;
  top: 80px;
}

#filters h4 {
  font-size: 20px;
  font-weight: 600;
  color: #1e293b;
  margin-bottom: 20px;
  border-bottom: 2px solid #f1f5f9;
  padding-bottom: 12px;
}

.category-options p, 
.price-range p {
  font-weight: 600;
  color: #475569;
  margin-bottom: 12px;
}

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

.form-check-input:checked {
  background-color: #3a86ff;
  border-color: #3a86ff;
}

.form-range::-webkit-slider-thumb {
  background: #3a86ff;
}

.price-range span {
  font-size: 13px;
  color: #64748b;
}

#filters .btn-primary {
  background-color: #3a86ff;
  border-color: #3a86ff;
  font-weight: 500;
  box-shadow: 0 2px 5px rgba(58, 134, 255, 0.3);
  transition: all 0.3s ease;
}

#filters .btn-primary:hover {
  background-color: #2563eb;
  border-color: #2563eb;
  transform: translateY(-2px);
}

/* Alert Boxes */
.alert-warning {
  background-color: #fffbeb;
  border-color: #fef3c7;
  color: #92400e;
  border-radius: 8px;
}

.sign-in-link {
  color: #2563eb;
  text-decoration: none;
  font-weight: 500;
}

.sign-in-link:hover {
  text-decoration: underline;
}

/* Product card styles moved to luxury-product-cards.css */

/* Pagination Styles */
.pagination {
  margin-top: 40px;
}

.page-link {
  color: #3a86ff;
  border-color: #e2e8f0;
  padding: 8px 16px;
  transition: all 0.25s ease;
}

.page-item.active .page-link {
  background-color: #3a86ff;
  border-color: #3a86ff;
}

.page-link:hover {
  background-color: #e0e7ff;
  color: #2563eb;
  border-color: #d1d5db;
}

.page-item.disabled .page-link {
  color: #94a3b8;
  background-color: #f8fafc;
}

/* Responsive Adjustments */
@media (max-width: 992px) {
  #filters {
    position: relative;
    top: 0;
    margin-bottom: 30px;
  }
}

/* Shop Notifications */
.shop-notification {
  position: fixed;
  top: 90px;
  right: 20px;
  padding: 12px 20px;
  background: white;
  border-radius: 8px;
  box-shadow: 0 3px 12px rgba(0, 0, 0, 0.15);
  z-index: 1000;
  transform: translateY(-20px);
  opacity: 0;
  transition: transform 0.3s ease, opacity 0.3s ease;
  max-width: 300px;
}

.shop-notification.show {
  transform: translateY(0);
  opacity: 1;
}

.shop-notification.success {
  border-left: 4px solid var(--primary-color);
}

.shop-notification.error {
  border-left: 4px solid #f44336;
}

.shop-notification.info {
  border-left: 4px solid #2196F3;
}