h1 {
    font-size: 30px;
    font-weight: 600;
    line-height: 1.8em;
    color: #001F33;
    text-align: center;
}
.card {
    border: none;
    border-radius: 0;
}

.card-text {
    border: none;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.card img {
    border-radius: 0;
}

.card a {
    text-decoration: none;
    color: #7A7A7A;
}

.card-text {
    display: flex;
    flex-direction: column;
}

.text-title {
    text-align: start;
    line-height: 26px;
    color: rgb(0, 31, 51);
    font-size: 16px;
    font-weight: 600;
}

.price-wrapper {
    display: flex;
    align-items: center;
    gap: 12px;
}

.text-price {
    text-align: start;
    color: rgb(122, 122, 122);
    font-weight: 400;
    line-height: 23px;
    font-size: 15px;
}

.new-price {
    color: rgb(0, 31, 51);
    font-size: 18px;
    font-weight: 500;
    line-height: 23px;
}

@media (max-width: 1200px) {
    .card-text {
        gap: 10px;
    }


    .text-title {
        text-align: center;
        font-size: 14px;
    }

    .price-wrapper {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }

    .text-price {
        text-align: center;
        font-size: 13px;
    }

    .new-price {
        text-align: center;
        font-size: 16px;
    }
}

.card:hover {
    border: 1px solid #F0E5DB;
}

.card img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.card:hover img {
    transform: scale(0.98);
}

/*SIDE MENU START*/

.loop-grid  hr {
    border-top: 1px solid #001d3d25;
    opacity: 1;
}

.loop-grid .side-menu {
    position: sticky;
    top: 20px;
    border-radius: 0;
    padding: 10px;
    background-color: #F5F5F5;
    height: fit-content;
}

/* MOBILE/TABLET view */
@media (max-width: 991px) {
    /* hide sidebar by default */
    .loop-grid .side-menu {
        position: fixed;
        left: 0;
        right: 0;
        bottom: -100%;
        top: auto;
        z-index: 10001;
        background: #fff;
        border-radius: 0;
        box-shadow: 0 -2px 15px rgba(0,0,0,0.25);
        padding: 20px;
        max-height: 80vh;
        overflow-y: auto;
        transition: bottom 0.35s ease-in-out;
    }

    /* show when active */
    .side-menu.active {
        bottom: 0;
    }

    /* overlay */
    .filter-overlay {
        display: none;
        position: fixed;
        inset: 0;
        background: rgba(0, 0, 0, 0.5);
        z-index: 10000;
    }
    .filter-overlay.active {
        display: block;
    }

    /* floating button */
    .filter-toggle-btn {
        width: fit-content;
        /*position: fixed;*/
        /*bottom: 20px;*/
        /*left: 20px;*/
        margin: 0 10px 20px 0;
        z-index: 2000;
        background-color: #fff;
        border: 1px dashed #001d3d;
        color: #001d3d;
        padding: 5px 15px;
        border-radius: 25px;
        font-size: 13px;
        box-shadow: 0 4px 10px rgba(0,0,0,0.25);
    }

    /* close button inside sidebar */
    .side-menu .close-filter {
        display: block;
        text-align: center;
        background: #001d3d;
        color: #fff;
        padding: 10px;
        border: none;
        font-size: 13px;
        margin-bottom: 10px;
    }
}

/* hide close button on desktop */
@media (min-width: 992px) {
    .side-menu .close-filter {
        display: none !important;
    }
}

.loop-grid .side-menu .sort-by select {
    border-radius: 0;
    border-color: #001d3d60;
    font-size: 14px;
}

.loop-grid .side-menu .sort-by select:focus {
    outline: none;
    box-shadow: none;
    border-color: #000;
}

.loop-grid .pagination-container {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.loop-grid .pagination-btn {
    background-color: transparent;
    color: #001d3d;
    border: none;
    padding: 2px 8px;
    border-radius: 0;
    cursor: pointer;
    transition: background 0.3s ease, color 0.3s ease;
}

.loop-grid .pagination-btn svg {
    width: 12px;
    stroke: #001d3d;
    fill: #001d3d;
}

.loop-grid .pagination-btn:hover svg {
    stroke: #fff;
    fill: #fff;
}

.loop-grid .pagination-numbers button {
    margin: 0 4px;
    padding: 8px 12px;
    background-color: #f1f1f1;
    border: none;
    border-radius: 0;
    cursor: pointer;
    line-height: 15px;
    transition: background 0.3s ease, color 0.3s ease;
}

.loop-grid .pagination-btn:hover,
.loop-grid .pagination-numbers button:hover {
    background-color: #001d3d;
    color: #fff;
}

.loop-grid .pagination-numbers button.active {
    background-color: #001d3d;
    color: white;
}

.loop-grid .jet-range__slider__track {
    height: 2px;
    background-color: #001d3d;
    border-style: none;
    border-radius: 155px 155px 155px 155px;
}

.loop-grid .jet-range__values {
    padding-top: 10px;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.6em;
    letter-spacing: 0px;
    text-align: center;
}

.loop-grid input[type="range"]::-webkit-slider-thumb{
    -webkit-appearance: none;
    appearance: none;
    width: 17px;
    height: 17px;
    background-color: #001d3d;
    border-radius: 50%;
    cursor: pointer;
}

.loop-grid input[type="range"]:hover::-webkit-slider-thumb {
    background-color: #001d3d;
    box-shadow: none;
}

.loop-grid input[type="range"]::-moz-range-thumb {
    width: 20px;
    height: 20px;
    background-color: #001d3d;
    border-radius: 50%;
    cursor: pointer;
}

.loop-grid .jet-range__slider .jet-range__slider__input {
    margin: 0 !important;
    padding: 0 !important;
    border-radius: 0 !important;
    border: none !important;
    box-shadow: none !important;
    outline: none !important;
    background: none !important;
    appearance: none !important;
    position: absolute;
    transform: translateY(-50%);
    left: 0;
    width: 100%;
    height: 16px;
    background: rgba(0, 0, 0, 0) !important;
}

.loop-grid input[type="checkbox"]
{
    -webkit-appearance:none;
    width: 14px;
    height: 14px;
    display: inline-block;
    background: #FFFFFF;
    border: 1px solid rgba(220,220,225,1);
}

.loop-grid input[type="checkbox"]:after {
    content: "";
    display: inline-block;
    position: relative;
    top: -7px;
    left: -4px;
    width: 4px;
    height: 8px;
    border-bottom: 1px solid #fff;
    border-right: 1px solid #fff;
    -webkit-transform: rotate(45deg);
}

.loop-grid input[type=checkbox]:checked   {
    background: #001d3d;
    outline: none;
    border: 1px solid #001d3d;
}

.loop-grid .checkbox-wrapper label  {
    font-size: 14px;
    color: #000;
}

.loop-grid input[type="text"] {
    font-size: 14px;
    padding: 5px;
    border-color: #001d3d;
    border-radius: 0;
}

.loop-grid input[type="text"]:focus {
    outline: none;
    box-shadow: none;
    border-color: #000;
}

.loop-grid .filter-body select {
    border-radius: 0;
}

.loop-grid .checkbox-filter-body {
    margin-top: 16px;
    display: flex;
    flex-direction: column;
    max-height: 100px;
    overflow-y: auto;
}

.loop-grid .clear-search {
    position: absolute;
    left: 10px;
    top: 16px;
    transform: translateY(-50%);
    border: none;
    background: transparent;
    font-size: 18px;
    color: #616161;
    cursor: pointer;
    padding: 0;
    z-index: 2;
}

.loop-grid .clear-filter-button button {
    background-color: #001d3d;
    color: #fff;
    border-radius: 0;
}

/*SIDE MENU END*/


