.cart-icon {
    position: relative;
    padding-right: 1rem;
}

.cart-count {
    position: absolute;
    top: -5px;
    right: 0;
    background-color: #7dc22b;
    color: white;
    border-radius: 50%;
    padding: 0.2rem 0.5rem;
    font-size: 0.8rem;
    min-width: 20px;
    text-align: center;
}

.cart-sidebar {
    position: fixed;
    top: 0;
    right: -400px;
    width: 400px;
    height: 100vh;
    background-color: white;
    box-shadow: -2px 0 5px rgba(0, 0, 0, 0.1);
    transition: right 0.3s ease;
    z-index: 1000;
    padding: 1rem;
}

.cart-sidebar.active {
    right: 0;
}

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

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

.cart-items-container {
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    padding: 1.5rem;
    margin-bottom: 2rem;
}

.cart-items {
    max-height: 600px;
    overflow-y: auto;
}

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

.cart-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.item-details h4 {
    margin: 0;
    color: #333;
    font-size: 1.1rem;
}

.item-details .price {
    color: #7dc22b;
    font-weight: 600;
    margin: 0.5rem 0 0 0;
}

.cart-summary {
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    padding: 1.5rem;
    position: sticky;
    top: 100px;
}

.cart-summary h3 {
    margin-bottom: 1.5rem;
    color: #333;
}

.summary-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1rem;
    color: #666;
}

.summary-total {
    display: flex;
    justify-content: space-between;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 2px solid #eee;
    font-weight: 600;
    font-size: 1.2rem;
    color: #333;
}

.checkout-btn {
    background: #7dc22b;
    border: none;
    padding: 1rem;
    margin-top: 1.5rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.checkout-btn:hover {
    background: #6aa824;
    transform: translateY(-2px);
}

.empty-cart {
    text-align: center;
    padding: 2rem;
    color: #666;
    font-size: 1.1rem;
}

.toast-message {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #7dc22b;
    color: white;
    padding: 1rem 2rem;
    border-radius: 4px;
    z-index: 1000;
    animation: slideIn 0.3s ease-out;
}

@keyframes slideIn {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@media (max-width: 576px) {
    .cart-sidebar {
        width: 100%;
        right: -100%;
    }
}

@media (max-width: 768px) {
    .cart-summary {
        position: static;
        margin-top: 2rem;
    }
    
    .cart-items {
        max-height: none;
    }
}
