.header .header-middle .header-wrapper {
  padding: 0px 0;
}
.header .header-middle .header__left .logo a img {
  /* max-height: 100px !important;*/
}
.header-items.header__left.d-flex.align-items-center {
    flex: 0 0 450px;
    gap: 1rem;
    width: 30%;
}
.header-items.header__center.position-absolute.start-50.translate-middle-x.d-flex.align-items-center {
    width: 45%;
    max-width: 80%;
}
form#bb-form-quick-search {
    margin-left: 30px;
}
input.form-control.input-search-product.flex-grow-1 {
    height: 45px;
}
.header-search {
    flex-shrink: 0;
    width: 45px;
    height: 50px;
}
.header-items.header__right.d-flex.align-items-center {
    flex: 0 0 auto;
    width: 25%;
}
.delivery-row-box .list-group-item {
    border-bottom: 1px solid #dee2e6 !important;
}
/* Mini cart container */
.cart--mini {
    position: relative;
}

/* Hide mini cart by default */
.cart__content {
    position: absolute;
    top: 100%;
    right: 0;
    width: 360px;
    background: #fff;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.25s ease;
    z-index: 9999;
}

/* Show on hover */
.cart--mini:hover .cart__content {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* Prevent hover area from blocking clicks */
.cart__content {
    pointer-events: auto;
}

/* Remove any blur effect */
body.modal-open,
body.cart-open {
    overflow: auto !important;
    filter: none !important;
}
li.mini-cart-item {
    border-bottom: 1px solid #ccc;
    display: flex;
    list-style: none;
    margin-top: 20px;
    padding-bottom: 20px;
    position: relative;
}
li.mini-cart-item.row.g-0 {
    border-bottom: 1px solid #ccc;
    display: flex;
    list-style: none;
    margin-top: 20px;
    padding-bottom: 20px;
    position: relative;
    padding-left: 15px;
    padding-right: 15px;
}
.product-content {
    padding-left: 15px;
}
.control-buttons {
    border-top: 1px solid #e1e1e1;
    padding: 0 25px 30px;
}
.mini-cart__total {
    align-items: center;
    color: #000;
    display: flex;
    font-weight: 700;
    justify-content: space-between;
    padding-top: 10px;
    font-size: 14px;
}
span.price-amount {
    color: var(--primary-color);
    font-size: 14px;
}
.mini-cart__buttons.row.g-2 {
    margin: 20px 0 0;
}
a.btn.btn-light.btn-light-mini-cart {
    border: 1px solid #ccc;
    border-radius: 3px;
    color: #222;
    font-size: 14px;
    font-weight: 700;
    line-height: 30px;
    padding: 8px 20px;
    text-align: center;
    transition: .5s ease;
    white-space: nowrap;
    width: 100%;
}
a.btn.btn-primary.checkout.checkout-minicart {
    border: 1px solid #ccc;
    border-radius: 3px;
    color: #222;
    font-size: 14px;
    font-weight: 700;
    line-height: 30px;
    padding: 8px 20px;
    text-align: center;
    transition: .5s ease;
    white-space: nowrap;
    width: 100%;
}
.panel__header.mini-cart-header {
    display: none;
}
.widget-shopping-cart-content {
    background-color: #fff;
    border: 1px solid #ccc;
}
ul.mini-product-cart-list {
    border-radius: 3px;
    max-height: 100vh;
    overflow-x: hidden;
    overflow-y: auto;
}
.header-wrapper.d-flex.align-items-center.justify-content-between.position-relative {
    z-index: 10;
}