﻿/* Sidebar
---------------------------*/
.shop-sidebar-list ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.shop-sidebar-list li {
    padding-top: 5px;
    padding-bottom: 5px;
}

.shop-sidebar-block {
    margin-bottom: 30px;
}

    .shop-sidebar-block .shop-sidebar-title {
        position: relative;
    }

        .shop-sidebar-block .shop-sidebar-title h5, .shop-sidebar-block .shop-sidebar-title .h5 {
            margin: 0 0 15px;
            padding: 0 0 12px;
            border-bottom: 1px solid var(--bs-gray-300);
            font-size: 16px;
            text-transform: uppercase;
            font-weight: 600;
            width: 100%;
            display: inline-block;
            vertical-align: top;
            color: var(--bs-text-mode);
        }

            .shop-sidebar-block .shop-sidebar-title h5[aria-expanded="false"] i:before, .shop-sidebar-block .shop-sidebar-title .h5[aria-expanded="false"] i:before {
                content: "\f282";
            }

        .shop-sidebar-block .shop-sidebar-title i {
            position: absolute;
            right: 0;
            top: 3px;
        }

.radio-wrapper {
    display: flex;
    align-items: center; /* Aligns items vertically in the center */
}

.form-check-input,
.form-check-label {
    display: inline-block;
    vertical-align: middle; /* Helps align items vertically */
}


/* Product Card 1
        -------------------------------------------*/
.product-card-1 {
    border: 1px solid var(--bs-gray-300);
    position: relative;
    background: var(--bs-body-bg);
}

    .product-card-1 .badge-ribbon {
        position: absolute;
        top: 15px;
        left: 0;
        z-index: 1;
    }

        .product-card-1 .badge-ribbon .badge {
            border-radius: 0;
        }

    .product-card-1 .product-card-image {
        border-bottom: 1px solid var(--bs-gray-300);
    }

    .product-card-1 .product-media {
        overflow: hidden;
        position: relative;
    }

        .product-card-1 .product-media img {
            transform: scale(1);
            transition: ease all 0.35s;
            width: 100%;
        }

    .product-card-1 .product-action {
        position: absolute;
        top: 8px;
        right: 8px;
        display: flex;
        flex-direction: column;
        transition: ease all 0.35s;
        z-index: 1;
    }

@media (min-width: 576px) {
    .product-card-1 .product-action {
        opacity: 0;
        right: 25px;
        top: 15px;
    }
}

.product-card-1 .product-action .btn {
    padding: 0;
    width: 35px;
    height: 35px;
    margin-bottom: 10px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

@media (max-width: 575.98px) {
    .product-card-1 .product-action .btn {
        width: 30px;
        height: 30px;
        margin-bottom: 5px;
    }
}

.product-card-1 .product-cart-btn {
    position: relative;
}

@media (min-width: 576px) {
    .product-card-1 .product-cart-btn {
        position: absolute;
        bottom: -25%;
        left: 0;
        right: 0;
        transition: ease all 0.35s;
    }
}

.product-card-1 .product-cart-btn .btn {
    border-radius: 0;
}

.product-card-1 .product-card-info {
    position: relative;
    padding: 8px;
    text-align: center;
}

@media (min-width: 576px) {
    .product-card-1 .product-card-info {
        padding: 10px 15px 15px;
    }
}

.product-card-1 .product-meta {
    line-height: normal;
    margin-bottom: 2px;
}

    .product-card-1 .product-meta a {
        color: var(--bs-body-color);
        font-size: 11px;
    }

        .product-card-1 .product-meta a:hover {
            color: var(--bs-primary);
        }

.product-card-1 .product-title {
    font-weight: 600;
    margin: 0 0 6px;
}

    .product-card-1 .product-title a {
        color: var(--bs-text-mode);
    }

        .product-card-1 .product-title a:hover {
            color: var(--bs-primary);
        }

.product-card-1 .product-price span {
    font-size: 16px;
    font-weight: 600;
}

.product-card-1 .product-price del {
    font-size: 14px;
}

.product-card-1 .rating-star {
    font-size: 12px;
    margin-bottom: 5px;
}

.product-card-1 .form-check {
    margin: 0 2px;
}

.product-card-1 .nav-thumbs {
    padding-top: 10px;
}

@media (max-width: 575.98px) {
    .product-card-1 .nav-thumbs {
        display: flex;
        flex-wrap: nowrap;
        max-width: 100%;
        overflow-x: auto;
    }
}

.product-card-1:hover {
    box-shadow: 0 0.25rem 0.5625rem -0.0625rem rgba(0, 0, 0, 0.03), 0 0.275rem 1.25rem -0.0625rem rgba(0, 0, 0, 0.05);
}

    .product-card-1:hover .product-media img {
        transform: scale(1.1);
    }

@media (min-width: 576px) {
    .product-card-1:hover .product-action {
        opacity: 1;
        right: 15px;
    }
}

.product-card-1:hover .product-cart-btn {
    bottom: 0;
}

.strikethrough {
    text-decoration: line-through;
}

.red-text {
    color: red;
}
