/* Button Component
 * Extracted from multiple files to eliminate duplication
 * All button styles and variants
 */

.new-wrapper .btn {
    font-family: "Montserrat", Arial, sans-serif;
    font-size: 0.875rem;
    font-weight: 700;
    display: inline-block;
    text-align: center;
    text-decoration: none;
    white-space: null;
    text-transform: uppercase;
    vertical-align: middle;
    cursor: pointer;
    user-select: none;
    background-color: transparent;
    border: 0;
    padding: 0.5rem 0.875rem;
    transition: all 0.5s ease;
    border-radius: 6px;
}

.new-wrapper .btn.btn-primary {
    background-color: #ff0019;
    color: #fff;
}

.new-wrapper .btn.btn-primary:hover {
    background-color: #0f273a;
}

.new-wrapper .btn.btn-primary.test {
    background-color: #fff;
    color: #0f273a;
    outline-offset: -1px;
    outline: 1px solid #0f273a;
}

.new-wrapper .btn.btn-primary.test .go-shop-icon {
    transition: color 0.5s;
}

.new-wrapper .btn.btn-primary.test:hover,
.new-wrapper .btn.btn-primary.test:hover .go-shop-icon {
    color: #fff;
}

.new-wrapper .btn.btn-primary.test:hover {
    background-color: #0f273a;
    outline: 1px solid #0f273a;
}

.new-wrapper .btn.btn-secondary {
    background-color: #dfe7f1;
    color: #0f273a;
}

.new-wrapper .btn.btn-form,
.new-wrapper .btn.btn-secondary:hover {
    background-color: #0f273a;
    color: #fff;
}

.new-wrapper .btn.btn-form {
    padding: 0.5rem 1rem;
    font-size: 12px;
}

.new-wrapper .btn.btn-form:hover {
    background-color: #fff;
    color: #0f273a;
}

.btn-blue {
    background-color: #0f273a !important;
    color: #fff !important;
    padding: 10px 20px;
    text-decoration: none;
    text-transform: uppercase;
    transition: color .5s ease;
    font-weight: 700;
}

/* Responsive button adjustments */
@media (max-width: 991.98px) {
    .new-wrapper .bestdeals-slider .btn {
        font-size: 12px;
    }
}

@media (max-width: 767.98px) {
    .new-wrapper .product .btn {
        font-size: 0.75rem;
    }
}
div#az-search {
    font-size: 1em;
}

/* BTN FILTER MOBILE */
.new-wrapper .btn-filter-mob {
    background-color: #0f273a;
    color: #fff;
    padding: 1rem 1.5rem;
    text-transform: none;
    border: 1px solid #0f273a;
    display: none;
    align-items: center;
    justify-content: center;
}

@media (max-width: 991.98px) {
    .new-wrapper .btn-filter-mob {
        display: flex;
    }
}

.new-wrapper .btn-filter-mob:before {
    content: "";
    display: inline-block;
    height: 17px;
    width: 15px;
    background-image: url(/assets/images/product-archive/filter-icon.svg);
    background-size: contain;
    background-repeat: no-repeat;
    margin-right: 5px;
}
.new-wrapper .btn-filter-mob span {
    font-weight: 500;
    display: inline-block;
    margin-left: 5px;
}
.new-wrapper .btn-filter-mob:hover {
    background-color: #fff;
    color: #0f273a;
    border: 1px solid #0f273a;
}
.new-wrapper .btn-filter-mob:hover:before {
    background-image: url("/assets/images/product-archive/filter-ico-blue.svg");
}
