@font-face {
  font-family: "Sahel";
  src: url("../font/sahel/Sahel-Light-FD.ttf");
}
*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: "Sahel", sans-serif;
}
.hero-overlay {
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.8) 0%,
    rgba(0, 0, 0, 0.3) 100%
  );
}

.artwork-card:hover .artwork-overlay {
  opacity: 1;
}

.artwork-overlay {
  background: rgba(0, 0, 0, 0.7);
  transition: all 0.3s ease;
  opacity: 0;
}

.gradient-bg {
  background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
}

.sidebar-item.active {
  background-color: rgba(79, 70, 229, 0.1);
  border-right: 3px solid #4f46e5;
  color: #4f46e5;
}

.sidebar-item:hover:not(.active) {
  background-color: rgba(79, 70, 229, 0.05);
}

.order-status-pending {
  background-color: #fef3c7;
  color: #d97706;
}

.order-status-completed {
  background-color: #dcfce7;
  color: #16a34a;
}

.order-status-canceled {
  background-color: #fee2e2;
  color: #dc2626;
}

.wallet-balance {
  background: linear-gradient(135deg, #4f46e5 0%, #8b5cf6 100%);
}

.tab-active {
  border-bottom: 2px solid #4f46e5;
  color: #4f46e5;
}

.art-card:hover .art-overlay {
  opacity: 1;
}

.filter-option:hover {
  color: #3b82f6;
  border-color: #3b82f6;
}

.filter-option.active {
  background-color: #3b82f6;
  color: white;
}

.price-range::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #3b82f6;
  cursor: pointer;
}

.checkout-btn {
  background: linear-gradient(135deg, #6e45e2 0%, #88d3ce 100%);
  transition: all 0.3s ease;
}
.checkout-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(110, 69, 226, 0.4);
}
