/*
  public/css/shop.css
  This is the simple version that styles the
  <select> form and the slider.
*/

/* --- 1. Filter Form Layout --- */
.category-filter-form {
    margin-bottom: 2rem;
    border-bottom: 2px solid var(--light-grey);
    padding-bottom: 1.5rem;
}

/* --- 2. SLIDER Styles (Unchanged) --- */
.slider {
    position: relative;
    overflow: hidden;
    height: 200px;
    background: var(--secondary-color);
    color: white;
    border-radius: 8px;
    margin-bottom: 2rem;
}

.slider .slide {
    position: absolute;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}
.slider .slide.active {
    opacity: 1;
}