
/* === Light Cart Popup === */
.empty-cart-popup {
    padding: 2vh 0 !important;
}
/* Header */
.popup-header {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 1.5vh;
    position: relative;
    text-align: center;
}
.popup-title {
    width: 50%;
}
.empty-cart-title {
    width: 100%;
    display: flex;
    flex-direction: column; /* ✅ Icon under message */
    justify-content: center;
    align-items: center;
    text-align: center;
}

.empty-cart-message {
    background: #ffffff;
    width: 100%; /* ✅ Full width */
    padding: 2vh 0;
    margin-top: 2vh;
}

.close-btn {
    position: absolute;
    left: 0;
    top: 0;
    border: none;
    cursor: pointer;  
    background-color: #0A1C3A !important; 
    width: 2.2vh;
    height: 2.2vh;
    border-radius: 50%;  
    padding: 0%;  
    font-size: 0%;
    line-height: 0%;
}
.close-btn img {
    width: 1.2vh;
    height: 1.2vh;
}
.popup-header h2 {
    font-size: 3.1vh;
    font-weight: 800;
    line-height: 2.7vh;
    display: flex;
    align-items: center;
}
.popup-header p {
    color: #0A1C3A;
    display: block;
    padding: 0.5vh 0.8vh;
    font-weight: 400;
    margin-bottom: 3vh;
    font-size: 2.2vh;
    letter-spacing: 0.2px;
}
.popup-header .basket-icon {
    height: 9.7vh;
}
.popup-header .empty-basket-icon {
    height: 18vh;
}

/* Cart items */
#light-cart-items {
    max-height: 60vh;
    overflow-y: auto;
}
.cart-item {
    margin-bottom: 1.5vh;
    border: 0.27vh solid #0A1C3A;
    border-radius: 2vh;
    overflow: hidden;
}
.cart-item-header {
    background: #C1B3D7;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1vh;
    font-size: 1.8vh;
}
.cart-title {
    font-size: 2.2vh;
    color: #0A1C3A;
}
.cart-item-header .remove-btn {
    cursor: pointer;
    width: 3vh;
    height: 3vh;
    background: #0A1C3A !important;
    border-radius: 50%;
    border: none;
    padding: 0;
    font-size: 0;
    line-height: 0;
}
.cart-item-header .remove-btn img {
    width: 1.5vh;
}
.cart-item-body {
    background: #fff;
    padding: 1vh;
    font-size: 1.25vh;
    text-align: right;
    font-weight: 600;
}
.cart-item-body h3{
    font-size: 1.8vh;
    font-weight: 700;
}