.keyball-cart-widget {
    display: flex;
    flex-direction: column;
    height: 100%;
    background: #fff;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.cart-widget-title {
    text-align: center;
    font-size: 16px;
    font-weight: 600;
    padding: 15px;
    margin: 0;
    border-bottom: 1px solid #eee;
    color: #333;
}

.cart-widget-content {
    flex: 1;
    overflow-y: auto;
    padding: 20px;
    background: #f5f5f5;
}

/* Empty Cart State */
.cart-empty-state {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 60px 20px;
    background: #fff;
    border-radius: 8px;
    min-height: 300px;
}

.cart-empty-icon {
    width: 200px;
    height: 200px;
    margin-bottom: 20px;
}

.cart-empty-icon img,
.cart-empty-icon svg {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.cart-empty-message {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    margin: 0;
}

/* Cart Items */
.cart-items {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.cart-item {
    display: flex;
    align-items: center;
    background: #fff;
    padding: 15px;
    border-radius: 8px;
    position: relative;
}

.cart-item-image {
    width: 80px;
    height: 80px;
    flex-shrink: 0;
    margin-right: 15px;
}

.cart-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 4px;
}

.cart-item-details {
    flex: 1;
}

.cart-item-name {
    font-size: 14px;
    font-weight: 500;
    margin: 0 0 5px 0;
    color: #333;
}

.cart-item-quantity {
    font-size: 13px;
    color: #666;
    margin-bottom: 5px;
}

.cart-item-price {
    font-size: 14px;
    font-weight: 600;
    color: #e07b4c;
}

.cart-item-remove {
    position: absolute;
    top: 10px;
    right: 10px;
    background: none;
    border: none;
    font-size: 20px;
    color: #999;
    cursor: pointer;
    padding: 0;
    line-height: 1;
}

.cart-item-remove:hover {
    color: #e74c3c;
}

/* Cart Footer */
.cart-widget-footer {
    padding: 15px 20px;
    background: #fff;
    border-top: 1px solid #eee;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.cart-total {
    display: flex;
    flex-direction: column;
}

.cart-total-label {
    font-size: 13px;
    color: #666;
}

.cart-total-amount {
    font-size: 18px;
    font-weight: 600;
    color: #e07b4c;
}

.cart-checkout-btn {
    display: inline-block;
    background: #e07b4c;
    color: #fff;
    padding: 12px 25px;
    border-radius: 6px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: background 0.3s ease;
}

.cart-checkout-btn:hover {
    background: #c96a3d;
    color: #fff;
}
