html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Jost', sans-serif;
    color: #333;
}

.head-h1 {
    text-shadow: 1px 1px 4px rgba(0, 0, 0, .75);
}

.head-p {
    text-shadow: 1px 1px 4px rgba(0, 0, 0, .9);
}

.model-item {
    transition: all 0.4s ease;
}

#BestSellingSlider {
    scrollbar-width: none;
    /* Firefox */
    -ms-overflow-style: none;
    /* IE/Edge */
}

#BestSellingSlider::-webkit-scrollbar {
    display: none;
    /* Chrome/Safari */
}

.material-symbols-outlined {
    font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 24;
}

.glass-panel {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.bg-stitch-gradient {
    background: linear-gradient(135deg, #4a4bd7 0%, #8083ff 100%);
}

/* THUMB (circle) */
#priceRange::-webkit-slider-thumb {
    appearance: none;
    height: 14px;
    width: 14px;
    background: black;
    border-radius: 50%;
    cursor: pointer;
    margin-top: -6px;
}

#priceRange::-moz-range-thumb {
    height: 14px;
    width: 14px;
    background: black;
    border-radius: 50%;
    cursor: pointer;
}

.input-lux {
  border-bottom: 1px solid rgba(0, 0, 0, 0.2); /* outline-variant/40 */
  padding-bottom: 6px;
  transition: all 0.3s ease;
}

.input-lux label {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: #6b7280; /* text-secondary */
  display: block;
  margin-bottom: 8px;
}

.input-lux input {
  width: 100%;
  background: transparent;
  outline: none;
  border: none;
  font-size: 18px;
  font-weight: 300;
  color: #C6A75E; /* primary gold */
  padding-left: 0;
}

.input-lux input::placeholder {
  color: rgba(198, 167, 94, 0.4); /* primary/40 */
}

.input-lux:focus-within {
  border-bottom: 1px solid #C6A75E; /* primary */
}

.input-lux input::placeholder {
  transition: opacity 0.3s ease;
}

.input-lux input:focus::placeholder {
  opacity: 0.3;
}