.cart-btn {
    position: relative !important;
    background: none!important;
    border: none!important;
    cursor: pointer;
    padding: 0!important;
}

.cart-btn svg {
    stroke: #333 !important;
}

.cart-badge {
    position: absolute !important;
    top: -8px !important;
    right: -8px !important;
    background-color: rgb(255, 61, 61) !important;
    color: white !important;
    border-radius: 50% !important;
    padding: 2px 6px;
    font-size: 12px;
    font-weight: bold;
}

.cart-sidebar {
    position: fixed !important;
    top: 0 !important;
    right: -350px !important; /* Start off-screen */
    width: 350px !important;
    height: 100% !important;
    background-color: white !important;
    box-shadow: -2px 0 5px rgba(0,0,0,0.1);
    transition: right 0.3s ease-in-out;
    z-index: 1000;
    display: flex !important;
    flex-direction: column;
}

.cart-sidebar.open {
    right: 0 !important;
}

.cart-header {
    display: flex !important;
    justify-content: space-between;
    align-items: center;
    padding: 1rem !important;
    border-bottom: 1px solid #eee !important;
}

.cart-header h2 {
    margin: 0 !important;
    font-size: 1.25rem !important;
}

.close-btn {
    background: none!important;
    border: none!important;
    font-size: 1.5rem!important;
    cursor: pointer!important;
}

.cart-items {
    flex-grow: 1!important;
    overflow-y: auto;
    padding: 1rem!important;
}

.cart-item {
    display: flex!important;
    margin-bottom: 1rem!important;
    border-bottom: 1px solid #eee!important;
    padding-bottom: 1rem!important;
}

.cart-item-img {
    width: 80px!important;
    height: 80px!important;
    object-fit: cover!important;
    margin-right: 1rem!important;
}

.cart-item-info h4 {
    margin: 0 0 0.5rem 0!important;
}

.cart-item-info p {
    margin: 0!important;
    font-size: 0.9rem!important;
    color: #666;
}

.cart-item-description {
    font-size: 0.8rem!important;
    color: #888!important;
    margin: 0.25rem 0 0.5rem 0!important;
    line-height: 1.3!important;
    white-space: pre-line!important;
}

.cart-item-price {
    font-weight: bold!important;
    color: #333!important;
}

.cart-item-actions {
    display: flex!important;
    align-items: center!important;
    margin-top: 0.5rem!important;
}

.cart-item-actions button {
    background: none!important;
    border: 1px solid #ccc!important;
    width: 24px!important;
    height: 24px!important;
    cursor: pointer!important;
}

.cart-item-actions span {
    margin: 0 0.5rem!important;
}

.remove-item-btn {
    margin-left: auto!important;
    color: var(--primary-color)!important;
    background: none!important;
    border: none!important;
    cursor: pointer!important;
}


.cart-footer {
    padding: 1rem!important;
    border-top: 1px solid #eee!important;
}

.cart-total {
    display: flex!important;
    justify-content: space-between!important;
    font-size: 1.1rem!important;
    margin-bottom: 1rem!important;
}

.checkout-btn {
    width: 100% !important;
    padding: 0.75rem !important;
    background-color: rgb(20, 245, 114) !important;
    color: white !important;
    border: none !important;
    border-radius: 5px !important;
    font-size: 1rem !important;
    cursor: pointer !important;
    text-align: center !important;
}

.checkout-btn:hover {
    opacity: 0.9 !important;
}
