body {
    margin: 0;
    font-family: Arial, sans-serif;
    position: relative;
}

#cart-icon {
    position: relative;
    cursor: pointer;
    font-size: 32px;
    z-index: 1000;
    margin-left: 26px;
}

#cart-count {
    position: absolute;
    bottom: -11px;
    left: -9px;
    background-color: red;
    color: white;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: none;
    justify-content: center;
    align-items: center;
    font-size: 12px;
    font-weight: bold;
}

#cart-panel {
    position: fixed;
    top: 0;
    right: 0;
    width: 360px;
    height: 100vh;
    background-color: white;
    box-shadow: -2px 0 5px rgba(0,0,0,0.5);
    z-index: 2147483647;
    display: none;
    flex-direction: column;
}

#cart-panel.open {
    display: flex;
}

#cart-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.5) !important;
    z-index: 2147483646;
    display: none;
}

#cart-overlay.active {
    display: block;
}

#cart-header {
    padding: 20px;
    border-bottom: 1px solid #ccc;
    font-weight: bold;
    font-size: 18px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.close-btn {
    background: none;
    border: none;
    font-size: 20px;
    cursor: pointer;
    color: #333;
}

#cart-products {
    flex: 1;
    overflow-y: auto;
    padding: 10px;
}

#cart-total {
    padding: 15px 20px;
    border-top: 1px solid #ccc;
    border-bottom: 1px solid #ccc;
    font-weight: bold;
    font-size: 16px;
    text-align: right;
}

.product-item {
    display: flex;
    align-items: center;
    padding: 10px;
    border-bottom: 1px solid #eee;
}

.product-image {
    width: 50px;
    height: 50px;
    /* object-fit: cover; */
    margin-right: 10px;
}

.product-info {
    flex: 1;
}

.product-name {
    margin: 0;
    font-size: 14px;
}

.product-details {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.quantity-controls {
    display: flex;
    align-items: center;
    margin-left: 10px;
}

.product-price {
    margin: 5px 0 0 0;
    font-weight: bold;
    color: #333;
}

.quantity-controls {
    display: flex;
    align-items: center;
    margin-left: 10px;
}

.quantity-btn {
    width: 25px;
    height: 25px;
    background-color: #f0f0f0;
    border: 1px solid #ccc;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
}

.quantity-input {
    width: 40px;
    height: 25px;
    text-align: center;
    border: 1px solid #ccc;
    margin: 0 5px;
}

.remove-btn {
    background: none;
    border: none;
    font-size: 18px;
    cursor: pointer;
    margin-left: 10px;
    color: #ff4444;
    width: 25px;
    height: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: -5px;
}

.clsRemoverBtn {
    width: 23px;
    position: relative;
    top: -5px;
}

#checkout-btn {
    position: sticky;
    bottom: 0;
    width: 100%;
    padding: 15px;
    background-color: #0659cd;
    color: white;
    border: none;
    font-size: 16px;
    cursor: pointer;
}