.store .image-discount {
    position: absolute;
    background: var(--bs-red);
    padding: 5px;
    left: 2px;
    border-radius: 10px;
    font-size: 11px;
    font-weight: 600;
}

.store .card-footer .info {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.store .checkout .btn-info {
    width: 100%;
}

.store .card-footer {
    padding: 10px;
}

.store .price {
    font-size: 13px;
    font-weight: bold;
}

.store del.discount {
    font-size: 12px;
    color: #eb2d3a !important;;
}

.store .products-image img,
.sidebar.recommended-product img {
    padding: 10px;
    border-radius: 5%;
    height: 220px;
    width: 250px;
}

.store.category .product .card:hover,
.featured-product .card:hover {
    transform: scale(1.05);
    transition: .5s;
}

.store.category .product .card,
.featured-product .card {
    transition: .5s;
}

.product.checkout .btn {
    height: 40px;
}

.product .price {
    font-size: 24px;
    font-weight: bold;
    padding: 5px;
}

.product-modal del.discount {
    font-size: 14px;
}

.product-modal .price {
    font-size: 16px;
}

.product-modal .store {
    font-weight: bold;
}

.card-header .name {
    font-weight: bold;
    padding: 5px;
}

@media screen and (min-width: 990px) {
    .product .description {
        border-left: 1px solid black;
    }
}

@media screen and (max-width: 989px) {
    .product .description {
        border-top: 1px solid black;
    }
}

.store-modal .basket-header {
    display: flex;
    margin-top: 10px;
    box-shadow: 0px 3px 3px rgb(0 0 0 / 5%);
    -webkit-box-shadow: 0px 3px 3px rgb(0 0 0 / 5%);
    align-items: center;
}

.store-modal .basket-header .avatar {
    height: 110px;
    overflow: hidden;
    margin-top: 0;
    margin-left: 10px;
}

.store-modal .basket-header .avatar img {
    height: 110px;
    padding: 5px;
}

.store-modal .basket-header .details {
    margin: 10px;
    font-weight: bold;
}

.store-modal .basket-header .profile-link {
    margin: auto 35px auto auto;
}

.store-modal .basket-header .details .sub {
    font-size: 18px;
}

.store-modal .basket-items {
    display: flow-root;
    margin-top: 10px;
}

.store-modal .basket-item {
    display: flex;
    padding: 15px;
    margin: 10px;
    border-radius: 6px;
}

.store-modal .basket-item .product {
    width: 150px;
}

.store-modal .basket-item .quantity {
    margin: auto 10px auto auto;
}

.store-modal .basket-item .quantity input {
    width: 65px;
}

.store-modal .basket-item .remove {
    margin: auto 10px auto auto;
}

.store-modal .basket-item .product .name,
.store-modal .basket-item .product .price {
    font-weight: bold;
}

.store-modal .basket-item .product .price del.discount {
    font-size: 12px;
}


/*colors*/

.store-modal .basket-header {
    background:rgb(var(--bg)); /* Using Bootstrap's secondary color for header background */
    color: var(--bs-white); /* Using a dark color for better readability */
}

.store-modal .basket-items {
    background: rgb(var(--bg)); /* Using Bootstrap's secondary color for header background */
    color: var(--bs-white); /* Using a dark color for better readability */
}

.store-modal .basket-item {
    background: rgb(var(--main-bg)); /* Lighter color for item background, consistent with the header */
    color: var(--bs-white); /* Dark color for item text for readability */
}

.store-modal .basket-item .remove i {
    color: var(--bs-danger); /* Using Bootstrap's danger color for the remove icon to indicate deletion */
}

.store-modal .basket-item .product .name,
.store-modal .basket-item .product .price {
    color: var(--bs-white); /* Using a dark color for uniform text color for product name and price */
}




/* Button - Gift */
.btn-gift {
    background-color: var(--bs-green) !important; /* Secondary button background color */
    color: var(--bs-white);
    border-color: var(--bs-teal) !important; /* Secondary button border color */
}

.btn-gift:hover,
.btn-gift.active {
    opacity: .8;
}

/* Button - Subscribe */
.btn-subscribe {
    background-color: var(--bs-purple) !important; /* Navigation button background color */
    border-color:  var(--bs-purple) !important; /* Navigation button border color */
    color: white;
}

.btn-subscribe:hover,
.btn-subscribe.active {
    opacity: .8;
}


.store.category .card .image {
    background: var(--bs-card-cap-bg);
    height: 175px;
}

.store.category .card-footer .info {
    display: flex;
    flex-direction: column;
    text-align: center;
}

.store.category .card-footer {
    background: transparent;
    border: transparent;
    margin-top: 3em;
}

.store.category .card-footer .name {
    font-size: 20px;
    font-weight: 600;
    color: #fff;
}

.store.category .card-footer .price {
    font-size: 16px;
    color: var(--btn-info);
}


.store.category .card-footer .button button {
    width: 100%;
    border-width: 3px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 10px;
    transition: .5s;
    padding: 10px;
}

.store.category .card {
    border: transparent;
}
.store.category .card-footer .currency {
    color: var(--btn-info);
}
.store del.discount {
    font-size: 12px;
    color: #fff !important;
    background: rgb(255 52 52 / 72%);
    padding: 5px 10px;
    border-radius: 8px;
    border: 1px solid #ff3434;
    font-weight: 600;
}

.store .featured-product del.discount {
    font-size: 12px;
    color: #f8494b !important;
    background: unset;
    padding: unset;
    border-radius: unset;
    border: unset;
    font-weight: 600;
}