.topgift-mini-cart-container {
    position: relative;
    display: inline-block;
}

.topgift-mini-cart-icon {
    cursor: pointer;
    position: relative;
}

svg#Cart {
    height: auto!important;
}

.topgift-mini-cart-content-container {
    position: absolute;
    top: 100%;
    right: 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    width: 350px; /* Adjust as needed */
    display: none;
    background-color: #060B1F;
    box-shadow: 0px 0px 9px #354F9C, 0px 0px 9px #354F9C, 0px 0px 9px #354F9C;
    border: none;
    border-radius: 10px;
}

.topgift-mini-cart-content-container:before {
    content: '';
    position: absolute;
    top: -10px;
    right: 20px;
    border-width: 5px;
    border-style: solid;
    border-color: transparent transparent white transparent;
}

.topgift-cart-count {
    position: absolute;
    top: -5px;
    right: -5px;
    background: red;
    color: white;
    border-radius: 50%;
    padding: 2px 6px;
    font-size: 12px;
    line-height: 1;
}

.topgift-mini-cart-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px;
    border-bottom: 1px solid #ddd;
}

button.topgift-mini-cart-close,
button.topgift-cart-decrease,
button.topgift-cart-increase,
button.topgift-cart-remove {
    background-color: #FFFFFF00;
    display: flex;
    padding: 0;
}

button.topgift-mini-cart-close:hover,
button.topgift-mini-cart-close:focus,
button.topgift-cart-decrease:hover,
button.topgift-cart-decrease:focus,
button.topgift-cart-increase:hover,
button.topgift-cart-increase:focus,
button.topgift-cart-remove:hover,
button.topgift-cart-remove:focus {
    background-color: #FFFFFF00!important;
}

.topgift-mini-cart-items {
    list-style: none;
    margin: 0;
    padding: 10px;
    /* Added styles for max height and overflow */
    max-height: 350px;
    overflow-y: auto;
}

.topgift-mini-cart-item {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.topgift-mini-cart-item-image img {
    max-width: 79.58px!important;
    max-height: 100px!important;
    margin-right: 10px;
    box-shadow: 0px 0px 9px #354F9C, 0px 0px 9px #354F9C, 0px 0px 9px #354F9C !important;
    border-radius: 10px!important;
}

.topgift-mini-cart-item-details {
    display: flex;
    flex-direction: column;
    width: 100%;
}

.topgift-mini-cart-item-name {
    font-weight: bold;
    margin-bottom: 5px;
}

.topgift-mini-cart-item-name:hover,
.topgift-mini-cart-item-name:focus {
    color: #FFFFFF;
    text-shadow:0px 0px 9px #354F9C, 0px 0px 9px #354F9C, 0px 0px 9px #354F9C;
}

.topgift-mini-cart-item-quantity {
    display: flex;
    align-items: center;
}

.topgift-cart-quantity {
    margin: 0 10px;
}

.topgift-mini-cart-summary {
    padding: 10px;
    border-top: 1px solid #ddd;
}

.topgift-mini-cart-subtotal,
.topgift-mini-cart-fee,
.topgift-mini-cart-total,
.topgift-mini-cart-discount {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
}

.topgift-mini-cart-actions {
    display: flex;
    justify-content: space-between;
}

.topgift-minicart-view-cart,
.topgift-minicart-checkout-now {
    color: #FFFFFF;
    padding: 5px 10px;
    text-decoration: none;
    border-radius: 10px;
}

.topgift-minicart-view-cart {
    background-color: #0073aa;
    border: 1px solid #0073aa;
}

.topgift-minicart-checkout-now {
    background-color: #008000;
    border: 1px solid #008000;
}

.topgift-minicart-view-cart:hover,
.topgift-minicart-view-cart:active,
.topgift-minicart-view-cart:hover {
    background-color: #005a87!important;
    border: 1px solid #005a87!important;
    color: #FFFFFF;
}

.topgift-minicart-checkout-now:hover,
.topgift-minicart-checkout-now:active,
.topgift-minicart-checkout-now:focus {
    background-color: #003900!important;
    border: 1px solid #003900!important;
    color: #FFFFFF;
}

/* Fullscreen layout for mobile devices */
@media (max-width: 767px) {
    .topgift-mini-cart-content-container {
        position: fixed;
        top: 0;
        right: 0;
        left: 0;
        bottom: 0;
        width: 100%;
        height: 100%;
        z-index: 1000;
        overflow-y: auto;
        box-shadow: none;
        border: none;
        border-radius: 0;
    }

    .topgift-mini-cart-content-container:before {
        content: none;
    }

    .topgift-mini-cart-header {
        border-bottom: 1px solid #ddd;
    }

    .topgift-mini-cart-header,
    .topgift-mini-cart-items,
    .topgift-mini-cart-summary {
        padding: 15px;
    }

    .topgift-mini-cart-items {
        max-height: none; /* Remove max-height for mobile view */
    }

    .topgift-mini-cart-item {
        margin-bottom: 15px;
    }
}

.topgift-no-scroll {
    overflow: hidden;
}

.topgift-mini-cart-items-overlay {
    position: relative;
}

.topgift-mini-cart-items-overlay::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); /* Dark transparent overlay */
    z-index: 10;
    display: none;
}

.topgift-mini-cart-items-overlay.active::before {
    display: block;
}

.topgift-mini-cart-empty {
    text-align: center;
}
