/* ===================================
   PRICE SLIDER STYLES (from collection7.css)
   =================================== */

.price-input-range .price-range .price-container {
    position: relative;
    height: 3px;
    background-color: rgba(207, 207, 207, 0.5);
    /* border-color with opacity */
}

.price-input-range .price-range .price-container .price-slider {
    position: absolute;
    left: 0;
    right: 0;
    height: 100%;
    background-color: #000000;
    /* secondary-font-color */
}

.price-input-range .price-range .range-input input {
    top: -3px;
    height: 3px;
    -webkit-appearance: none;
    pointer-events: none;
    cursor: pointer;
}

/* Chrome, Safari, Edge, Opera */
.price-input-range .price-range .range-input input[type="range"]::-webkit-slider-thumb {
    height: 16px;
    width: 16px;
    border-radius: 50%;
    background-color: #000000;
    /* secondary-font-color */
    -webkit-appearance: none;
    appearance: none;
    pointer-events: auto;
}

/* Firefox */
.price-input-range .price-range .range-input input[type="range"]::-moz-range-thumb {
    height: 16px;
    width: 16px;
    border-radius: 50%;
    background-color: #000000;
    /* secondary-font-color */
    -webkit-appearance: none;
    appearance: none;
    pointer-events: auto;
}

/* Price Input Fields */
.price-input-range .price-input .price-field span.price-input-title {
    font-size: 11px;
    transform: translateY(-100%);
}

.price-input-range .price-input .price-field span.price-input-prefix {
    font-size: 13px;
    left: 15px;
}

/* Chrome, Safari, Edge, Opera - Remove spinner */
.price-input-range .price-input .price-field input[type="number"]::-webkit-outer-spin-button,
.price-input-range .price-input .price-field input[type="number"]::-webkit-inner-spin-button {
    margin: 0;
    -webkit-appearance: none;
}

/* Firefox - Remove spinner */
.price-input-range .price-input .price-field input[type=number] {
    -moz-appearance: textfield;
}

/* ===================================
   PAGINATION STYLES (from custom-overrides.css)
   =================================== */

.ab-pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.ab-page a,
.ab-page span {
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 500;
    color: #000;
    border-radius: 50%;
    text-decoration: none;
}

.ab-page.active span {
    background: #eeeeee;
}

.ab-page.arrow a {
    font-size: 18px;
}

.ab-page a:hover {
    background: #f3f3f3;
}

/* ===================================
   PRODUCT GRID RESPONSIVE
   =================================== */

@media (max-width: 1199px) {
    .shop-col {
        flex: 0 0 33.333333%;
        max-width: 33.333333%;
    }
}

@media (max-width: 767px) {
    .shop-col {
        flex: 0 0 50%;
        max-width: 50%;
    }
}

/* ===================================
   FILTER SIDEBAR STYLES
   =================================== */

.shop-sidebar input[type="checkbox"] {
    width: 18px;
    height: 18px;
    cursor: pointer;
}

.shop-sidebar label {
    margin-bottom: 10px;
    cursor: pointer;
}

/* Brand Filter Items */
.brand-item {
    margin-bottom: 12px;
    cursor: pointer;
    gap: 10px;
    user-select: none;
}

.brand-checkbox {
    width: 18px;
    height: 18px;
    border: 1px solid #cfcfcf;
    border-radius: 3px;
    cursor: pointer;
}

.brand-label {
    font-size: 14px;
    color: #4a4a4a;
}

.brand-item:hover .brand-label {
    color: #222;
}

/* Sort Dropdown */
#select-wrap {
    display: none;
}

#select-wrap.show {
    display: block;
}